@@ -32,25 +32,25 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Delete your Google Tag Manager containers. */ |
| 34 | 34 | const TAGMANAGER_DELETE_CONTAINERS = |
| 35 | - "https://www.googleapis.com/auth/tagmanager.delete.containers"; |
|
| 35 | + "https://www.googleapis.com/auth/tagmanager.delete.containers"; |
|
| 36 | 36 | /** Manage your Google Tag Manager containers. */ |
| 37 | 37 | const TAGMANAGER_EDIT_CONTAINERS = |
| 38 | - "https://www.googleapis.com/auth/tagmanager.edit.containers"; |
|
| 38 | + "https://www.googleapis.com/auth/tagmanager.edit.containers"; |
|
| 39 | 39 | /** Manage your Google Tag Manager container versions. */ |
| 40 | 40 | const TAGMANAGER_EDIT_CONTAINERVERSIONS = |
| 41 | - "https://www.googleapis.com/auth/tagmanager.edit.containerversions"; |
|
| 41 | + "https://www.googleapis.com/auth/tagmanager.edit.containerversions"; |
|
| 42 | 42 | /** Manage your Google Tag Manager accounts. */ |
| 43 | 43 | const TAGMANAGER_MANAGE_ACCOUNTS = |
| 44 | - "https://www.googleapis.com/auth/tagmanager.manage.accounts"; |
|
| 44 | + "https://www.googleapis.com/auth/tagmanager.manage.accounts"; |
|
| 45 | 45 | /** Manage user permissions of your Google Tag Manager data. */ |
| 46 | 46 | const TAGMANAGER_MANAGE_USERS = |
| 47 | - "https://www.googleapis.com/auth/tagmanager.manage.users"; |
|
| 47 | + "https://www.googleapis.com/auth/tagmanager.manage.users"; |
|
| 48 | 48 | /** Publish your Google Tag Manager containers. */ |
| 49 | 49 | const TAGMANAGER_PUBLISH = |
| 50 | - "https://www.googleapis.com/auth/tagmanager.publish"; |
|
| 50 | + "https://www.googleapis.com/auth/tagmanager.publish"; |
|
| 51 | 51 | /** View your Google Tag Manager containers. */ |
| 52 | 52 | const TAGMANAGER_READONLY = |
| 53 | - "https://www.googleapis.com/auth/tagmanager.readonly"; |
|
| 53 | + "https://www.googleapis.com/auth/tagmanager.readonly"; |
|
| 54 | 54 | |
| 55 | 55 | public $accounts; |
| 56 | 56 | public $accounts_containers; |
@@ -70,896 +70,896 @@ discard block |
||
| 70 | 70 | */ |
| 71 | 71 | public function __construct(Google_Client $client) |
| 72 | 72 | { |
| 73 | - parent::__construct($client); |
|
| 74 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 75 | - $this->servicePath = 'tagmanager/v1/'; |
|
| 76 | - $this->version = 'v1'; |
|
| 77 | - $this->serviceName = 'tagmanager'; |
|
| 78 | - |
|
| 79 | - $this->accounts = new Google_Service_TagManager_Accounts_Resource( |
|
| 80 | - $this, |
|
| 81 | - $this->serviceName, |
|
| 82 | - 'accounts', |
|
| 83 | - array( |
|
| 84 | - 'methods' => array( |
|
| 85 | - 'get' => array( |
|
| 86 | - 'path' => 'accounts/{accountId}', |
|
| 87 | - 'httpMethod' => 'GET', |
|
| 88 | - 'parameters' => array( |
|
| 89 | - 'accountId' => array( |
|
| 90 | - 'location' => 'path', |
|
| 91 | - 'type' => 'string', |
|
| 92 | - 'required' => true, |
|
| 93 | - ), |
|
| 94 | - ), |
|
| 95 | - ),'list' => array( |
|
| 96 | - 'path' => 'accounts', |
|
| 97 | - 'httpMethod' => 'GET', |
|
| 98 | - 'parameters' => array(), |
|
| 99 | - ),'update' => array( |
|
| 100 | - 'path' => 'accounts/{accountId}', |
|
| 101 | - 'httpMethod' => 'PUT', |
|
| 102 | - 'parameters' => array( |
|
| 103 | - 'accountId' => array( |
|
| 104 | - 'location' => 'path', |
|
| 105 | - 'type' => 'string', |
|
| 106 | - 'required' => true, |
|
| 107 | - ), |
|
| 108 | - 'fingerprint' => array( |
|
| 109 | - 'location' => 'query', |
|
| 110 | - 'type' => 'string', |
|
| 111 | - ), |
|
| 112 | - ), |
|
| 113 | - ), |
|
| 114 | - ) |
|
| 115 | - ) |
|
| 116 | - ); |
|
| 117 | - $this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource( |
|
| 118 | - $this, |
|
| 119 | - $this->serviceName, |
|
| 120 | - 'containers', |
|
| 121 | - array( |
|
| 122 | - 'methods' => array( |
|
| 123 | - 'create' => array( |
|
| 124 | - 'path' => 'accounts/{accountId}/containers', |
|
| 125 | - 'httpMethod' => 'POST', |
|
| 126 | - 'parameters' => array( |
|
| 127 | - 'accountId' => array( |
|
| 128 | - 'location' => 'path', |
|
| 129 | - 'type' => 'string', |
|
| 130 | - 'required' => true, |
|
| 131 | - ), |
|
| 132 | - ), |
|
| 133 | - ),'delete' => array( |
|
| 134 | - 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 135 | - 'httpMethod' => 'DELETE', |
|
| 136 | - 'parameters' => array( |
|
| 137 | - 'accountId' => array( |
|
| 138 | - 'location' => 'path', |
|
| 139 | - 'type' => 'string', |
|
| 140 | - 'required' => true, |
|
| 141 | - ), |
|
| 142 | - 'containerId' => array( |
|
| 143 | - 'location' => 'path', |
|
| 144 | - 'type' => 'string', |
|
| 145 | - 'required' => true, |
|
| 146 | - ), |
|
| 147 | - ), |
|
| 148 | - ),'get' => array( |
|
| 149 | - 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 150 | - 'httpMethod' => 'GET', |
|
| 151 | - 'parameters' => array( |
|
| 152 | - 'accountId' => array( |
|
| 153 | - 'location' => 'path', |
|
| 154 | - 'type' => 'string', |
|
| 155 | - 'required' => true, |
|
| 156 | - ), |
|
| 157 | - 'containerId' => array( |
|
| 158 | - 'location' => 'path', |
|
| 159 | - 'type' => 'string', |
|
| 160 | - 'required' => true, |
|
| 161 | - ), |
|
| 162 | - ), |
|
| 163 | - ),'list' => array( |
|
| 164 | - 'path' => 'accounts/{accountId}/containers', |
|
| 165 | - 'httpMethod' => 'GET', |
|
| 166 | - 'parameters' => array( |
|
| 167 | - 'accountId' => array( |
|
| 168 | - 'location' => 'path', |
|
| 169 | - 'type' => 'string', |
|
| 170 | - 'required' => true, |
|
| 171 | - ), |
|
| 172 | - ), |
|
| 173 | - ),'update' => array( |
|
| 174 | - 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 175 | - 'httpMethod' => 'PUT', |
|
| 176 | - 'parameters' => array( |
|
| 177 | - 'accountId' => array( |
|
| 178 | - 'location' => 'path', |
|
| 179 | - 'type' => 'string', |
|
| 180 | - 'required' => true, |
|
| 181 | - ), |
|
| 182 | - 'containerId' => array( |
|
| 183 | - 'location' => 'path', |
|
| 184 | - 'type' => 'string', |
|
| 185 | - 'required' => true, |
|
| 186 | - ), |
|
| 187 | - 'fingerprint' => array( |
|
| 188 | - 'location' => 'query', |
|
| 189 | - 'type' => 'string', |
|
| 190 | - ), |
|
| 191 | - ), |
|
| 192 | - ), |
|
| 193 | - ) |
|
| 194 | - ) |
|
| 195 | - ); |
|
| 196 | - $this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource( |
|
| 197 | - $this, |
|
| 198 | - $this->serviceName, |
|
| 199 | - 'macros', |
|
| 200 | - array( |
|
| 201 | - 'methods' => array( |
|
| 202 | - 'create' => array( |
|
| 203 | - 'path' => 'accounts/{accountId}/containers/{containerId}/macros', |
|
| 204 | - 'httpMethod' => 'POST', |
|
| 205 | - 'parameters' => array( |
|
| 206 | - 'accountId' => array( |
|
| 207 | - 'location' => 'path', |
|
| 208 | - 'type' => 'string', |
|
| 209 | - 'required' => true, |
|
| 210 | - ), |
|
| 211 | - 'containerId' => array( |
|
| 212 | - 'location' => 'path', |
|
| 213 | - 'type' => 'string', |
|
| 214 | - 'required' => true, |
|
| 215 | - ), |
|
| 216 | - ), |
|
| 217 | - ),'delete' => array( |
|
| 218 | - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 219 | - 'httpMethod' => 'DELETE', |
|
| 220 | - 'parameters' => array( |
|
| 221 | - 'accountId' => array( |
|
| 222 | - 'location' => 'path', |
|
| 223 | - 'type' => 'string', |
|
| 224 | - 'required' => true, |
|
| 225 | - ), |
|
| 226 | - 'containerId' => array( |
|
| 227 | - 'location' => 'path', |
|
| 228 | - 'type' => 'string', |
|
| 229 | - 'required' => true, |
|
| 230 | - ), |
|
| 231 | - 'macroId' => array( |
|
| 232 | - 'location' => 'path', |
|
| 233 | - 'type' => 'string', |
|
| 234 | - 'required' => true, |
|
| 235 | - ), |
|
| 236 | - ), |
|
| 237 | - ),'get' => array( |
|
| 238 | - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 239 | - 'httpMethod' => 'GET', |
|
| 240 | - 'parameters' => array( |
|
| 241 | - 'accountId' => array( |
|
| 242 | - 'location' => 'path', |
|
| 243 | - 'type' => 'string', |
|
| 244 | - 'required' => true, |
|
| 245 | - ), |
|
| 246 | - 'containerId' => array( |
|
| 247 | - 'location' => 'path', |
|
| 248 | - 'type' => 'string', |
|
| 249 | - 'required' => true, |
|
| 250 | - ), |
|
| 251 | - 'macroId' => array( |
|
| 252 | - 'location' => 'path', |
|
| 253 | - 'type' => 'string', |
|
| 254 | - 'required' => true, |
|
| 255 | - ), |
|
| 256 | - ), |
|
| 257 | - ),'list' => array( |
|
| 258 | - 'path' => 'accounts/{accountId}/containers/{containerId}/macros', |
|
| 259 | - 'httpMethod' => 'GET', |
|
| 260 | - 'parameters' => array( |
|
| 261 | - 'accountId' => array( |
|
| 262 | - 'location' => 'path', |
|
| 263 | - 'type' => 'string', |
|
| 264 | - 'required' => true, |
|
| 265 | - ), |
|
| 266 | - 'containerId' => array( |
|
| 267 | - 'location' => 'path', |
|
| 268 | - 'type' => 'string', |
|
| 269 | - 'required' => true, |
|
| 270 | - ), |
|
| 271 | - ), |
|
| 272 | - ),'update' => array( |
|
| 273 | - 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 274 | - 'httpMethod' => 'PUT', |
|
| 275 | - 'parameters' => array( |
|
| 276 | - 'accountId' => array( |
|
| 277 | - 'location' => 'path', |
|
| 278 | - 'type' => 'string', |
|
| 279 | - 'required' => true, |
|
| 280 | - ), |
|
| 281 | - 'containerId' => array( |
|
| 282 | - 'location' => 'path', |
|
| 283 | - 'type' => 'string', |
|
| 284 | - 'required' => true, |
|
| 285 | - ), |
|
| 286 | - 'macroId' => array( |
|
| 287 | - 'location' => 'path', |
|
| 288 | - 'type' => 'string', |
|
| 289 | - 'required' => true, |
|
| 290 | - ), |
|
| 291 | - 'fingerprint' => array( |
|
| 292 | - 'location' => 'query', |
|
| 293 | - 'type' => 'string', |
|
| 294 | - ), |
|
| 295 | - ), |
|
| 296 | - ), |
|
| 297 | - ) |
|
| 298 | - ) |
|
| 299 | - ); |
|
| 300 | - $this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource( |
|
| 301 | - $this, |
|
| 302 | - $this->serviceName, |
|
| 303 | - 'rules', |
|
| 304 | - array( |
|
| 305 | - 'methods' => array( |
|
| 306 | - 'create' => array( |
|
| 307 | - 'path' => 'accounts/{accountId}/containers/{containerId}/rules', |
|
| 308 | - 'httpMethod' => 'POST', |
|
| 309 | - 'parameters' => array( |
|
| 310 | - 'accountId' => array( |
|
| 311 | - 'location' => 'path', |
|
| 312 | - 'type' => 'string', |
|
| 313 | - 'required' => true, |
|
| 314 | - ), |
|
| 315 | - 'containerId' => array( |
|
| 316 | - 'location' => 'path', |
|
| 317 | - 'type' => 'string', |
|
| 318 | - 'required' => true, |
|
| 319 | - ), |
|
| 320 | - ), |
|
| 321 | - ),'delete' => array( |
|
| 322 | - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 323 | - 'httpMethod' => 'DELETE', |
|
| 324 | - 'parameters' => array( |
|
| 325 | - 'accountId' => array( |
|
| 326 | - 'location' => 'path', |
|
| 327 | - 'type' => 'string', |
|
| 328 | - 'required' => true, |
|
| 329 | - ), |
|
| 330 | - 'containerId' => array( |
|
| 331 | - 'location' => 'path', |
|
| 332 | - 'type' => 'string', |
|
| 333 | - 'required' => true, |
|
| 334 | - ), |
|
| 335 | - 'ruleId' => array( |
|
| 336 | - 'location' => 'path', |
|
| 337 | - 'type' => 'string', |
|
| 338 | - 'required' => true, |
|
| 339 | - ), |
|
| 340 | - ), |
|
| 341 | - ),'get' => array( |
|
| 342 | - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 343 | - 'httpMethod' => 'GET', |
|
| 344 | - 'parameters' => array( |
|
| 345 | - 'accountId' => array( |
|
| 346 | - 'location' => 'path', |
|
| 347 | - 'type' => 'string', |
|
| 348 | - 'required' => true, |
|
| 349 | - ), |
|
| 350 | - 'containerId' => array( |
|
| 351 | - 'location' => 'path', |
|
| 352 | - 'type' => 'string', |
|
| 353 | - 'required' => true, |
|
| 354 | - ), |
|
| 355 | - 'ruleId' => array( |
|
| 356 | - 'location' => 'path', |
|
| 357 | - 'type' => 'string', |
|
| 358 | - 'required' => true, |
|
| 359 | - ), |
|
| 360 | - ), |
|
| 361 | - ),'list' => array( |
|
| 362 | - 'path' => 'accounts/{accountId}/containers/{containerId}/rules', |
|
| 363 | - 'httpMethod' => 'GET', |
|
| 364 | - 'parameters' => array( |
|
| 365 | - 'accountId' => array( |
|
| 366 | - 'location' => 'path', |
|
| 367 | - 'type' => 'string', |
|
| 368 | - 'required' => true, |
|
| 369 | - ), |
|
| 370 | - 'containerId' => array( |
|
| 371 | - 'location' => 'path', |
|
| 372 | - 'type' => 'string', |
|
| 373 | - 'required' => true, |
|
| 374 | - ), |
|
| 375 | - ), |
|
| 376 | - ),'update' => array( |
|
| 377 | - 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 378 | - 'httpMethod' => 'PUT', |
|
| 379 | - 'parameters' => array( |
|
| 380 | - 'accountId' => array( |
|
| 381 | - 'location' => 'path', |
|
| 382 | - 'type' => 'string', |
|
| 383 | - 'required' => true, |
|
| 384 | - ), |
|
| 385 | - 'containerId' => array( |
|
| 386 | - 'location' => 'path', |
|
| 387 | - 'type' => 'string', |
|
| 388 | - 'required' => true, |
|
| 389 | - ), |
|
| 390 | - 'ruleId' => array( |
|
| 391 | - 'location' => 'path', |
|
| 392 | - 'type' => 'string', |
|
| 393 | - 'required' => true, |
|
| 394 | - ), |
|
| 395 | - 'fingerprint' => array( |
|
| 396 | - 'location' => 'query', |
|
| 397 | - 'type' => 'string', |
|
| 398 | - ), |
|
| 399 | - ), |
|
| 400 | - ), |
|
| 401 | - ) |
|
| 402 | - ) |
|
| 403 | - ); |
|
| 404 | - $this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource( |
|
| 405 | - $this, |
|
| 406 | - $this->serviceName, |
|
| 407 | - 'tags', |
|
| 408 | - array( |
|
| 409 | - 'methods' => array( |
|
| 410 | - 'create' => array( |
|
| 411 | - 'path' => 'accounts/{accountId}/containers/{containerId}/tags', |
|
| 412 | - 'httpMethod' => 'POST', |
|
| 413 | - 'parameters' => array( |
|
| 414 | - 'accountId' => array( |
|
| 415 | - 'location' => 'path', |
|
| 416 | - 'type' => 'string', |
|
| 417 | - 'required' => true, |
|
| 418 | - ), |
|
| 419 | - 'containerId' => array( |
|
| 420 | - 'location' => 'path', |
|
| 421 | - 'type' => 'string', |
|
| 422 | - 'required' => true, |
|
| 423 | - ), |
|
| 424 | - ), |
|
| 425 | - ),'delete' => array( |
|
| 426 | - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 427 | - 'httpMethod' => 'DELETE', |
|
| 428 | - 'parameters' => array( |
|
| 429 | - 'accountId' => array( |
|
| 430 | - 'location' => 'path', |
|
| 431 | - 'type' => 'string', |
|
| 432 | - 'required' => true, |
|
| 433 | - ), |
|
| 434 | - 'containerId' => array( |
|
| 435 | - 'location' => 'path', |
|
| 436 | - 'type' => 'string', |
|
| 437 | - 'required' => true, |
|
| 438 | - ), |
|
| 439 | - 'tagId' => array( |
|
| 440 | - 'location' => 'path', |
|
| 441 | - 'type' => 'string', |
|
| 442 | - 'required' => true, |
|
| 443 | - ), |
|
| 444 | - ), |
|
| 445 | - ),'get' => array( |
|
| 446 | - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 447 | - 'httpMethod' => 'GET', |
|
| 448 | - 'parameters' => array( |
|
| 449 | - 'accountId' => array( |
|
| 450 | - 'location' => 'path', |
|
| 451 | - 'type' => 'string', |
|
| 452 | - 'required' => true, |
|
| 453 | - ), |
|
| 454 | - 'containerId' => array( |
|
| 455 | - 'location' => 'path', |
|
| 456 | - 'type' => 'string', |
|
| 457 | - 'required' => true, |
|
| 458 | - ), |
|
| 459 | - 'tagId' => array( |
|
| 460 | - 'location' => 'path', |
|
| 461 | - 'type' => 'string', |
|
| 462 | - 'required' => true, |
|
| 463 | - ), |
|
| 464 | - ), |
|
| 465 | - ),'list' => array( |
|
| 466 | - 'path' => 'accounts/{accountId}/containers/{containerId}/tags', |
|
| 467 | - 'httpMethod' => 'GET', |
|
| 468 | - 'parameters' => array( |
|
| 469 | - 'accountId' => array( |
|
| 470 | - 'location' => 'path', |
|
| 471 | - 'type' => 'string', |
|
| 472 | - 'required' => true, |
|
| 473 | - ), |
|
| 474 | - 'containerId' => array( |
|
| 475 | - 'location' => 'path', |
|
| 476 | - 'type' => 'string', |
|
| 477 | - 'required' => true, |
|
| 478 | - ), |
|
| 479 | - ), |
|
| 480 | - ),'update' => array( |
|
| 481 | - 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 482 | - 'httpMethod' => 'PUT', |
|
| 483 | - 'parameters' => array( |
|
| 484 | - 'accountId' => array( |
|
| 485 | - 'location' => 'path', |
|
| 486 | - 'type' => 'string', |
|
| 487 | - 'required' => true, |
|
| 488 | - ), |
|
| 489 | - 'containerId' => array( |
|
| 490 | - 'location' => 'path', |
|
| 491 | - 'type' => 'string', |
|
| 492 | - 'required' => true, |
|
| 493 | - ), |
|
| 494 | - 'tagId' => array( |
|
| 495 | - 'location' => 'path', |
|
| 496 | - 'type' => 'string', |
|
| 497 | - 'required' => true, |
|
| 498 | - ), |
|
| 499 | - 'fingerprint' => array( |
|
| 500 | - 'location' => 'query', |
|
| 501 | - 'type' => 'string', |
|
| 502 | - ), |
|
| 503 | - ), |
|
| 504 | - ), |
|
| 505 | - ) |
|
| 506 | - ) |
|
| 507 | - ); |
|
| 508 | - $this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource( |
|
| 509 | - $this, |
|
| 510 | - $this->serviceName, |
|
| 511 | - 'triggers', |
|
| 512 | - array( |
|
| 513 | - 'methods' => array( |
|
| 514 | - 'create' => array( |
|
| 515 | - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', |
|
| 516 | - 'httpMethod' => 'POST', |
|
| 517 | - 'parameters' => array( |
|
| 518 | - 'accountId' => array( |
|
| 519 | - 'location' => 'path', |
|
| 520 | - 'type' => 'string', |
|
| 521 | - 'required' => true, |
|
| 522 | - ), |
|
| 523 | - 'containerId' => array( |
|
| 524 | - 'location' => 'path', |
|
| 525 | - 'type' => 'string', |
|
| 526 | - 'required' => true, |
|
| 527 | - ), |
|
| 528 | - ), |
|
| 529 | - ),'delete' => array( |
|
| 530 | - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 531 | - 'httpMethod' => 'DELETE', |
|
| 532 | - 'parameters' => array( |
|
| 533 | - 'accountId' => array( |
|
| 534 | - 'location' => 'path', |
|
| 535 | - 'type' => 'string', |
|
| 536 | - 'required' => true, |
|
| 537 | - ), |
|
| 538 | - 'containerId' => array( |
|
| 539 | - 'location' => 'path', |
|
| 540 | - 'type' => 'string', |
|
| 541 | - 'required' => true, |
|
| 542 | - ), |
|
| 543 | - 'triggerId' => array( |
|
| 544 | - 'location' => 'path', |
|
| 545 | - 'type' => 'string', |
|
| 546 | - 'required' => true, |
|
| 547 | - ), |
|
| 548 | - ), |
|
| 549 | - ),'get' => array( |
|
| 550 | - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 551 | - 'httpMethod' => 'GET', |
|
| 552 | - 'parameters' => array( |
|
| 553 | - 'accountId' => array( |
|
| 554 | - 'location' => 'path', |
|
| 555 | - 'type' => 'string', |
|
| 556 | - 'required' => true, |
|
| 557 | - ), |
|
| 558 | - 'containerId' => array( |
|
| 559 | - 'location' => 'path', |
|
| 560 | - 'type' => 'string', |
|
| 561 | - 'required' => true, |
|
| 562 | - ), |
|
| 563 | - 'triggerId' => array( |
|
| 564 | - 'location' => 'path', |
|
| 565 | - 'type' => 'string', |
|
| 566 | - 'required' => true, |
|
| 567 | - ), |
|
| 568 | - ), |
|
| 569 | - ),'list' => array( |
|
| 570 | - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', |
|
| 571 | - 'httpMethod' => 'GET', |
|
| 572 | - 'parameters' => array( |
|
| 573 | - 'accountId' => array( |
|
| 574 | - 'location' => 'path', |
|
| 575 | - 'type' => 'string', |
|
| 576 | - 'required' => true, |
|
| 577 | - ), |
|
| 578 | - 'containerId' => array( |
|
| 579 | - 'location' => 'path', |
|
| 580 | - 'type' => 'string', |
|
| 581 | - 'required' => true, |
|
| 582 | - ), |
|
| 583 | - ), |
|
| 584 | - ),'update' => array( |
|
| 585 | - 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 586 | - 'httpMethod' => 'PUT', |
|
| 587 | - 'parameters' => array( |
|
| 588 | - 'accountId' => array( |
|
| 589 | - 'location' => 'path', |
|
| 590 | - 'type' => 'string', |
|
| 591 | - 'required' => true, |
|
| 592 | - ), |
|
| 593 | - 'containerId' => array( |
|
| 594 | - 'location' => 'path', |
|
| 595 | - 'type' => 'string', |
|
| 596 | - 'required' => true, |
|
| 597 | - ), |
|
| 598 | - 'triggerId' => array( |
|
| 599 | - 'location' => 'path', |
|
| 600 | - 'type' => 'string', |
|
| 601 | - 'required' => true, |
|
| 602 | - ), |
|
| 603 | - 'fingerprint' => array( |
|
| 604 | - 'location' => 'query', |
|
| 605 | - 'type' => 'string', |
|
| 606 | - ), |
|
| 607 | - ), |
|
| 608 | - ), |
|
| 609 | - ) |
|
| 610 | - ) |
|
| 611 | - ); |
|
| 612 | - $this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource( |
|
| 613 | - $this, |
|
| 614 | - $this->serviceName, |
|
| 615 | - 'variables', |
|
| 616 | - array( |
|
| 617 | - 'methods' => array( |
|
| 618 | - 'create' => array( |
|
| 619 | - 'path' => 'accounts/{accountId}/containers/{containerId}/variables', |
|
| 620 | - 'httpMethod' => 'POST', |
|
| 621 | - 'parameters' => array( |
|
| 622 | - 'accountId' => array( |
|
| 623 | - 'location' => 'path', |
|
| 624 | - 'type' => 'string', |
|
| 625 | - 'required' => true, |
|
| 626 | - ), |
|
| 627 | - 'containerId' => array( |
|
| 628 | - 'location' => 'path', |
|
| 629 | - 'type' => 'string', |
|
| 630 | - 'required' => true, |
|
| 631 | - ), |
|
| 632 | - ), |
|
| 633 | - ),'delete' => array( |
|
| 634 | - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 635 | - 'httpMethod' => 'DELETE', |
|
| 636 | - 'parameters' => array( |
|
| 637 | - 'accountId' => array( |
|
| 638 | - 'location' => 'path', |
|
| 639 | - 'type' => 'string', |
|
| 640 | - 'required' => true, |
|
| 641 | - ), |
|
| 642 | - 'containerId' => array( |
|
| 643 | - 'location' => 'path', |
|
| 644 | - 'type' => 'string', |
|
| 645 | - 'required' => true, |
|
| 646 | - ), |
|
| 647 | - 'variableId' => array( |
|
| 648 | - 'location' => 'path', |
|
| 649 | - 'type' => 'string', |
|
| 650 | - 'required' => true, |
|
| 651 | - ), |
|
| 652 | - ), |
|
| 653 | - ),'get' => array( |
|
| 654 | - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 655 | - 'httpMethod' => 'GET', |
|
| 656 | - 'parameters' => array( |
|
| 657 | - 'accountId' => array( |
|
| 658 | - 'location' => 'path', |
|
| 659 | - 'type' => 'string', |
|
| 660 | - 'required' => true, |
|
| 661 | - ), |
|
| 662 | - 'containerId' => array( |
|
| 663 | - 'location' => 'path', |
|
| 664 | - 'type' => 'string', |
|
| 665 | - 'required' => true, |
|
| 666 | - ), |
|
| 667 | - 'variableId' => array( |
|
| 668 | - 'location' => 'path', |
|
| 669 | - 'type' => 'string', |
|
| 670 | - 'required' => true, |
|
| 671 | - ), |
|
| 672 | - ), |
|
| 673 | - ),'list' => array( |
|
| 674 | - 'path' => 'accounts/{accountId}/containers/{containerId}/variables', |
|
| 675 | - 'httpMethod' => 'GET', |
|
| 676 | - 'parameters' => array( |
|
| 677 | - 'accountId' => array( |
|
| 678 | - 'location' => 'path', |
|
| 679 | - 'type' => 'string', |
|
| 680 | - 'required' => true, |
|
| 681 | - ), |
|
| 682 | - 'containerId' => array( |
|
| 683 | - 'location' => 'path', |
|
| 684 | - 'type' => 'string', |
|
| 685 | - 'required' => true, |
|
| 686 | - ), |
|
| 687 | - ), |
|
| 688 | - ),'update' => array( |
|
| 689 | - 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 690 | - 'httpMethod' => 'PUT', |
|
| 691 | - 'parameters' => array( |
|
| 692 | - 'accountId' => array( |
|
| 693 | - 'location' => 'path', |
|
| 694 | - 'type' => 'string', |
|
| 695 | - 'required' => true, |
|
| 696 | - ), |
|
| 697 | - 'containerId' => array( |
|
| 698 | - 'location' => 'path', |
|
| 699 | - 'type' => 'string', |
|
| 700 | - 'required' => true, |
|
| 701 | - ), |
|
| 702 | - 'variableId' => array( |
|
| 703 | - 'location' => 'path', |
|
| 704 | - 'type' => 'string', |
|
| 705 | - 'required' => true, |
|
| 706 | - ), |
|
| 707 | - 'fingerprint' => array( |
|
| 708 | - 'location' => 'query', |
|
| 709 | - 'type' => 'string', |
|
| 710 | - ), |
|
| 711 | - ), |
|
| 712 | - ), |
|
| 713 | - ) |
|
| 714 | - ) |
|
| 715 | - ); |
|
| 716 | - $this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource( |
|
| 717 | - $this, |
|
| 718 | - $this->serviceName, |
|
| 719 | - 'versions', |
|
| 720 | - array( |
|
| 721 | - 'methods' => array( |
|
| 722 | - 'create' => array( |
|
| 723 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions', |
|
| 724 | - 'httpMethod' => 'POST', |
|
| 725 | - 'parameters' => array( |
|
| 726 | - 'accountId' => array( |
|
| 727 | - 'location' => 'path', |
|
| 728 | - 'type' => 'string', |
|
| 729 | - 'required' => true, |
|
| 730 | - ), |
|
| 731 | - 'containerId' => array( |
|
| 732 | - 'location' => 'path', |
|
| 733 | - 'type' => 'string', |
|
| 734 | - 'required' => true, |
|
| 735 | - ), |
|
| 736 | - ), |
|
| 737 | - ),'delete' => array( |
|
| 738 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 739 | - 'httpMethod' => 'DELETE', |
|
| 740 | - 'parameters' => array( |
|
| 741 | - 'accountId' => array( |
|
| 742 | - 'location' => 'path', |
|
| 743 | - 'type' => 'string', |
|
| 744 | - 'required' => true, |
|
| 745 | - ), |
|
| 746 | - 'containerId' => array( |
|
| 747 | - 'location' => 'path', |
|
| 748 | - 'type' => 'string', |
|
| 749 | - 'required' => true, |
|
| 750 | - ), |
|
| 751 | - 'containerVersionId' => array( |
|
| 752 | - 'location' => 'path', |
|
| 753 | - 'type' => 'string', |
|
| 754 | - 'required' => true, |
|
| 755 | - ), |
|
| 756 | - ), |
|
| 757 | - ),'get' => array( |
|
| 758 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 759 | - 'httpMethod' => 'GET', |
|
| 760 | - 'parameters' => array( |
|
| 761 | - 'accountId' => array( |
|
| 762 | - 'location' => 'path', |
|
| 763 | - 'type' => 'string', |
|
| 764 | - 'required' => true, |
|
| 765 | - ), |
|
| 766 | - 'containerId' => array( |
|
| 767 | - 'location' => 'path', |
|
| 768 | - 'type' => 'string', |
|
| 769 | - 'required' => true, |
|
| 770 | - ), |
|
| 771 | - 'containerVersionId' => array( |
|
| 772 | - 'location' => 'path', |
|
| 773 | - 'type' => 'string', |
|
| 774 | - 'required' => true, |
|
| 775 | - ), |
|
| 776 | - ), |
|
| 777 | - ),'list' => array( |
|
| 778 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions', |
|
| 779 | - 'httpMethod' => 'GET', |
|
| 780 | - 'parameters' => array( |
|
| 781 | - 'accountId' => array( |
|
| 782 | - 'location' => 'path', |
|
| 783 | - 'type' => 'string', |
|
| 784 | - 'required' => true, |
|
| 785 | - ), |
|
| 786 | - 'containerId' => array( |
|
| 787 | - 'location' => 'path', |
|
| 788 | - 'type' => 'string', |
|
| 789 | - 'required' => true, |
|
| 790 | - ), |
|
| 791 | - 'headers' => array( |
|
| 792 | - 'location' => 'query', |
|
| 793 | - 'type' => 'boolean', |
|
| 794 | - ), |
|
| 795 | - ), |
|
| 796 | - ),'publish' => array( |
|
| 797 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish', |
|
| 798 | - 'httpMethod' => 'POST', |
|
| 799 | - 'parameters' => array( |
|
| 800 | - 'accountId' => array( |
|
| 801 | - 'location' => 'path', |
|
| 802 | - 'type' => 'string', |
|
| 803 | - 'required' => true, |
|
| 804 | - ), |
|
| 805 | - 'containerId' => array( |
|
| 806 | - 'location' => 'path', |
|
| 807 | - 'type' => 'string', |
|
| 808 | - 'required' => true, |
|
| 809 | - ), |
|
| 810 | - 'containerVersionId' => array( |
|
| 811 | - 'location' => 'path', |
|
| 812 | - 'type' => 'string', |
|
| 813 | - 'required' => true, |
|
| 814 | - ), |
|
| 815 | - 'fingerprint' => array( |
|
| 816 | - 'location' => 'query', |
|
| 817 | - 'type' => 'string', |
|
| 818 | - ), |
|
| 819 | - ), |
|
| 820 | - ),'restore' => array( |
|
| 821 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore', |
|
| 822 | - 'httpMethod' => 'POST', |
|
| 823 | - 'parameters' => array( |
|
| 824 | - 'accountId' => array( |
|
| 825 | - 'location' => 'path', |
|
| 826 | - 'type' => 'string', |
|
| 827 | - 'required' => true, |
|
| 828 | - ), |
|
| 829 | - 'containerId' => array( |
|
| 830 | - 'location' => 'path', |
|
| 831 | - 'type' => 'string', |
|
| 832 | - 'required' => true, |
|
| 833 | - ), |
|
| 834 | - 'containerVersionId' => array( |
|
| 835 | - 'location' => 'path', |
|
| 836 | - 'type' => 'string', |
|
| 837 | - 'required' => true, |
|
| 838 | - ), |
|
| 839 | - ), |
|
| 840 | - ),'undelete' => array( |
|
| 841 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete', |
|
| 842 | - 'httpMethod' => 'POST', |
|
| 843 | - 'parameters' => array( |
|
| 844 | - 'accountId' => array( |
|
| 845 | - 'location' => 'path', |
|
| 846 | - 'type' => 'string', |
|
| 847 | - 'required' => true, |
|
| 848 | - ), |
|
| 849 | - 'containerId' => array( |
|
| 850 | - 'location' => 'path', |
|
| 851 | - 'type' => 'string', |
|
| 852 | - 'required' => true, |
|
| 853 | - ), |
|
| 854 | - 'containerVersionId' => array( |
|
| 855 | - 'location' => 'path', |
|
| 856 | - 'type' => 'string', |
|
| 857 | - 'required' => true, |
|
| 858 | - ), |
|
| 859 | - ), |
|
| 860 | - ),'update' => array( |
|
| 861 | - 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 862 | - 'httpMethod' => 'PUT', |
|
| 863 | - 'parameters' => array( |
|
| 864 | - 'accountId' => array( |
|
| 865 | - 'location' => 'path', |
|
| 866 | - 'type' => 'string', |
|
| 867 | - 'required' => true, |
|
| 868 | - ), |
|
| 869 | - 'containerId' => array( |
|
| 870 | - 'location' => 'path', |
|
| 871 | - 'type' => 'string', |
|
| 872 | - 'required' => true, |
|
| 873 | - ), |
|
| 874 | - 'containerVersionId' => array( |
|
| 875 | - 'location' => 'path', |
|
| 876 | - 'type' => 'string', |
|
| 877 | - 'required' => true, |
|
| 878 | - ), |
|
| 879 | - 'fingerprint' => array( |
|
| 880 | - 'location' => 'query', |
|
| 881 | - 'type' => 'string', |
|
| 882 | - ), |
|
| 883 | - ), |
|
| 884 | - ), |
|
| 885 | - ) |
|
| 886 | - ) |
|
| 887 | - ); |
|
| 888 | - $this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource( |
|
| 889 | - $this, |
|
| 890 | - $this->serviceName, |
|
| 891 | - 'permissions', |
|
| 892 | - array( |
|
| 893 | - 'methods' => array( |
|
| 894 | - 'create' => array( |
|
| 895 | - 'path' => 'accounts/{accountId}/permissions', |
|
| 896 | - 'httpMethod' => 'POST', |
|
| 897 | - 'parameters' => array( |
|
| 898 | - 'accountId' => array( |
|
| 899 | - 'location' => 'path', |
|
| 900 | - 'type' => 'string', |
|
| 901 | - 'required' => true, |
|
| 902 | - ), |
|
| 903 | - ), |
|
| 904 | - ),'delete' => array( |
|
| 905 | - 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 906 | - 'httpMethod' => 'DELETE', |
|
| 907 | - 'parameters' => array( |
|
| 908 | - 'accountId' => array( |
|
| 909 | - 'location' => 'path', |
|
| 910 | - 'type' => 'string', |
|
| 911 | - 'required' => true, |
|
| 912 | - ), |
|
| 913 | - 'permissionId' => array( |
|
| 914 | - 'location' => 'path', |
|
| 915 | - 'type' => 'string', |
|
| 916 | - 'required' => true, |
|
| 917 | - ), |
|
| 918 | - ), |
|
| 919 | - ),'get' => array( |
|
| 920 | - 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 921 | - 'httpMethod' => 'GET', |
|
| 922 | - 'parameters' => array( |
|
| 923 | - 'accountId' => array( |
|
| 924 | - 'location' => 'path', |
|
| 925 | - 'type' => 'string', |
|
| 926 | - 'required' => true, |
|
| 927 | - ), |
|
| 928 | - 'permissionId' => array( |
|
| 929 | - 'location' => 'path', |
|
| 930 | - 'type' => 'string', |
|
| 931 | - 'required' => true, |
|
| 932 | - ), |
|
| 933 | - ), |
|
| 934 | - ),'list' => array( |
|
| 935 | - 'path' => 'accounts/{accountId}/permissions', |
|
| 936 | - 'httpMethod' => 'GET', |
|
| 937 | - 'parameters' => array( |
|
| 938 | - 'accountId' => array( |
|
| 939 | - 'location' => 'path', |
|
| 940 | - 'type' => 'string', |
|
| 941 | - 'required' => true, |
|
| 942 | - ), |
|
| 943 | - ), |
|
| 944 | - ),'update' => array( |
|
| 945 | - 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 946 | - 'httpMethod' => 'PUT', |
|
| 947 | - 'parameters' => array( |
|
| 948 | - 'accountId' => array( |
|
| 949 | - 'location' => 'path', |
|
| 950 | - 'type' => 'string', |
|
| 951 | - 'required' => true, |
|
| 952 | - ), |
|
| 953 | - 'permissionId' => array( |
|
| 954 | - 'location' => 'path', |
|
| 955 | - 'type' => 'string', |
|
| 956 | - 'required' => true, |
|
| 957 | - ), |
|
| 958 | - ), |
|
| 959 | - ), |
|
| 960 | - ) |
|
| 961 | - ) |
|
| 962 | - ); |
|
| 73 | + parent::__construct($client); |
|
| 74 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 75 | + $this->servicePath = 'tagmanager/v1/'; |
|
| 76 | + $this->version = 'v1'; |
|
| 77 | + $this->serviceName = 'tagmanager'; |
|
| 78 | + |
|
| 79 | + $this->accounts = new Google_Service_TagManager_Accounts_Resource( |
|
| 80 | + $this, |
|
| 81 | + $this->serviceName, |
|
| 82 | + 'accounts', |
|
| 83 | + array( |
|
| 84 | + 'methods' => array( |
|
| 85 | + 'get' => array( |
|
| 86 | + 'path' => 'accounts/{accountId}', |
|
| 87 | + 'httpMethod' => 'GET', |
|
| 88 | + 'parameters' => array( |
|
| 89 | + 'accountId' => array( |
|
| 90 | + 'location' => 'path', |
|
| 91 | + 'type' => 'string', |
|
| 92 | + 'required' => true, |
|
| 93 | + ), |
|
| 94 | + ), |
|
| 95 | + ),'list' => array( |
|
| 96 | + 'path' => 'accounts', |
|
| 97 | + 'httpMethod' => 'GET', |
|
| 98 | + 'parameters' => array(), |
|
| 99 | + ),'update' => array( |
|
| 100 | + 'path' => 'accounts/{accountId}', |
|
| 101 | + 'httpMethod' => 'PUT', |
|
| 102 | + 'parameters' => array( |
|
| 103 | + 'accountId' => array( |
|
| 104 | + 'location' => 'path', |
|
| 105 | + 'type' => 'string', |
|
| 106 | + 'required' => true, |
|
| 107 | + ), |
|
| 108 | + 'fingerprint' => array( |
|
| 109 | + 'location' => 'query', |
|
| 110 | + 'type' => 'string', |
|
| 111 | + ), |
|
| 112 | + ), |
|
| 113 | + ), |
|
| 114 | + ) |
|
| 115 | + ) |
|
| 116 | + ); |
|
| 117 | + $this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource( |
|
| 118 | + $this, |
|
| 119 | + $this->serviceName, |
|
| 120 | + 'containers', |
|
| 121 | + array( |
|
| 122 | + 'methods' => array( |
|
| 123 | + 'create' => array( |
|
| 124 | + 'path' => 'accounts/{accountId}/containers', |
|
| 125 | + 'httpMethod' => 'POST', |
|
| 126 | + 'parameters' => array( |
|
| 127 | + 'accountId' => array( |
|
| 128 | + 'location' => 'path', |
|
| 129 | + 'type' => 'string', |
|
| 130 | + 'required' => true, |
|
| 131 | + ), |
|
| 132 | + ), |
|
| 133 | + ),'delete' => array( |
|
| 134 | + 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 135 | + 'httpMethod' => 'DELETE', |
|
| 136 | + 'parameters' => array( |
|
| 137 | + 'accountId' => array( |
|
| 138 | + 'location' => 'path', |
|
| 139 | + 'type' => 'string', |
|
| 140 | + 'required' => true, |
|
| 141 | + ), |
|
| 142 | + 'containerId' => array( |
|
| 143 | + 'location' => 'path', |
|
| 144 | + 'type' => 'string', |
|
| 145 | + 'required' => true, |
|
| 146 | + ), |
|
| 147 | + ), |
|
| 148 | + ),'get' => array( |
|
| 149 | + 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 150 | + 'httpMethod' => 'GET', |
|
| 151 | + 'parameters' => array( |
|
| 152 | + 'accountId' => array( |
|
| 153 | + 'location' => 'path', |
|
| 154 | + 'type' => 'string', |
|
| 155 | + 'required' => true, |
|
| 156 | + ), |
|
| 157 | + 'containerId' => array( |
|
| 158 | + 'location' => 'path', |
|
| 159 | + 'type' => 'string', |
|
| 160 | + 'required' => true, |
|
| 161 | + ), |
|
| 162 | + ), |
|
| 163 | + ),'list' => array( |
|
| 164 | + 'path' => 'accounts/{accountId}/containers', |
|
| 165 | + 'httpMethod' => 'GET', |
|
| 166 | + 'parameters' => array( |
|
| 167 | + 'accountId' => array( |
|
| 168 | + 'location' => 'path', |
|
| 169 | + 'type' => 'string', |
|
| 170 | + 'required' => true, |
|
| 171 | + ), |
|
| 172 | + ), |
|
| 173 | + ),'update' => array( |
|
| 174 | + 'path' => 'accounts/{accountId}/containers/{containerId}', |
|
| 175 | + 'httpMethod' => 'PUT', |
|
| 176 | + 'parameters' => array( |
|
| 177 | + 'accountId' => array( |
|
| 178 | + 'location' => 'path', |
|
| 179 | + 'type' => 'string', |
|
| 180 | + 'required' => true, |
|
| 181 | + ), |
|
| 182 | + 'containerId' => array( |
|
| 183 | + 'location' => 'path', |
|
| 184 | + 'type' => 'string', |
|
| 185 | + 'required' => true, |
|
| 186 | + ), |
|
| 187 | + 'fingerprint' => array( |
|
| 188 | + 'location' => 'query', |
|
| 189 | + 'type' => 'string', |
|
| 190 | + ), |
|
| 191 | + ), |
|
| 192 | + ), |
|
| 193 | + ) |
|
| 194 | + ) |
|
| 195 | + ); |
|
| 196 | + $this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource( |
|
| 197 | + $this, |
|
| 198 | + $this->serviceName, |
|
| 199 | + 'macros', |
|
| 200 | + array( |
|
| 201 | + 'methods' => array( |
|
| 202 | + 'create' => array( |
|
| 203 | + 'path' => 'accounts/{accountId}/containers/{containerId}/macros', |
|
| 204 | + 'httpMethod' => 'POST', |
|
| 205 | + 'parameters' => array( |
|
| 206 | + 'accountId' => array( |
|
| 207 | + 'location' => 'path', |
|
| 208 | + 'type' => 'string', |
|
| 209 | + 'required' => true, |
|
| 210 | + ), |
|
| 211 | + 'containerId' => array( |
|
| 212 | + 'location' => 'path', |
|
| 213 | + 'type' => 'string', |
|
| 214 | + 'required' => true, |
|
| 215 | + ), |
|
| 216 | + ), |
|
| 217 | + ),'delete' => array( |
|
| 218 | + 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 219 | + 'httpMethod' => 'DELETE', |
|
| 220 | + 'parameters' => array( |
|
| 221 | + 'accountId' => array( |
|
| 222 | + 'location' => 'path', |
|
| 223 | + 'type' => 'string', |
|
| 224 | + 'required' => true, |
|
| 225 | + ), |
|
| 226 | + 'containerId' => array( |
|
| 227 | + 'location' => 'path', |
|
| 228 | + 'type' => 'string', |
|
| 229 | + 'required' => true, |
|
| 230 | + ), |
|
| 231 | + 'macroId' => array( |
|
| 232 | + 'location' => 'path', |
|
| 233 | + 'type' => 'string', |
|
| 234 | + 'required' => true, |
|
| 235 | + ), |
|
| 236 | + ), |
|
| 237 | + ),'get' => array( |
|
| 238 | + 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 239 | + 'httpMethod' => 'GET', |
|
| 240 | + 'parameters' => array( |
|
| 241 | + 'accountId' => array( |
|
| 242 | + 'location' => 'path', |
|
| 243 | + 'type' => 'string', |
|
| 244 | + 'required' => true, |
|
| 245 | + ), |
|
| 246 | + 'containerId' => array( |
|
| 247 | + 'location' => 'path', |
|
| 248 | + 'type' => 'string', |
|
| 249 | + 'required' => true, |
|
| 250 | + ), |
|
| 251 | + 'macroId' => array( |
|
| 252 | + 'location' => 'path', |
|
| 253 | + 'type' => 'string', |
|
| 254 | + 'required' => true, |
|
| 255 | + ), |
|
| 256 | + ), |
|
| 257 | + ),'list' => array( |
|
| 258 | + 'path' => 'accounts/{accountId}/containers/{containerId}/macros', |
|
| 259 | + 'httpMethod' => 'GET', |
|
| 260 | + 'parameters' => array( |
|
| 261 | + 'accountId' => array( |
|
| 262 | + 'location' => 'path', |
|
| 263 | + 'type' => 'string', |
|
| 264 | + 'required' => true, |
|
| 265 | + ), |
|
| 266 | + 'containerId' => array( |
|
| 267 | + 'location' => 'path', |
|
| 268 | + 'type' => 'string', |
|
| 269 | + 'required' => true, |
|
| 270 | + ), |
|
| 271 | + ), |
|
| 272 | + ),'update' => array( |
|
| 273 | + 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
|
| 274 | + 'httpMethod' => 'PUT', |
|
| 275 | + 'parameters' => array( |
|
| 276 | + 'accountId' => array( |
|
| 277 | + 'location' => 'path', |
|
| 278 | + 'type' => 'string', |
|
| 279 | + 'required' => true, |
|
| 280 | + ), |
|
| 281 | + 'containerId' => array( |
|
| 282 | + 'location' => 'path', |
|
| 283 | + 'type' => 'string', |
|
| 284 | + 'required' => true, |
|
| 285 | + ), |
|
| 286 | + 'macroId' => array( |
|
| 287 | + 'location' => 'path', |
|
| 288 | + 'type' => 'string', |
|
| 289 | + 'required' => true, |
|
| 290 | + ), |
|
| 291 | + 'fingerprint' => array( |
|
| 292 | + 'location' => 'query', |
|
| 293 | + 'type' => 'string', |
|
| 294 | + ), |
|
| 295 | + ), |
|
| 296 | + ), |
|
| 297 | + ) |
|
| 298 | + ) |
|
| 299 | + ); |
|
| 300 | + $this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource( |
|
| 301 | + $this, |
|
| 302 | + $this->serviceName, |
|
| 303 | + 'rules', |
|
| 304 | + array( |
|
| 305 | + 'methods' => array( |
|
| 306 | + 'create' => array( |
|
| 307 | + 'path' => 'accounts/{accountId}/containers/{containerId}/rules', |
|
| 308 | + 'httpMethod' => 'POST', |
|
| 309 | + 'parameters' => array( |
|
| 310 | + 'accountId' => array( |
|
| 311 | + 'location' => 'path', |
|
| 312 | + 'type' => 'string', |
|
| 313 | + 'required' => true, |
|
| 314 | + ), |
|
| 315 | + 'containerId' => array( |
|
| 316 | + 'location' => 'path', |
|
| 317 | + 'type' => 'string', |
|
| 318 | + 'required' => true, |
|
| 319 | + ), |
|
| 320 | + ), |
|
| 321 | + ),'delete' => array( |
|
| 322 | + 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 323 | + 'httpMethod' => 'DELETE', |
|
| 324 | + 'parameters' => array( |
|
| 325 | + 'accountId' => array( |
|
| 326 | + 'location' => 'path', |
|
| 327 | + 'type' => 'string', |
|
| 328 | + 'required' => true, |
|
| 329 | + ), |
|
| 330 | + 'containerId' => array( |
|
| 331 | + 'location' => 'path', |
|
| 332 | + 'type' => 'string', |
|
| 333 | + 'required' => true, |
|
| 334 | + ), |
|
| 335 | + 'ruleId' => array( |
|
| 336 | + 'location' => 'path', |
|
| 337 | + 'type' => 'string', |
|
| 338 | + 'required' => true, |
|
| 339 | + ), |
|
| 340 | + ), |
|
| 341 | + ),'get' => array( |
|
| 342 | + 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 343 | + 'httpMethod' => 'GET', |
|
| 344 | + 'parameters' => array( |
|
| 345 | + 'accountId' => array( |
|
| 346 | + 'location' => 'path', |
|
| 347 | + 'type' => 'string', |
|
| 348 | + 'required' => true, |
|
| 349 | + ), |
|
| 350 | + 'containerId' => array( |
|
| 351 | + 'location' => 'path', |
|
| 352 | + 'type' => 'string', |
|
| 353 | + 'required' => true, |
|
| 354 | + ), |
|
| 355 | + 'ruleId' => array( |
|
| 356 | + 'location' => 'path', |
|
| 357 | + 'type' => 'string', |
|
| 358 | + 'required' => true, |
|
| 359 | + ), |
|
| 360 | + ), |
|
| 361 | + ),'list' => array( |
|
| 362 | + 'path' => 'accounts/{accountId}/containers/{containerId}/rules', |
|
| 363 | + 'httpMethod' => 'GET', |
|
| 364 | + 'parameters' => array( |
|
| 365 | + 'accountId' => array( |
|
| 366 | + 'location' => 'path', |
|
| 367 | + 'type' => 'string', |
|
| 368 | + 'required' => true, |
|
| 369 | + ), |
|
| 370 | + 'containerId' => array( |
|
| 371 | + 'location' => 'path', |
|
| 372 | + 'type' => 'string', |
|
| 373 | + 'required' => true, |
|
| 374 | + ), |
|
| 375 | + ), |
|
| 376 | + ),'update' => array( |
|
| 377 | + 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
|
| 378 | + 'httpMethod' => 'PUT', |
|
| 379 | + 'parameters' => array( |
|
| 380 | + 'accountId' => array( |
|
| 381 | + 'location' => 'path', |
|
| 382 | + 'type' => 'string', |
|
| 383 | + 'required' => true, |
|
| 384 | + ), |
|
| 385 | + 'containerId' => array( |
|
| 386 | + 'location' => 'path', |
|
| 387 | + 'type' => 'string', |
|
| 388 | + 'required' => true, |
|
| 389 | + ), |
|
| 390 | + 'ruleId' => array( |
|
| 391 | + 'location' => 'path', |
|
| 392 | + 'type' => 'string', |
|
| 393 | + 'required' => true, |
|
| 394 | + ), |
|
| 395 | + 'fingerprint' => array( |
|
| 396 | + 'location' => 'query', |
|
| 397 | + 'type' => 'string', |
|
| 398 | + ), |
|
| 399 | + ), |
|
| 400 | + ), |
|
| 401 | + ) |
|
| 402 | + ) |
|
| 403 | + ); |
|
| 404 | + $this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource( |
|
| 405 | + $this, |
|
| 406 | + $this->serviceName, |
|
| 407 | + 'tags', |
|
| 408 | + array( |
|
| 409 | + 'methods' => array( |
|
| 410 | + 'create' => array( |
|
| 411 | + 'path' => 'accounts/{accountId}/containers/{containerId}/tags', |
|
| 412 | + 'httpMethod' => 'POST', |
|
| 413 | + 'parameters' => array( |
|
| 414 | + 'accountId' => array( |
|
| 415 | + 'location' => 'path', |
|
| 416 | + 'type' => 'string', |
|
| 417 | + 'required' => true, |
|
| 418 | + ), |
|
| 419 | + 'containerId' => array( |
|
| 420 | + 'location' => 'path', |
|
| 421 | + 'type' => 'string', |
|
| 422 | + 'required' => true, |
|
| 423 | + ), |
|
| 424 | + ), |
|
| 425 | + ),'delete' => array( |
|
| 426 | + 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 427 | + 'httpMethod' => 'DELETE', |
|
| 428 | + 'parameters' => array( |
|
| 429 | + 'accountId' => array( |
|
| 430 | + 'location' => 'path', |
|
| 431 | + 'type' => 'string', |
|
| 432 | + 'required' => true, |
|
| 433 | + ), |
|
| 434 | + 'containerId' => array( |
|
| 435 | + 'location' => 'path', |
|
| 436 | + 'type' => 'string', |
|
| 437 | + 'required' => true, |
|
| 438 | + ), |
|
| 439 | + 'tagId' => array( |
|
| 440 | + 'location' => 'path', |
|
| 441 | + 'type' => 'string', |
|
| 442 | + 'required' => true, |
|
| 443 | + ), |
|
| 444 | + ), |
|
| 445 | + ),'get' => array( |
|
| 446 | + 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 447 | + 'httpMethod' => 'GET', |
|
| 448 | + 'parameters' => array( |
|
| 449 | + 'accountId' => array( |
|
| 450 | + 'location' => 'path', |
|
| 451 | + 'type' => 'string', |
|
| 452 | + 'required' => true, |
|
| 453 | + ), |
|
| 454 | + 'containerId' => array( |
|
| 455 | + 'location' => 'path', |
|
| 456 | + 'type' => 'string', |
|
| 457 | + 'required' => true, |
|
| 458 | + ), |
|
| 459 | + 'tagId' => array( |
|
| 460 | + 'location' => 'path', |
|
| 461 | + 'type' => 'string', |
|
| 462 | + 'required' => true, |
|
| 463 | + ), |
|
| 464 | + ), |
|
| 465 | + ),'list' => array( |
|
| 466 | + 'path' => 'accounts/{accountId}/containers/{containerId}/tags', |
|
| 467 | + 'httpMethod' => 'GET', |
|
| 468 | + 'parameters' => array( |
|
| 469 | + 'accountId' => array( |
|
| 470 | + 'location' => 'path', |
|
| 471 | + 'type' => 'string', |
|
| 472 | + 'required' => true, |
|
| 473 | + ), |
|
| 474 | + 'containerId' => array( |
|
| 475 | + 'location' => 'path', |
|
| 476 | + 'type' => 'string', |
|
| 477 | + 'required' => true, |
|
| 478 | + ), |
|
| 479 | + ), |
|
| 480 | + ),'update' => array( |
|
| 481 | + 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
|
| 482 | + 'httpMethod' => 'PUT', |
|
| 483 | + 'parameters' => array( |
|
| 484 | + 'accountId' => array( |
|
| 485 | + 'location' => 'path', |
|
| 486 | + 'type' => 'string', |
|
| 487 | + 'required' => true, |
|
| 488 | + ), |
|
| 489 | + 'containerId' => array( |
|
| 490 | + 'location' => 'path', |
|
| 491 | + 'type' => 'string', |
|
| 492 | + 'required' => true, |
|
| 493 | + ), |
|
| 494 | + 'tagId' => array( |
|
| 495 | + 'location' => 'path', |
|
| 496 | + 'type' => 'string', |
|
| 497 | + 'required' => true, |
|
| 498 | + ), |
|
| 499 | + 'fingerprint' => array( |
|
| 500 | + 'location' => 'query', |
|
| 501 | + 'type' => 'string', |
|
| 502 | + ), |
|
| 503 | + ), |
|
| 504 | + ), |
|
| 505 | + ) |
|
| 506 | + ) |
|
| 507 | + ); |
|
| 508 | + $this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource( |
|
| 509 | + $this, |
|
| 510 | + $this->serviceName, |
|
| 511 | + 'triggers', |
|
| 512 | + array( |
|
| 513 | + 'methods' => array( |
|
| 514 | + 'create' => array( |
|
| 515 | + 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', |
|
| 516 | + 'httpMethod' => 'POST', |
|
| 517 | + 'parameters' => array( |
|
| 518 | + 'accountId' => array( |
|
| 519 | + 'location' => 'path', |
|
| 520 | + 'type' => 'string', |
|
| 521 | + 'required' => true, |
|
| 522 | + ), |
|
| 523 | + 'containerId' => array( |
|
| 524 | + 'location' => 'path', |
|
| 525 | + 'type' => 'string', |
|
| 526 | + 'required' => true, |
|
| 527 | + ), |
|
| 528 | + ), |
|
| 529 | + ),'delete' => array( |
|
| 530 | + 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 531 | + 'httpMethod' => 'DELETE', |
|
| 532 | + 'parameters' => array( |
|
| 533 | + 'accountId' => array( |
|
| 534 | + 'location' => 'path', |
|
| 535 | + 'type' => 'string', |
|
| 536 | + 'required' => true, |
|
| 537 | + ), |
|
| 538 | + 'containerId' => array( |
|
| 539 | + 'location' => 'path', |
|
| 540 | + 'type' => 'string', |
|
| 541 | + 'required' => true, |
|
| 542 | + ), |
|
| 543 | + 'triggerId' => array( |
|
| 544 | + 'location' => 'path', |
|
| 545 | + 'type' => 'string', |
|
| 546 | + 'required' => true, |
|
| 547 | + ), |
|
| 548 | + ), |
|
| 549 | + ),'get' => array( |
|
| 550 | + 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 551 | + 'httpMethod' => 'GET', |
|
| 552 | + 'parameters' => array( |
|
| 553 | + 'accountId' => array( |
|
| 554 | + 'location' => 'path', |
|
| 555 | + 'type' => 'string', |
|
| 556 | + 'required' => true, |
|
| 557 | + ), |
|
| 558 | + 'containerId' => array( |
|
| 559 | + 'location' => 'path', |
|
| 560 | + 'type' => 'string', |
|
| 561 | + 'required' => true, |
|
| 562 | + ), |
|
| 563 | + 'triggerId' => array( |
|
| 564 | + 'location' => 'path', |
|
| 565 | + 'type' => 'string', |
|
| 566 | + 'required' => true, |
|
| 567 | + ), |
|
| 568 | + ), |
|
| 569 | + ),'list' => array( |
|
| 570 | + 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', |
|
| 571 | + 'httpMethod' => 'GET', |
|
| 572 | + 'parameters' => array( |
|
| 573 | + 'accountId' => array( |
|
| 574 | + 'location' => 'path', |
|
| 575 | + 'type' => 'string', |
|
| 576 | + 'required' => true, |
|
| 577 | + ), |
|
| 578 | + 'containerId' => array( |
|
| 579 | + 'location' => 'path', |
|
| 580 | + 'type' => 'string', |
|
| 581 | + 'required' => true, |
|
| 582 | + ), |
|
| 583 | + ), |
|
| 584 | + ),'update' => array( |
|
| 585 | + 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
|
| 586 | + 'httpMethod' => 'PUT', |
|
| 587 | + 'parameters' => array( |
|
| 588 | + 'accountId' => array( |
|
| 589 | + 'location' => 'path', |
|
| 590 | + 'type' => 'string', |
|
| 591 | + 'required' => true, |
|
| 592 | + ), |
|
| 593 | + 'containerId' => array( |
|
| 594 | + 'location' => 'path', |
|
| 595 | + 'type' => 'string', |
|
| 596 | + 'required' => true, |
|
| 597 | + ), |
|
| 598 | + 'triggerId' => array( |
|
| 599 | + 'location' => 'path', |
|
| 600 | + 'type' => 'string', |
|
| 601 | + 'required' => true, |
|
| 602 | + ), |
|
| 603 | + 'fingerprint' => array( |
|
| 604 | + 'location' => 'query', |
|
| 605 | + 'type' => 'string', |
|
| 606 | + ), |
|
| 607 | + ), |
|
| 608 | + ), |
|
| 609 | + ) |
|
| 610 | + ) |
|
| 611 | + ); |
|
| 612 | + $this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource( |
|
| 613 | + $this, |
|
| 614 | + $this->serviceName, |
|
| 615 | + 'variables', |
|
| 616 | + array( |
|
| 617 | + 'methods' => array( |
|
| 618 | + 'create' => array( |
|
| 619 | + 'path' => 'accounts/{accountId}/containers/{containerId}/variables', |
|
| 620 | + 'httpMethod' => 'POST', |
|
| 621 | + 'parameters' => array( |
|
| 622 | + 'accountId' => array( |
|
| 623 | + 'location' => 'path', |
|
| 624 | + 'type' => 'string', |
|
| 625 | + 'required' => true, |
|
| 626 | + ), |
|
| 627 | + 'containerId' => array( |
|
| 628 | + 'location' => 'path', |
|
| 629 | + 'type' => 'string', |
|
| 630 | + 'required' => true, |
|
| 631 | + ), |
|
| 632 | + ), |
|
| 633 | + ),'delete' => array( |
|
| 634 | + 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 635 | + 'httpMethod' => 'DELETE', |
|
| 636 | + 'parameters' => array( |
|
| 637 | + 'accountId' => array( |
|
| 638 | + 'location' => 'path', |
|
| 639 | + 'type' => 'string', |
|
| 640 | + 'required' => true, |
|
| 641 | + ), |
|
| 642 | + 'containerId' => array( |
|
| 643 | + 'location' => 'path', |
|
| 644 | + 'type' => 'string', |
|
| 645 | + 'required' => true, |
|
| 646 | + ), |
|
| 647 | + 'variableId' => array( |
|
| 648 | + 'location' => 'path', |
|
| 649 | + 'type' => 'string', |
|
| 650 | + 'required' => true, |
|
| 651 | + ), |
|
| 652 | + ), |
|
| 653 | + ),'get' => array( |
|
| 654 | + 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 655 | + 'httpMethod' => 'GET', |
|
| 656 | + 'parameters' => array( |
|
| 657 | + 'accountId' => array( |
|
| 658 | + 'location' => 'path', |
|
| 659 | + 'type' => 'string', |
|
| 660 | + 'required' => true, |
|
| 661 | + ), |
|
| 662 | + 'containerId' => array( |
|
| 663 | + 'location' => 'path', |
|
| 664 | + 'type' => 'string', |
|
| 665 | + 'required' => true, |
|
| 666 | + ), |
|
| 667 | + 'variableId' => array( |
|
| 668 | + 'location' => 'path', |
|
| 669 | + 'type' => 'string', |
|
| 670 | + 'required' => true, |
|
| 671 | + ), |
|
| 672 | + ), |
|
| 673 | + ),'list' => array( |
|
| 674 | + 'path' => 'accounts/{accountId}/containers/{containerId}/variables', |
|
| 675 | + 'httpMethod' => 'GET', |
|
| 676 | + 'parameters' => array( |
|
| 677 | + 'accountId' => array( |
|
| 678 | + 'location' => 'path', |
|
| 679 | + 'type' => 'string', |
|
| 680 | + 'required' => true, |
|
| 681 | + ), |
|
| 682 | + 'containerId' => array( |
|
| 683 | + 'location' => 'path', |
|
| 684 | + 'type' => 'string', |
|
| 685 | + 'required' => true, |
|
| 686 | + ), |
|
| 687 | + ), |
|
| 688 | + ),'update' => array( |
|
| 689 | + 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
|
| 690 | + 'httpMethod' => 'PUT', |
|
| 691 | + 'parameters' => array( |
|
| 692 | + 'accountId' => array( |
|
| 693 | + 'location' => 'path', |
|
| 694 | + 'type' => 'string', |
|
| 695 | + 'required' => true, |
|
| 696 | + ), |
|
| 697 | + 'containerId' => array( |
|
| 698 | + 'location' => 'path', |
|
| 699 | + 'type' => 'string', |
|
| 700 | + 'required' => true, |
|
| 701 | + ), |
|
| 702 | + 'variableId' => array( |
|
| 703 | + 'location' => 'path', |
|
| 704 | + 'type' => 'string', |
|
| 705 | + 'required' => true, |
|
| 706 | + ), |
|
| 707 | + 'fingerprint' => array( |
|
| 708 | + 'location' => 'query', |
|
| 709 | + 'type' => 'string', |
|
| 710 | + ), |
|
| 711 | + ), |
|
| 712 | + ), |
|
| 713 | + ) |
|
| 714 | + ) |
|
| 715 | + ); |
|
| 716 | + $this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource( |
|
| 717 | + $this, |
|
| 718 | + $this->serviceName, |
|
| 719 | + 'versions', |
|
| 720 | + array( |
|
| 721 | + 'methods' => array( |
|
| 722 | + 'create' => array( |
|
| 723 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions', |
|
| 724 | + 'httpMethod' => 'POST', |
|
| 725 | + 'parameters' => array( |
|
| 726 | + 'accountId' => array( |
|
| 727 | + 'location' => 'path', |
|
| 728 | + 'type' => 'string', |
|
| 729 | + 'required' => true, |
|
| 730 | + ), |
|
| 731 | + 'containerId' => array( |
|
| 732 | + 'location' => 'path', |
|
| 733 | + 'type' => 'string', |
|
| 734 | + 'required' => true, |
|
| 735 | + ), |
|
| 736 | + ), |
|
| 737 | + ),'delete' => array( |
|
| 738 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 739 | + 'httpMethod' => 'DELETE', |
|
| 740 | + 'parameters' => array( |
|
| 741 | + 'accountId' => array( |
|
| 742 | + 'location' => 'path', |
|
| 743 | + 'type' => 'string', |
|
| 744 | + 'required' => true, |
|
| 745 | + ), |
|
| 746 | + 'containerId' => array( |
|
| 747 | + 'location' => 'path', |
|
| 748 | + 'type' => 'string', |
|
| 749 | + 'required' => true, |
|
| 750 | + ), |
|
| 751 | + 'containerVersionId' => array( |
|
| 752 | + 'location' => 'path', |
|
| 753 | + 'type' => 'string', |
|
| 754 | + 'required' => true, |
|
| 755 | + ), |
|
| 756 | + ), |
|
| 757 | + ),'get' => array( |
|
| 758 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 759 | + 'httpMethod' => 'GET', |
|
| 760 | + 'parameters' => array( |
|
| 761 | + 'accountId' => array( |
|
| 762 | + 'location' => 'path', |
|
| 763 | + 'type' => 'string', |
|
| 764 | + 'required' => true, |
|
| 765 | + ), |
|
| 766 | + 'containerId' => array( |
|
| 767 | + 'location' => 'path', |
|
| 768 | + 'type' => 'string', |
|
| 769 | + 'required' => true, |
|
| 770 | + ), |
|
| 771 | + 'containerVersionId' => array( |
|
| 772 | + 'location' => 'path', |
|
| 773 | + 'type' => 'string', |
|
| 774 | + 'required' => true, |
|
| 775 | + ), |
|
| 776 | + ), |
|
| 777 | + ),'list' => array( |
|
| 778 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions', |
|
| 779 | + 'httpMethod' => 'GET', |
|
| 780 | + 'parameters' => array( |
|
| 781 | + 'accountId' => array( |
|
| 782 | + 'location' => 'path', |
|
| 783 | + 'type' => 'string', |
|
| 784 | + 'required' => true, |
|
| 785 | + ), |
|
| 786 | + 'containerId' => array( |
|
| 787 | + 'location' => 'path', |
|
| 788 | + 'type' => 'string', |
|
| 789 | + 'required' => true, |
|
| 790 | + ), |
|
| 791 | + 'headers' => array( |
|
| 792 | + 'location' => 'query', |
|
| 793 | + 'type' => 'boolean', |
|
| 794 | + ), |
|
| 795 | + ), |
|
| 796 | + ),'publish' => array( |
|
| 797 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish', |
|
| 798 | + 'httpMethod' => 'POST', |
|
| 799 | + 'parameters' => array( |
|
| 800 | + 'accountId' => array( |
|
| 801 | + 'location' => 'path', |
|
| 802 | + 'type' => 'string', |
|
| 803 | + 'required' => true, |
|
| 804 | + ), |
|
| 805 | + 'containerId' => array( |
|
| 806 | + 'location' => 'path', |
|
| 807 | + 'type' => 'string', |
|
| 808 | + 'required' => true, |
|
| 809 | + ), |
|
| 810 | + 'containerVersionId' => array( |
|
| 811 | + 'location' => 'path', |
|
| 812 | + 'type' => 'string', |
|
| 813 | + 'required' => true, |
|
| 814 | + ), |
|
| 815 | + 'fingerprint' => array( |
|
| 816 | + 'location' => 'query', |
|
| 817 | + 'type' => 'string', |
|
| 818 | + ), |
|
| 819 | + ), |
|
| 820 | + ),'restore' => array( |
|
| 821 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore', |
|
| 822 | + 'httpMethod' => 'POST', |
|
| 823 | + 'parameters' => array( |
|
| 824 | + 'accountId' => array( |
|
| 825 | + 'location' => 'path', |
|
| 826 | + 'type' => 'string', |
|
| 827 | + 'required' => true, |
|
| 828 | + ), |
|
| 829 | + 'containerId' => array( |
|
| 830 | + 'location' => 'path', |
|
| 831 | + 'type' => 'string', |
|
| 832 | + 'required' => true, |
|
| 833 | + ), |
|
| 834 | + 'containerVersionId' => array( |
|
| 835 | + 'location' => 'path', |
|
| 836 | + 'type' => 'string', |
|
| 837 | + 'required' => true, |
|
| 838 | + ), |
|
| 839 | + ), |
|
| 840 | + ),'undelete' => array( |
|
| 841 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete', |
|
| 842 | + 'httpMethod' => 'POST', |
|
| 843 | + 'parameters' => array( |
|
| 844 | + 'accountId' => array( |
|
| 845 | + 'location' => 'path', |
|
| 846 | + 'type' => 'string', |
|
| 847 | + 'required' => true, |
|
| 848 | + ), |
|
| 849 | + 'containerId' => array( |
|
| 850 | + 'location' => 'path', |
|
| 851 | + 'type' => 'string', |
|
| 852 | + 'required' => true, |
|
| 853 | + ), |
|
| 854 | + 'containerVersionId' => array( |
|
| 855 | + 'location' => 'path', |
|
| 856 | + 'type' => 'string', |
|
| 857 | + 'required' => true, |
|
| 858 | + ), |
|
| 859 | + ), |
|
| 860 | + ),'update' => array( |
|
| 861 | + 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
|
| 862 | + 'httpMethod' => 'PUT', |
|
| 863 | + 'parameters' => array( |
|
| 864 | + 'accountId' => array( |
|
| 865 | + 'location' => 'path', |
|
| 866 | + 'type' => 'string', |
|
| 867 | + 'required' => true, |
|
| 868 | + ), |
|
| 869 | + 'containerId' => array( |
|
| 870 | + 'location' => 'path', |
|
| 871 | + 'type' => 'string', |
|
| 872 | + 'required' => true, |
|
| 873 | + ), |
|
| 874 | + 'containerVersionId' => array( |
|
| 875 | + 'location' => 'path', |
|
| 876 | + 'type' => 'string', |
|
| 877 | + 'required' => true, |
|
| 878 | + ), |
|
| 879 | + 'fingerprint' => array( |
|
| 880 | + 'location' => 'query', |
|
| 881 | + 'type' => 'string', |
|
| 882 | + ), |
|
| 883 | + ), |
|
| 884 | + ), |
|
| 885 | + ) |
|
| 886 | + ) |
|
| 887 | + ); |
|
| 888 | + $this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource( |
|
| 889 | + $this, |
|
| 890 | + $this->serviceName, |
|
| 891 | + 'permissions', |
|
| 892 | + array( |
|
| 893 | + 'methods' => array( |
|
| 894 | + 'create' => array( |
|
| 895 | + 'path' => 'accounts/{accountId}/permissions', |
|
| 896 | + 'httpMethod' => 'POST', |
|
| 897 | + 'parameters' => array( |
|
| 898 | + 'accountId' => array( |
|
| 899 | + 'location' => 'path', |
|
| 900 | + 'type' => 'string', |
|
| 901 | + 'required' => true, |
|
| 902 | + ), |
|
| 903 | + ), |
|
| 904 | + ),'delete' => array( |
|
| 905 | + 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 906 | + 'httpMethod' => 'DELETE', |
|
| 907 | + 'parameters' => array( |
|
| 908 | + 'accountId' => array( |
|
| 909 | + 'location' => 'path', |
|
| 910 | + 'type' => 'string', |
|
| 911 | + 'required' => true, |
|
| 912 | + ), |
|
| 913 | + 'permissionId' => array( |
|
| 914 | + 'location' => 'path', |
|
| 915 | + 'type' => 'string', |
|
| 916 | + 'required' => true, |
|
| 917 | + ), |
|
| 918 | + ), |
|
| 919 | + ),'get' => array( |
|
| 920 | + 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 921 | + 'httpMethod' => 'GET', |
|
| 922 | + 'parameters' => array( |
|
| 923 | + 'accountId' => array( |
|
| 924 | + 'location' => 'path', |
|
| 925 | + 'type' => 'string', |
|
| 926 | + 'required' => true, |
|
| 927 | + ), |
|
| 928 | + 'permissionId' => array( |
|
| 929 | + 'location' => 'path', |
|
| 930 | + 'type' => 'string', |
|
| 931 | + 'required' => true, |
|
| 932 | + ), |
|
| 933 | + ), |
|
| 934 | + ),'list' => array( |
|
| 935 | + 'path' => 'accounts/{accountId}/permissions', |
|
| 936 | + 'httpMethod' => 'GET', |
|
| 937 | + 'parameters' => array( |
|
| 938 | + 'accountId' => array( |
|
| 939 | + 'location' => 'path', |
|
| 940 | + 'type' => 'string', |
|
| 941 | + 'required' => true, |
|
| 942 | + ), |
|
| 943 | + ), |
|
| 944 | + ),'update' => array( |
|
| 945 | + 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
|
| 946 | + 'httpMethod' => 'PUT', |
|
| 947 | + 'parameters' => array( |
|
| 948 | + 'accountId' => array( |
|
| 949 | + 'location' => 'path', |
|
| 950 | + 'type' => 'string', |
|
| 951 | + 'required' => true, |
|
| 952 | + ), |
|
| 953 | + 'permissionId' => array( |
|
| 954 | + 'location' => 'path', |
|
| 955 | + 'type' => 'string', |
|
| 956 | + 'required' => true, |
|
| 957 | + ), |
|
| 958 | + ), |
|
| 959 | + ), |
|
| 960 | + ) |
|
| 961 | + ) |
|
| 962 | + ); |
|
| 963 | 963 | } |
| 964 | 964 | } |
| 965 | 965 | |
@@ -984,9 +984,9 @@ discard block |
||
| 984 | 984 | */ |
| 985 | 985 | public function get($accountId, $optParams = array()) |
| 986 | 986 | { |
| 987 | - $params = array('accountId' => $accountId); |
|
| 988 | - $params = array_merge($params, $optParams); |
|
| 989 | - return $this->call('get', array($params), "Google_Service_TagManager_Account"); |
|
| 987 | + $params = array('accountId' => $accountId); |
|
| 988 | + $params = array_merge($params, $optParams); |
|
| 989 | + return $this->call('get', array($params), "Google_Service_TagManager_Account"); |
|
| 990 | 990 | } |
| 991 | 991 | |
| 992 | 992 | /** |
@@ -997,9 +997,9 @@ discard block |
||
| 997 | 997 | */ |
| 998 | 998 | public function listAccounts($optParams = array()) |
| 999 | 999 | { |
| 1000 | - $params = array(); |
|
| 1001 | - $params = array_merge($params, $optParams); |
|
| 1002 | - return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse"); |
|
| 1000 | + $params = array(); |
|
| 1001 | + $params = array_merge($params, $optParams); |
|
| 1002 | + return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse"); |
|
| 1003 | 1003 | } |
| 1004 | 1004 | |
| 1005 | 1005 | /** |
@@ -1015,9 +1015,9 @@ discard block |
||
| 1015 | 1015 | */ |
| 1016 | 1016 | public function update($accountId, Google_Service_TagManager_Account $postBody, $optParams = array()) |
| 1017 | 1017 | { |
| 1018 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1019 | - $params = array_merge($params, $optParams); |
|
| 1020 | - return $this->call('update', array($params), "Google_Service_TagManager_Account"); |
|
| 1018 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1019 | + $params = array_merge($params, $optParams); |
|
| 1020 | + return $this->call('update', array($params), "Google_Service_TagManager_Account"); |
|
| 1021 | 1021 | } |
| 1022 | 1022 | } |
| 1023 | 1023 | |
@@ -1042,9 +1042,9 @@ discard block |
||
| 1042 | 1042 | */ |
| 1043 | 1043 | public function create($accountId, Google_Service_TagManager_Container $postBody, $optParams = array()) |
| 1044 | 1044 | { |
| 1045 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1046 | - $params = array_merge($params, $optParams); |
|
| 1047 | - return $this->call('create', array($params), "Google_Service_TagManager_Container"); |
|
| 1045 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1046 | + $params = array_merge($params, $optParams); |
|
| 1047 | + return $this->call('create', array($params), "Google_Service_TagManager_Container"); |
|
| 1048 | 1048 | } |
| 1049 | 1049 | |
| 1050 | 1050 | /** |
@@ -1056,9 +1056,9 @@ discard block |
||
| 1056 | 1056 | */ |
| 1057 | 1057 | public function delete($accountId, $containerId, $optParams = array()) |
| 1058 | 1058 | { |
| 1059 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1060 | - $params = array_merge($params, $optParams); |
|
| 1061 | - return $this->call('delete', array($params)); |
|
| 1059 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1060 | + $params = array_merge($params, $optParams); |
|
| 1061 | + return $this->call('delete', array($params)); |
|
| 1062 | 1062 | } |
| 1063 | 1063 | |
| 1064 | 1064 | /** |
@@ -1071,9 +1071,9 @@ discard block |
||
| 1071 | 1071 | */ |
| 1072 | 1072 | public function get($accountId, $containerId, $optParams = array()) |
| 1073 | 1073 | { |
| 1074 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1075 | - $params = array_merge($params, $optParams); |
|
| 1076 | - return $this->call('get', array($params), "Google_Service_TagManager_Container"); |
|
| 1074 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1075 | + $params = array_merge($params, $optParams); |
|
| 1076 | + return $this->call('get', array($params), "Google_Service_TagManager_Container"); |
|
| 1077 | 1077 | } |
| 1078 | 1078 | |
| 1079 | 1079 | /** |
@@ -1086,9 +1086,9 @@ discard block |
||
| 1086 | 1086 | */ |
| 1087 | 1087 | public function listAccountsContainers($accountId, $optParams = array()) |
| 1088 | 1088 | { |
| 1089 | - $params = array('accountId' => $accountId); |
|
| 1090 | - $params = array_merge($params, $optParams); |
|
| 1091 | - return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse"); |
|
| 1089 | + $params = array('accountId' => $accountId); |
|
| 1090 | + $params = array_merge($params, $optParams); |
|
| 1091 | + return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse"); |
|
| 1092 | 1092 | } |
| 1093 | 1093 | |
| 1094 | 1094 | /** |
@@ -1105,9 +1105,9 @@ discard block |
||
| 1105 | 1105 | */ |
| 1106 | 1106 | public function update($accountId, $containerId, Google_Service_TagManager_Container $postBody, $optParams = array()) |
| 1107 | 1107 | { |
| 1108 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1109 | - $params = array_merge($params, $optParams); |
|
| 1110 | - return $this->call('update', array($params), "Google_Service_TagManager_Container"); |
|
| 1108 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1109 | + $params = array_merge($params, $optParams); |
|
| 1110 | + return $this->call('update', array($params), "Google_Service_TagManager_Container"); |
|
| 1111 | 1111 | } |
| 1112 | 1112 | } |
| 1113 | 1113 | |
@@ -1133,9 +1133,9 @@ discard block |
||
| 1133 | 1133 | */ |
| 1134 | 1134 | public function create($accountId, $containerId, Google_Service_TagManager_Macro $postBody, $optParams = array()) |
| 1135 | 1135 | { |
| 1136 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1137 | - $params = array_merge($params, $optParams); |
|
| 1138 | - return $this->call('create', array($params), "Google_Service_TagManager_Macro"); |
|
| 1136 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1137 | + $params = array_merge($params, $optParams); |
|
| 1138 | + return $this->call('create', array($params), "Google_Service_TagManager_Macro"); |
|
| 1139 | 1139 | } |
| 1140 | 1140 | |
| 1141 | 1141 | /** |
@@ -1148,9 +1148,9 @@ discard block |
||
| 1148 | 1148 | */ |
| 1149 | 1149 | public function delete($accountId, $containerId, $macroId, $optParams = array()) |
| 1150 | 1150 | { |
| 1151 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId); |
|
| 1152 | - $params = array_merge($params, $optParams); |
|
| 1153 | - return $this->call('delete', array($params)); |
|
| 1151 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId); |
|
| 1152 | + $params = array_merge($params, $optParams); |
|
| 1153 | + return $this->call('delete', array($params)); |
|
| 1154 | 1154 | } |
| 1155 | 1155 | |
| 1156 | 1156 | /** |
@@ -1164,9 +1164,9 @@ discard block |
||
| 1164 | 1164 | */ |
| 1165 | 1165 | public function get($accountId, $containerId, $macroId, $optParams = array()) |
| 1166 | 1166 | { |
| 1167 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId); |
|
| 1168 | - $params = array_merge($params, $optParams); |
|
| 1169 | - return $this->call('get', array($params), "Google_Service_TagManager_Macro"); |
|
| 1167 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId); |
|
| 1168 | + $params = array_merge($params, $optParams); |
|
| 1169 | + return $this->call('get', array($params), "Google_Service_TagManager_Macro"); |
|
| 1170 | 1170 | } |
| 1171 | 1171 | |
| 1172 | 1172 | /** |
@@ -1179,9 +1179,9 @@ discard block |
||
| 1179 | 1179 | */ |
| 1180 | 1180 | public function listAccountsContainersMacros($accountId, $containerId, $optParams = array()) |
| 1181 | 1181 | { |
| 1182 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1183 | - $params = array_merge($params, $optParams); |
|
| 1184 | - return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse"); |
|
| 1182 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1183 | + $params = array_merge($params, $optParams); |
|
| 1184 | + return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse"); |
|
| 1185 | 1185 | } |
| 1186 | 1186 | |
| 1187 | 1187 | /** |
@@ -1199,9 +1199,9 @@ discard block |
||
| 1199 | 1199 | */ |
| 1200 | 1200 | public function update($accountId, $containerId, $macroId, Google_Service_TagManager_Macro $postBody, $optParams = array()) |
| 1201 | 1201 | { |
| 1202 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody); |
|
| 1203 | - $params = array_merge($params, $optParams); |
|
| 1204 | - return $this->call('update', array($params), "Google_Service_TagManager_Macro"); |
|
| 1202 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody); |
|
| 1203 | + $params = array_merge($params, $optParams); |
|
| 1204 | + return $this->call('update', array($params), "Google_Service_TagManager_Macro"); |
|
| 1205 | 1205 | } |
| 1206 | 1206 | } |
| 1207 | 1207 | /** |
@@ -1226,9 +1226,9 @@ discard block |
||
| 1226 | 1226 | */ |
| 1227 | 1227 | public function create($accountId, $containerId, Google_Service_TagManager_Rule $postBody, $optParams = array()) |
| 1228 | 1228 | { |
| 1229 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1230 | - $params = array_merge($params, $optParams); |
|
| 1231 | - return $this->call('create', array($params), "Google_Service_TagManager_Rule"); |
|
| 1229 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1230 | + $params = array_merge($params, $optParams); |
|
| 1231 | + return $this->call('create', array($params), "Google_Service_TagManager_Rule"); |
|
| 1232 | 1232 | } |
| 1233 | 1233 | |
| 1234 | 1234 | /** |
@@ -1241,9 +1241,9 @@ discard block |
||
| 1241 | 1241 | */ |
| 1242 | 1242 | public function delete($accountId, $containerId, $ruleId, $optParams = array()) |
| 1243 | 1243 | { |
| 1244 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId); |
|
| 1245 | - $params = array_merge($params, $optParams); |
|
| 1246 | - return $this->call('delete', array($params)); |
|
| 1244 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId); |
|
| 1245 | + $params = array_merge($params, $optParams); |
|
| 1246 | + return $this->call('delete', array($params)); |
|
| 1247 | 1247 | } |
| 1248 | 1248 | |
| 1249 | 1249 | /** |
@@ -1257,9 +1257,9 @@ discard block |
||
| 1257 | 1257 | */ |
| 1258 | 1258 | public function get($accountId, $containerId, $ruleId, $optParams = array()) |
| 1259 | 1259 | { |
| 1260 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId); |
|
| 1261 | - $params = array_merge($params, $optParams); |
|
| 1262 | - return $this->call('get', array($params), "Google_Service_TagManager_Rule"); |
|
| 1260 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId); |
|
| 1261 | + $params = array_merge($params, $optParams); |
|
| 1262 | + return $this->call('get', array($params), "Google_Service_TagManager_Rule"); |
|
| 1263 | 1263 | } |
| 1264 | 1264 | |
| 1265 | 1265 | /** |
@@ -1272,9 +1272,9 @@ discard block |
||
| 1272 | 1272 | */ |
| 1273 | 1273 | public function listAccountsContainersRules($accountId, $containerId, $optParams = array()) |
| 1274 | 1274 | { |
| 1275 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1276 | - $params = array_merge($params, $optParams); |
|
| 1277 | - return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse"); |
|
| 1275 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1276 | + $params = array_merge($params, $optParams); |
|
| 1277 | + return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse"); |
|
| 1278 | 1278 | } |
| 1279 | 1279 | |
| 1280 | 1280 | /** |
@@ -1292,9 +1292,9 @@ discard block |
||
| 1292 | 1292 | */ |
| 1293 | 1293 | public function update($accountId, $containerId, $ruleId, Google_Service_TagManager_Rule $postBody, $optParams = array()) |
| 1294 | 1294 | { |
| 1295 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 1296 | - $params = array_merge($params, $optParams); |
|
| 1297 | - return $this->call('update', array($params), "Google_Service_TagManager_Rule"); |
|
| 1295 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 1296 | + $params = array_merge($params, $optParams); |
|
| 1297 | + return $this->call('update', array($params), "Google_Service_TagManager_Rule"); |
|
| 1298 | 1298 | } |
| 1299 | 1299 | } |
| 1300 | 1300 | /** |
@@ -1319,9 +1319,9 @@ discard block |
||
| 1319 | 1319 | */ |
| 1320 | 1320 | public function create($accountId, $containerId, Google_Service_TagManager_Tag $postBody, $optParams = array()) |
| 1321 | 1321 | { |
| 1322 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1323 | - $params = array_merge($params, $optParams); |
|
| 1324 | - return $this->call('create', array($params), "Google_Service_TagManager_Tag"); |
|
| 1322 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1323 | + $params = array_merge($params, $optParams); |
|
| 1324 | + return $this->call('create', array($params), "Google_Service_TagManager_Tag"); |
|
| 1325 | 1325 | } |
| 1326 | 1326 | |
| 1327 | 1327 | /** |
@@ -1334,9 +1334,9 @@ discard block |
||
| 1334 | 1334 | */ |
| 1335 | 1335 | public function delete($accountId, $containerId, $tagId, $optParams = array()) |
| 1336 | 1336 | { |
| 1337 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId); |
|
| 1338 | - $params = array_merge($params, $optParams); |
|
| 1339 | - return $this->call('delete', array($params)); |
|
| 1337 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId); |
|
| 1338 | + $params = array_merge($params, $optParams); |
|
| 1339 | + return $this->call('delete', array($params)); |
|
| 1340 | 1340 | } |
| 1341 | 1341 | |
| 1342 | 1342 | /** |
@@ -1350,9 +1350,9 @@ discard block |
||
| 1350 | 1350 | */ |
| 1351 | 1351 | public function get($accountId, $containerId, $tagId, $optParams = array()) |
| 1352 | 1352 | { |
| 1353 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId); |
|
| 1354 | - $params = array_merge($params, $optParams); |
|
| 1355 | - return $this->call('get', array($params), "Google_Service_TagManager_Tag"); |
|
| 1353 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId); |
|
| 1354 | + $params = array_merge($params, $optParams); |
|
| 1355 | + return $this->call('get', array($params), "Google_Service_TagManager_Tag"); |
|
| 1356 | 1356 | } |
| 1357 | 1357 | |
| 1358 | 1358 | /** |
@@ -1365,9 +1365,9 @@ discard block |
||
| 1365 | 1365 | */ |
| 1366 | 1366 | public function listAccountsContainersTags($accountId, $containerId, $optParams = array()) |
| 1367 | 1367 | { |
| 1368 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1369 | - $params = array_merge($params, $optParams); |
|
| 1370 | - return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse"); |
|
| 1368 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1369 | + $params = array_merge($params, $optParams); |
|
| 1370 | + return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse"); |
|
| 1371 | 1371 | } |
| 1372 | 1372 | |
| 1373 | 1373 | /** |
@@ -1385,9 +1385,9 @@ discard block |
||
| 1385 | 1385 | */ |
| 1386 | 1386 | public function update($accountId, $containerId, $tagId, Google_Service_TagManager_Tag $postBody, $optParams = array()) |
| 1387 | 1387 | { |
| 1388 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody); |
|
| 1389 | - $params = array_merge($params, $optParams); |
|
| 1390 | - return $this->call('update', array($params), "Google_Service_TagManager_Tag"); |
|
| 1388 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody); |
|
| 1389 | + $params = array_merge($params, $optParams); |
|
| 1390 | + return $this->call('update', array($params), "Google_Service_TagManager_Tag"); |
|
| 1391 | 1391 | } |
| 1392 | 1392 | } |
| 1393 | 1393 | /** |
@@ -1412,9 +1412,9 @@ discard block |
||
| 1412 | 1412 | */ |
| 1413 | 1413 | public function create($accountId, $containerId, Google_Service_TagManager_Trigger $postBody, $optParams = array()) |
| 1414 | 1414 | { |
| 1415 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1416 | - $params = array_merge($params, $optParams); |
|
| 1417 | - return $this->call('create', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1415 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1416 | + $params = array_merge($params, $optParams); |
|
| 1417 | + return $this->call('create', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1418 | 1418 | } |
| 1419 | 1419 | |
| 1420 | 1420 | /** |
@@ -1427,9 +1427,9 @@ discard block |
||
| 1427 | 1427 | */ |
| 1428 | 1428 | public function delete($accountId, $containerId, $triggerId, $optParams = array()) |
| 1429 | 1429 | { |
| 1430 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId); |
|
| 1431 | - $params = array_merge($params, $optParams); |
|
| 1432 | - return $this->call('delete', array($params)); |
|
| 1430 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId); |
|
| 1431 | + $params = array_merge($params, $optParams); |
|
| 1432 | + return $this->call('delete', array($params)); |
|
| 1433 | 1433 | } |
| 1434 | 1434 | |
| 1435 | 1435 | /** |
@@ -1443,9 +1443,9 @@ discard block |
||
| 1443 | 1443 | */ |
| 1444 | 1444 | public function get($accountId, $containerId, $triggerId, $optParams = array()) |
| 1445 | 1445 | { |
| 1446 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId); |
|
| 1447 | - $params = array_merge($params, $optParams); |
|
| 1448 | - return $this->call('get', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1446 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId); |
|
| 1447 | + $params = array_merge($params, $optParams); |
|
| 1448 | + return $this->call('get', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1449 | 1449 | } |
| 1450 | 1450 | |
| 1451 | 1451 | /** |
@@ -1459,9 +1459,9 @@ discard block |
||
| 1459 | 1459 | */ |
| 1460 | 1460 | public function listAccountsContainersTriggers($accountId, $containerId, $optParams = array()) |
| 1461 | 1461 | { |
| 1462 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1463 | - $params = array_merge($params, $optParams); |
|
| 1464 | - return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse"); |
|
| 1462 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1463 | + $params = array_merge($params, $optParams); |
|
| 1464 | + return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse"); |
|
| 1465 | 1465 | } |
| 1466 | 1466 | |
| 1467 | 1467 | /** |
@@ -1479,9 +1479,9 @@ discard block |
||
| 1479 | 1479 | */ |
| 1480 | 1480 | public function update($accountId, $containerId, $triggerId, Google_Service_TagManager_Trigger $postBody, $optParams = array()) |
| 1481 | 1481 | { |
| 1482 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody); |
|
| 1483 | - $params = array_merge($params, $optParams); |
|
| 1484 | - return $this->call('update', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1482 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody); |
|
| 1483 | + $params = array_merge($params, $optParams); |
|
| 1484 | + return $this->call('update', array($params), "Google_Service_TagManager_Trigger"); |
|
| 1485 | 1485 | } |
| 1486 | 1486 | } |
| 1487 | 1487 | /** |
@@ -1506,9 +1506,9 @@ discard block |
||
| 1506 | 1506 | */ |
| 1507 | 1507 | public function create($accountId, $containerId, Google_Service_TagManager_Variable $postBody, $optParams = array()) |
| 1508 | 1508 | { |
| 1509 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1510 | - $params = array_merge($params, $optParams); |
|
| 1511 | - return $this->call('create', array($params), "Google_Service_TagManager_Variable"); |
|
| 1509 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1510 | + $params = array_merge($params, $optParams); |
|
| 1511 | + return $this->call('create', array($params), "Google_Service_TagManager_Variable"); |
|
| 1512 | 1512 | } |
| 1513 | 1513 | |
| 1514 | 1514 | /** |
@@ -1521,9 +1521,9 @@ discard block |
||
| 1521 | 1521 | */ |
| 1522 | 1522 | public function delete($accountId, $containerId, $variableId, $optParams = array()) |
| 1523 | 1523 | { |
| 1524 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId); |
|
| 1525 | - $params = array_merge($params, $optParams); |
|
| 1526 | - return $this->call('delete', array($params)); |
|
| 1524 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId); |
|
| 1525 | + $params = array_merge($params, $optParams); |
|
| 1526 | + return $this->call('delete', array($params)); |
|
| 1527 | 1527 | } |
| 1528 | 1528 | |
| 1529 | 1529 | /** |
@@ -1537,9 +1537,9 @@ discard block |
||
| 1537 | 1537 | */ |
| 1538 | 1538 | public function get($accountId, $containerId, $variableId, $optParams = array()) |
| 1539 | 1539 | { |
| 1540 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId); |
|
| 1541 | - $params = array_merge($params, $optParams); |
|
| 1542 | - return $this->call('get', array($params), "Google_Service_TagManager_Variable"); |
|
| 1540 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId); |
|
| 1541 | + $params = array_merge($params, $optParams); |
|
| 1542 | + return $this->call('get', array($params), "Google_Service_TagManager_Variable"); |
|
| 1543 | 1543 | } |
| 1544 | 1544 | |
| 1545 | 1545 | /** |
@@ -1553,9 +1553,9 @@ discard block |
||
| 1553 | 1553 | */ |
| 1554 | 1554 | public function listAccountsContainersVariables($accountId, $containerId, $optParams = array()) |
| 1555 | 1555 | { |
| 1556 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1557 | - $params = array_merge($params, $optParams); |
|
| 1558 | - return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse"); |
|
| 1556 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1557 | + $params = array_merge($params, $optParams); |
|
| 1558 | + return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse"); |
|
| 1559 | 1559 | } |
| 1560 | 1560 | |
| 1561 | 1561 | /** |
@@ -1573,9 +1573,9 @@ discard block |
||
| 1573 | 1573 | */ |
| 1574 | 1574 | public function update($accountId, $containerId, $variableId, Google_Service_TagManager_Variable $postBody, $optParams = array()) |
| 1575 | 1575 | { |
| 1576 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody); |
|
| 1577 | - $params = array_merge($params, $optParams); |
|
| 1578 | - return $this->call('update', array($params), "Google_Service_TagManager_Variable"); |
|
| 1576 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody); |
|
| 1577 | + $params = array_merge($params, $optParams); |
|
| 1578 | + return $this->call('update', array($params), "Google_Service_TagManager_Variable"); |
|
| 1579 | 1579 | } |
| 1580 | 1580 | } |
| 1581 | 1581 | /** |
@@ -1600,9 +1600,9 @@ discard block |
||
| 1600 | 1600 | */ |
| 1601 | 1601 | public function create($accountId, $containerId, Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody, $optParams = array()) |
| 1602 | 1602 | { |
| 1603 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1604 | - $params = array_merge($params, $optParams); |
|
| 1605 | - return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse"); |
|
| 1603 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody); |
|
| 1604 | + $params = array_merge($params, $optParams); |
|
| 1605 | + return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse"); |
|
| 1606 | 1606 | } |
| 1607 | 1607 | |
| 1608 | 1608 | /** |
@@ -1615,9 +1615,9 @@ discard block |
||
| 1615 | 1615 | */ |
| 1616 | 1616 | public function delete($accountId, $containerId, $containerVersionId, $optParams = array()) |
| 1617 | 1617 | { |
| 1618 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1619 | - $params = array_merge($params, $optParams); |
|
| 1620 | - return $this->call('delete', array($params)); |
|
| 1618 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1619 | + $params = array_merge($params, $optParams); |
|
| 1620 | + return $this->call('delete', array($params)); |
|
| 1621 | 1621 | } |
| 1622 | 1622 | |
| 1623 | 1623 | /** |
@@ -1632,9 +1632,9 @@ discard block |
||
| 1632 | 1632 | */ |
| 1633 | 1633 | public function get($accountId, $containerId, $containerVersionId, $optParams = array()) |
| 1634 | 1634 | { |
| 1635 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1636 | - $params = array_merge($params, $optParams); |
|
| 1637 | - return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1635 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1636 | + $params = array_merge($params, $optParams); |
|
| 1637 | + return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1638 | 1638 | } |
| 1639 | 1639 | |
| 1640 | 1640 | /** |
@@ -1650,9 +1650,9 @@ discard block |
||
| 1650 | 1650 | */ |
| 1651 | 1651 | public function listAccountsContainersVersions($accountId, $containerId, $optParams = array()) |
| 1652 | 1652 | { |
| 1653 | - $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1654 | - $params = array_merge($params, $optParams); |
|
| 1655 | - return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse"); |
|
| 1653 | + $params = array('accountId' => $accountId, 'containerId' => $containerId); |
|
| 1654 | + $params = array_merge($params, $optParams); |
|
| 1655 | + return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse"); |
|
| 1656 | 1656 | } |
| 1657 | 1657 | |
| 1658 | 1658 | /** |
@@ -1669,9 +1669,9 @@ discard block |
||
| 1669 | 1669 | */ |
| 1670 | 1670 | public function publish($accountId, $containerId, $containerVersionId, $optParams = array()) |
| 1671 | 1671 | { |
| 1672 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1673 | - $params = array_merge($params, $optParams); |
|
| 1674 | - return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse"); |
|
| 1672 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1673 | + $params = array_merge($params, $optParams); |
|
| 1674 | + return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse"); |
|
| 1675 | 1675 | } |
| 1676 | 1676 | |
| 1677 | 1677 | /** |
@@ -1688,9 +1688,9 @@ discard block |
||
| 1688 | 1688 | */ |
| 1689 | 1689 | public function restore($accountId, $containerId, $containerVersionId, $optParams = array()) |
| 1690 | 1690 | { |
| 1691 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1692 | - $params = array_merge($params, $optParams); |
|
| 1693 | - return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1691 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1692 | + $params = array_merge($params, $optParams); |
|
| 1693 | + return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1694 | 1694 | } |
| 1695 | 1695 | |
| 1696 | 1696 | /** |
@@ -1704,9 +1704,9 @@ discard block |
||
| 1704 | 1704 | */ |
| 1705 | 1705 | public function undelete($accountId, $containerId, $containerVersionId, $optParams = array()) |
| 1706 | 1706 | { |
| 1707 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1708 | - $params = array_merge($params, $optParams); |
|
| 1709 | - return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1707 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId); |
|
| 1708 | + $params = array_merge($params, $optParams); |
|
| 1709 | + return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1710 | 1710 | } |
| 1711 | 1711 | |
| 1712 | 1712 | /** |
@@ -1724,9 +1724,9 @@ discard block |
||
| 1724 | 1724 | */ |
| 1725 | 1725 | public function update($accountId, $containerId, $containerVersionId, Google_Service_TagManager_ContainerVersion $postBody, $optParams = array()) |
| 1726 | 1726 | { |
| 1727 | - $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody); |
|
| 1728 | - $params = array_merge($params, $optParams); |
|
| 1729 | - return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1727 | + $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody); |
|
| 1728 | + $params = array_merge($params, $optParams); |
|
| 1729 | + return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion"); |
|
| 1730 | 1730 | } |
| 1731 | 1731 | } |
| 1732 | 1732 | /** |
@@ -1750,9 +1750,9 @@ discard block |
||
| 1750 | 1750 | */ |
| 1751 | 1751 | public function create($accountId, Google_Service_TagManager_UserAccess $postBody, $optParams = array()) |
| 1752 | 1752 | { |
| 1753 | - $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1754 | - $params = array_merge($params, $optParams); |
|
| 1755 | - return $this->call('create', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1753 | + $params = array('accountId' => $accountId, 'postBody' => $postBody); |
|
| 1754 | + $params = array_merge($params, $optParams); |
|
| 1755 | + return $this->call('create', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1756 | 1756 | } |
| 1757 | 1757 | |
| 1758 | 1758 | /** |
@@ -1765,9 +1765,9 @@ discard block |
||
| 1765 | 1765 | */ |
| 1766 | 1766 | public function delete($accountId, $permissionId, $optParams = array()) |
| 1767 | 1767 | { |
| 1768 | - $params = array('accountId' => $accountId, 'permissionId' => $permissionId); |
|
| 1769 | - $params = array_merge($params, $optParams); |
|
| 1770 | - return $this->call('delete', array($params)); |
|
| 1768 | + $params = array('accountId' => $accountId, 'permissionId' => $permissionId); |
|
| 1769 | + $params = array_merge($params, $optParams); |
|
| 1770 | + return $this->call('delete', array($params)); |
|
| 1771 | 1771 | } |
| 1772 | 1772 | |
| 1773 | 1773 | /** |
@@ -1780,9 +1780,9 @@ discard block |
||
| 1780 | 1780 | */ |
| 1781 | 1781 | public function get($accountId, $permissionId, $optParams = array()) |
| 1782 | 1782 | { |
| 1783 | - $params = array('accountId' => $accountId, 'permissionId' => $permissionId); |
|
| 1784 | - $params = array_merge($params, $optParams); |
|
| 1785 | - return $this->call('get', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1783 | + $params = array('accountId' => $accountId, 'permissionId' => $permissionId); |
|
| 1784 | + $params = array_merge($params, $optParams); |
|
| 1785 | + return $this->call('get', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1786 | 1786 | } |
| 1787 | 1787 | |
| 1788 | 1788 | /** |
@@ -1797,9 +1797,9 @@ discard block |
||
| 1797 | 1797 | */ |
| 1798 | 1798 | public function listAccountsPermissions($accountId, $optParams = array()) |
| 1799 | 1799 | { |
| 1800 | - $params = array('accountId' => $accountId); |
|
| 1801 | - $params = array_merge($params, $optParams); |
|
| 1802 | - return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse"); |
|
| 1800 | + $params = array('accountId' => $accountId); |
|
| 1801 | + $params = array_merge($params, $optParams); |
|
| 1802 | + return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse"); |
|
| 1803 | 1803 | } |
| 1804 | 1804 | |
| 1805 | 1805 | /** |
@@ -1813,9 +1813,9 @@ discard block |
||
| 1813 | 1813 | */ |
| 1814 | 1814 | public function update($accountId, $permissionId, Google_Service_TagManager_UserAccess $postBody, $optParams = array()) |
| 1815 | 1815 | { |
| 1816 | - $params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody); |
|
| 1817 | - $params = array_merge($params, $optParams); |
|
| 1818 | - return $this->call('update', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1816 | + $params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody); |
|
| 1817 | + $params = array_merge($params, $optParams); |
|
| 1818 | + return $this->call('update', array($params), "Google_Service_TagManager_UserAccess"); |
|
| 1819 | 1819 | } |
| 1820 | 1820 | } |
| 1821 | 1821 | |
@@ -1834,35 +1834,35 @@ discard block |
||
| 1834 | 1834 | |
| 1835 | 1835 | public function setAccountId($accountId) |
| 1836 | 1836 | { |
| 1837 | - $this->accountId = $accountId; |
|
| 1837 | + $this->accountId = $accountId; |
|
| 1838 | 1838 | } |
| 1839 | 1839 | public function getAccountId() |
| 1840 | 1840 | { |
| 1841 | - return $this->accountId; |
|
| 1841 | + return $this->accountId; |
|
| 1842 | 1842 | } |
| 1843 | 1843 | public function setFingerprint($fingerprint) |
| 1844 | 1844 | { |
| 1845 | - $this->fingerprint = $fingerprint; |
|
| 1845 | + $this->fingerprint = $fingerprint; |
|
| 1846 | 1846 | } |
| 1847 | 1847 | public function getFingerprint() |
| 1848 | 1848 | { |
| 1849 | - return $this->fingerprint; |
|
| 1849 | + return $this->fingerprint; |
|
| 1850 | 1850 | } |
| 1851 | 1851 | public function setName($name) |
| 1852 | 1852 | { |
| 1853 | - $this->name = $name; |
|
| 1853 | + $this->name = $name; |
|
| 1854 | 1854 | } |
| 1855 | 1855 | public function getName() |
| 1856 | 1856 | { |
| 1857 | - return $this->name; |
|
| 1857 | + return $this->name; |
|
| 1858 | 1858 | } |
| 1859 | 1859 | public function setShareData($shareData) |
| 1860 | 1860 | { |
| 1861 | - $this->shareData = $shareData; |
|
| 1861 | + $this->shareData = $shareData; |
|
| 1862 | 1862 | } |
| 1863 | 1863 | public function getShareData() |
| 1864 | 1864 | { |
| 1865 | - return $this->shareData; |
|
| 1865 | + return $this->shareData; |
|
| 1866 | 1866 | } |
| 1867 | 1867 | } |
| 1868 | 1868 | |
@@ -1876,11 +1876,11 @@ discard block |
||
| 1876 | 1876 | |
| 1877 | 1877 | public function setPermission($permission) |
| 1878 | 1878 | { |
| 1879 | - $this->permission = $permission; |
|
| 1879 | + $this->permission = $permission; |
|
| 1880 | 1880 | } |
| 1881 | 1881 | public function getPermission() |
| 1882 | 1882 | { |
| 1883 | - return $this->permission; |
|
| 1883 | + return $this->permission; |
|
| 1884 | 1884 | } |
| 1885 | 1885 | } |
| 1886 | 1886 | |
@@ -1896,19 +1896,19 @@ discard block |
||
| 1896 | 1896 | |
| 1897 | 1897 | public function setParameter($parameter) |
| 1898 | 1898 | { |
| 1899 | - $this->parameter = $parameter; |
|
| 1899 | + $this->parameter = $parameter; |
|
| 1900 | 1900 | } |
| 1901 | 1901 | public function getParameter() |
| 1902 | 1902 | { |
| 1903 | - return $this->parameter; |
|
| 1903 | + return $this->parameter; |
|
| 1904 | 1904 | } |
| 1905 | 1905 | public function setType($type) |
| 1906 | 1906 | { |
| 1907 | - $this->type = $type; |
|
| 1907 | + $this->type = $type; |
|
| 1908 | 1908 | } |
| 1909 | 1909 | public function getType() |
| 1910 | 1910 | { |
| 1911 | - return $this->type; |
|
| 1911 | + return $this->type; |
|
| 1912 | 1912 | } |
| 1913 | 1913 | } |
| 1914 | 1914 | |
@@ -1932,91 +1932,91 @@ discard block |
||
| 1932 | 1932 | |
| 1933 | 1933 | public function setAccountId($accountId) |
| 1934 | 1934 | { |
| 1935 | - $this->accountId = $accountId; |
|
| 1935 | + $this->accountId = $accountId; |
|
| 1936 | 1936 | } |
| 1937 | 1937 | public function getAccountId() |
| 1938 | 1938 | { |
| 1939 | - return $this->accountId; |
|
| 1939 | + return $this->accountId; |
|
| 1940 | 1940 | } |
| 1941 | 1941 | public function setContainerId($containerId) |
| 1942 | 1942 | { |
| 1943 | - $this->containerId = $containerId; |
|
| 1943 | + $this->containerId = $containerId; |
|
| 1944 | 1944 | } |
| 1945 | 1945 | public function getContainerId() |
| 1946 | 1946 | { |
| 1947 | - return $this->containerId; |
|
| 1947 | + return $this->containerId; |
|
| 1948 | 1948 | } |
| 1949 | 1949 | public function setDomainName($domainName) |
| 1950 | 1950 | { |
| 1951 | - $this->domainName = $domainName; |
|
| 1951 | + $this->domainName = $domainName; |
|
| 1952 | 1952 | } |
| 1953 | 1953 | public function getDomainName() |
| 1954 | 1954 | { |
| 1955 | - return $this->domainName; |
|
| 1955 | + return $this->domainName; |
|
| 1956 | 1956 | } |
| 1957 | 1957 | public function setEnabledBuiltInVariable($enabledBuiltInVariable) |
| 1958 | 1958 | { |
| 1959 | - $this->enabledBuiltInVariable = $enabledBuiltInVariable; |
|
| 1959 | + $this->enabledBuiltInVariable = $enabledBuiltInVariable; |
|
| 1960 | 1960 | } |
| 1961 | 1961 | public function getEnabledBuiltInVariable() |
| 1962 | 1962 | { |
| 1963 | - return $this->enabledBuiltInVariable; |
|
| 1963 | + return $this->enabledBuiltInVariable; |
|
| 1964 | 1964 | } |
| 1965 | 1965 | public function setFingerprint($fingerprint) |
| 1966 | 1966 | { |
| 1967 | - $this->fingerprint = $fingerprint; |
|
| 1967 | + $this->fingerprint = $fingerprint; |
|
| 1968 | 1968 | } |
| 1969 | 1969 | public function getFingerprint() |
| 1970 | 1970 | { |
| 1971 | - return $this->fingerprint; |
|
| 1971 | + return $this->fingerprint; |
|
| 1972 | 1972 | } |
| 1973 | 1973 | public function setName($name) |
| 1974 | 1974 | { |
| 1975 | - $this->name = $name; |
|
| 1975 | + $this->name = $name; |
|
| 1976 | 1976 | } |
| 1977 | 1977 | public function getName() |
| 1978 | 1978 | { |
| 1979 | - return $this->name; |
|
| 1979 | + return $this->name; |
|
| 1980 | 1980 | } |
| 1981 | 1981 | public function setNotes($notes) |
| 1982 | 1982 | { |
| 1983 | - $this->notes = $notes; |
|
| 1983 | + $this->notes = $notes; |
|
| 1984 | 1984 | } |
| 1985 | 1985 | public function getNotes() |
| 1986 | 1986 | { |
| 1987 | - return $this->notes; |
|
| 1987 | + return $this->notes; |
|
| 1988 | 1988 | } |
| 1989 | 1989 | public function setPublicId($publicId) |
| 1990 | 1990 | { |
| 1991 | - $this->publicId = $publicId; |
|
| 1991 | + $this->publicId = $publicId; |
|
| 1992 | 1992 | } |
| 1993 | 1993 | public function getPublicId() |
| 1994 | 1994 | { |
| 1995 | - return $this->publicId; |
|
| 1995 | + return $this->publicId; |
|
| 1996 | 1996 | } |
| 1997 | 1997 | public function setTimeZoneCountryId($timeZoneCountryId) |
| 1998 | 1998 | { |
| 1999 | - $this->timeZoneCountryId = $timeZoneCountryId; |
|
| 1999 | + $this->timeZoneCountryId = $timeZoneCountryId; |
|
| 2000 | 2000 | } |
| 2001 | 2001 | public function getTimeZoneCountryId() |
| 2002 | 2002 | { |
| 2003 | - return $this->timeZoneCountryId; |
|
| 2003 | + return $this->timeZoneCountryId; |
|
| 2004 | 2004 | } |
| 2005 | 2005 | public function setTimeZoneId($timeZoneId) |
| 2006 | 2006 | { |
| 2007 | - $this->timeZoneId = $timeZoneId; |
|
| 2007 | + $this->timeZoneId = $timeZoneId; |
|
| 2008 | 2008 | } |
| 2009 | 2009 | public function getTimeZoneId() |
| 2010 | 2010 | { |
| 2011 | - return $this->timeZoneId; |
|
| 2011 | + return $this->timeZoneId; |
|
| 2012 | 2012 | } |
| 2013 | 2013 | public function setUsageContext($usageContext) |
| 2014 | 2014 | { |
| 2015 | - $this->usageContext = $usageContext; |
|
| 2015 | + $this->usageContext = $usageContext; |
|
| 2016 | 2016 | } |
| 2017 | 2017 | public function getUsageContext() |
| 2018 | 2018 | { |
| 2019 | - return $this->usageContext; |
|
| 2019 | + return $this->usageContext; |
|
| 2020 | 2020 | } |
| 2021 | 2021 | } |
| 2022 | 2022 | |
@@ -2031,19 +2031,19 @@ discard block |
||
| 2031 | 2031 | |
| 2032 | 2032 | public function setContainerId($containerId) |
| 2033 | 2033 | { |
| 2034 | - $this->containerId = $containerId; |
|
| 2034 | + $this->containerId = $containerId; |
|
| 2035 | 2035 | } |
| 2036 | 2036 | public function getContainerId() |
| 2037 | 2037 | { |
| 2038 | - return $this->containerId; |
|
| 2038 | + return $this->containerId; |
|
| 2039 | 2039 | } |
| 2040 | 2040 | public function setPermission($permission) |
| 2041 | 2041 | { |
| 2042 | - $this->permission = $permission; |
|
| 2042 | + $this->permission = $permission; |
|
| 2043 | 2043 | } |
| 2044 | 2044 | public function getPermission() |
| 2045 | 2045 | { |
| 2046 | - return $this->permission; |
|
| 2046 | + return $this->permission; |
|
| 2047 | 2047 | } |
| 2048 | 2048 | } |
| 2049 | 2049 | |
@@ -2075,107 +2075,107 @@ discard block |
||
| 2075 | 2075 | |
| 2076 | 2076 | public function setAccountId($accountId) |
| 2077 | 2077 | { |
| 2078 | - $this->accountId = $accountId; |
|
| 2078 | + $this->accountId = $accountId; |
|
| 2079 | 2079 | } |
| 2080 | 2080 | public function getAccountId() |
| 2081 | 2081 | { |
| 2082 | - return $this->accountId; |
|
| 2082 | + return $this->accountId; |
|
| 2083 | 2083 | } |
| 2084 | 2084 | public function setContainer(Google_Service_TagManager_Container $container) |
| 2085 | 2085 | { |
| 2086 | - $this->container = $container; |
|
| 2086 | + $this->container = $container; |
|
| 2087 | 2087 | } |
| 2088 | 2088 | public function getContainer() |
| 2089 | 2089 | { |
| 2090 | - return $this->container; |
|
| 2090 | + return $this->container; |
|
| 2091 | 2091 | } |
| 2092 | 2092 | public function setContainerId($containerId) |
| 2093 | 2093 | { |
| 2094 | - $this->containerId = $containerId; |
|
| 2094 | + $this->containerId = $containerId; |
|
| 2095 | 2095 | } |
| 2096 | 2096 | public function getContainerId() |
| 2097 | 2097 | { |
| 2098 | - return $this->containerId; |
|
| 2098 | + return $this->containerId; |
|
| 2099 | 2099 | } |
| 2100 | 2100 | public function setContainerVersionId($containerVersionId) |
| 2101 | 2101 | { |
| 2102 | - $this->containerVersionId = $containerVersionId; |
|
| 2102 | + $this->containerVersionId = $containerVersionId; |
|
| 2103 | 2103 | } |
| 2104 | 2104 | public function getContainerVersionId() |
| 2105 | 2105 | { |
| 2106 | - return $this->containerVersionId; |
|
| 2106 | + return $this->containerVersionId; |
|
| 2107 | 2107 | } |
| 2108 | 2108 | public function setDeleted($deleted) |
| 2109 | 2109 | { |
| 2110 | - $this->deleted = $deleted; |
|
| 2110 | + $this->deleted = $deleted; |
|
| 2111 | 2111 | } |
| 2112 | 2112 | public function getDeleted() |
| 2113 | 2113 | { |
| 2114 | - return $this->deleted; |
|
| 2114 | + return $this->deleted; |
|
| 2115 | 2115 | } |
| 2116 | 2116 | public function setFingerprint($fingerprint) |
| 2117 | 2117 | { |
| 2118 | - $this->fingerprint = $fingerprint; |
|
| 2118 | + $this->fingerprint = $fingerprint; |
|
| 2119 | 2119 | } |
| 2120 | 2120 | public function getFingerprint() |
| 2121 | 2121 | { |
| 2122 | - return $this->fingerprint; |
|
| 2122 | + return $this->fingerprint; |
|
| 2123 | 2123 | } |
| 2124 | 2124 | public function setMacro($macro) |
| 2125 | 2125 | { |
| 2126 | - $this->macro = $macro; |
|
| 2126 | + $this->macro = $macro; |
|
| 2127 | 2127 | } |
| 2128 | 2128 | public function getMacro() |
| 2129 | 2129 | { |
| 2130 | - return $this->macro; |
|
| 2130 | + return $this->macro; |
|
| 2131 | 2131 | } |
| 2132 | 2132 | public function setName($name) |
| 2133 | 2133 | { |
| 2134 | - $this->name = $name; |
|
| 2134 | + $this->name = $name; |
|
| 2135 | 2135 | } |
| 2136 | 2136 | public function getName() |
| 2137 | 2137 | { |
| 2138 | - return $this->name; |
|
| 2138 | + return $this->name; |
|
| 2139 | 2139 | } |
| 2140 | 2140 | public function setNotes($notes) |
| 2141 | 2141 | { |
| 2142 | - $this->notes = $notes; |
|
| 2142 | + $this->notes = $notes; |
|
| 2143 | 2143 | } |
| 2144 | 2144 | public function getNotes() |
| 2145 | 2145 | { |
| 2146 | - return $this->notes; |
|
| 2146 | + return $this->notes; |
|
| 2147 | 2147 | } |
| 2148 | 2148 | public function setRule($rule) |
| 2149 | 2149 | { |
| 2150 | - $this->rule = $rule; |
|
| 2150 | + $this->rule = $rule; |
|
| 2151 | 2151 | } |
| 2152 | 2152 | public function getRule() |
| 2153 | 2153 | { |
| 2154 | - return $this->rule; |
|
| 2154 | + return $this->rule; |
|
| 2155 | 2155 | } |
| 2156 | 2156 | public function setTag($tag) |
| 2157 | 2157 | { |
| 2158 | - $this->tag = $tag; |
|
| 2158 | + $this->tag = $tag; |
|
| 2159 | 2159 | } |
| 2160 | 2160 | public function getTag() |
| 2161 | 2161 | { |
| 2162 | - return $this->tag; |
|
| 2162 | + return $this->tag; |
|
| 2163 | 2163 | } |
| 2164 | 2164 | public function setTrigger($trigger) |
| 2165 | 2165 | { |
| 2166 | - $this->trigger = $trigger; |
|
| 2166 | + $this->trigger = $trigger; |
|
| 2167 | 2167 | } |
| 2168 | 2168 | public function getTrigger() |
| 2169 | 2169 | { |
| 2170 | - return $this->trigger; |
|
| 2170 | + return $this->trigger; |
|
| 2171 | 2171 | } |
| 2172 | 2172 | public function setVariable($variable) |
| 2173 | 2173 | { |
| 2174 | - $this->variable = $variable; |
|
| 2174 | + $this->variable = $variable; |
|
| 2175 | 2175 | } |
| 2176 | 2176 | public function getVariable() |
| 2177 | 2177 | { |
| 2178 | - return $this->variable; |
|
| 2178 | + return $this->variable; |
|
| 2179 | 2179 | } |
| 2180 | 2180 | } |
| 2181 | 2181 | |
@@ -2197,83 +2197,83 @@ discard block |
||
| 2197 | 2197 | |
| 2198 | 2198 | public function setAccountId($accountId) |
| 2199 | 2199 | { |
| 2200 | - $this->accountId = $accountId; |
|
| 2200 | + $this->accountId = $accountId; |
|
| 2201 | 2201 | } |
| 2202 | 2202 | public function getAccountId() |
| 2203 | 2203 | { |
| 2204 | - return $this->accountId; |
|
| 2204 | + return $this->accountId; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | public function setContainerId($containerId) |
| 2207 | 2207 | { |
| 2208 | - $this->containerId = $containerId; |
|
| 2208 | + $this->containerId = $containerId; |
|
| 2209 | 2209 | } |
| 2210 | 2210 | public function getContainerId() |
| 2211 | 2211 | { |
| 2212 | - return $this->containerId; |
|
| 2212 | + return $this->containerId; |
|
| 2213 | 2213 | } |
| 2214 | 2214 | public function setContainerVersionId($containerVersionId) |
| 2215 | 2215 | { |
| 2216 | - $this->containerVersionId = $containerVersionId; |
|
| 2216 | + $this->containerVersionId = $containerVersionId; |
|
| 2217 | 2217 | } |
| 2218 | 2218 | public function getContainerVersionId() |
| 2219 | 2219 | { |
| 2220 | - return $this->containerVersionId; |
|
| 2220 | + return $this->containerVersionId; |
|
| 2221 | 2221 | } |
| 2222 | 2222 | public function setDeleted($deleted) |
| 2223 | 2223 | { |
| 2224 | - $this->deleted = $deleted; |
|
| 2224 | + $this->deleted = $deleted; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | public function getDeleted() |
| 2227 | 2227 | { |
| 2228 | - return $this->deleted; |
|
| 2228 | + return $this->deleted; |
|
| 2229 | 2229 | } |
| 2230 | 2230 | public function setName($name) |
| 2231 | 2231 | { |
| 2232 | - $this->name = $name; |
|
| 2232 | + $this->name = $name; |
|
| 2233 | 2233 | } |
| 2234 | 2234 | public function getName() |
| 2235 | 2235 | { |
| 2236 | - return $this->name; |
|
| 2236 | + return $this->name; |
|
| 2237 | 2237 | } |
| 2238 | 2238 | public function setNumMacros($numMacros) |
| 2239 | 2239 | { |
| 2240 | - $this->numMacros = $numMacros; |
|
| 2240 | + $this->numMacros = $numMacros; |
|
| 2241 | 2241 | } |
| 2242 | 2242 | public function getNumMacros() |
| 2243 | 2243 | { |
| 2244 | - return $this->numMacros; |
|
| 2244 | + return $this->numMacros; |
|
| 2245 | 2245 | } |
| 2246 | 2246 | public function setNumRules($numRules) |
| 2247 | 2247 | { |
| 2248 | - $this->numRules = $numRules; |
|
| 2248 | + $this->numRules = $numRules; |
|
| 2249 | 2249 | } |
| 2250 | 2250 | public function getNumRules() |
| 2251 | 2251 | { |
| 2252 | - return $this->numRules; |
|
| 2252 | + return $this->numRules; |
|
| 2253 | 2253 | } |
| 2254 | 2254 | public function setNumTags($numTags) |
| 2255 | 2255 | { |
| 2256 | - $this->numTags = $numTags; |
|
| 2256 | + $this->numTags = $numTags; |
|
| 2257 | 2257 | } |
| 2258 | 2258 | public function getNumTags() |
| 2259 | 2259 | { |
| 2260 | - return $this->numTags; |
|
| 2260 | + return $this->numTags; |
|
| 2261 | 2261 | } |
| 2262 | 2262 | public function setNumTriggers($numTriggers) |
| 2263 | 2263 | { |
| 2264 | - $this->numTriggers = $numTriggers; |
|
| 2264 | + $this->numTriggers = $numTriggers; |
|
| 2265 | 2265 | } |
| 2266 | 2266 | public function getNumTriggers() |
| 2267 | 2267 | { |
| 2268 | - return $this->numTriggers; |
|
| 2268 | + return $this->numTriggers; |
|
| 2269 | 2269 | } |
| 2270 | 2270 | public function setNumVariables($numVariables) |
| 2271 | 2271 | { |
| 2272 | - $this->numVariables = $numVariables; |
|
| 2272 | + $this->numVariables = $numVariables; |
|
| 2273 | 2273 | } |
| 2274 | 2274 | public function getNumVariables() |
| 2275 | 2275 | { |
| 2276 | - return $this->numVariables; |
|
| 2276 | + return $this->numVariables; |
|
| 2277 | 2277 | } |
| 2278 | 2278 | } |
| 2279 | 2279 | |
@@ -2288,27 +2288,27 @@ discard block |
||
| 2288 | 2288 | |
| 2289 | 2289 | public function setName($name) |
| 2290 | 2290 | { |
| 2291 | - $this->name = $name; |
|
| 2291 | + $this->name = $name; |
|
| 2292 | 2292 | } |
| 2293 | 2293 | public function getName() |
| 2294 | 2294 | { |
| 2295 | - return $this->name; |
|
| 2295 | + return $this->name; |
|
| 2296 | 2296 | } |
| 2297 | 2297 | public function setNotes($notes) |
| 2298 | 2298 | { |
| 2299 | - $this->notes = $notes; |
|
| 2299 | + $this->notes = $notes; |
|
| 2300 | 2300 | } |
| 2301 | 2301 | public function getNotes() |
| 2302 | 2302 | { |
| 2303 | - return $this->notes; |
|
| 2303 | + return $this->notes; |
|
| 2304 | 2304 | } |
| 2305 | 2305 | public function setQuickPreview($quickPreview) |
| 2306 | 2306 | { |
| 2307 | - $this->quickPreview = $quickPreview; |
|
| 2307 | + $this->quickPreview = $quickPreview; |
|
| 2308 | 2308 | } |
| 2309 | 2309 | public function getQuickPreview() |
| 2310 | 2310 | { |
| 2311 | - return $this->quickPreview; |
|
| 2311 | + return $this->quickPreview; |
|
| 2312 | 2312 | } |
| 2313 | 2313 | } |
| 2314 | 2314 | |
@@ -2323,19 +2323,19 @@ discard block |
||
| 2323 | 2323 | |
| 2324 | 2324 | public function setCompilerError($compilerError) |
| 2325 | 2325 | { |
| 2326 | - $this->compilerError = $compilerError; |
|
| 2326 | + $this->compilerError = $compilerError; |
|
| 2327 | 2327 | } |
| 2328 | 2328 | public function getCompilerError() |
| 2329 | 2329 | { |
| 2330 | - return $this->compilerError; |
|
| 2330 | + return $this->compilerError; |
|
| 2331 | 2331 | } |
| 2332 | 2332 | public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion) |
| 2333 | 2333 | { |
| 2334 | - $this->containerVersion = $containerVersion; |
|
| 2334 | + $this->containerVersion = $containerVersion; |
|
| 2335 | 2335 | } |
| 2336 | 2336 | public function getContainerVersion() |
| 2337 | 2337 | { |
| 2338 | - return $this->containerVersion; |
|
| 2338 | + return $this->containerVersion; |
|
| 2339 | 2339 | } |
| 2340 | 2340 | } |
| 2341 | 2341 | |
@@ -2350,11 +2350,11 @@ discard block |
||
| 2350 | 2350 | |
| 2351 | 2351 | public function setUserAccess($userAccess) |
| 2352 | 2352 | { |
| 2353 | - $this->userAccess = $userAccess; |
|
| 2353 | + $this->userAccess = $userAccess; |
|
| 2354 | 2354 | } |
| 2355 | 2355 | public function getUserAccess() |
| 2356 | 2356 | { |
| 2357 | - return $this->userAccess; |
|
| 2357 | + return $this->userAccess; |
|
| 2358 | 2358 | } |
| 2359 | 2359 | } |
| 2360 | 2360 | |
@@ -2369,11 +2369,11 @@ discard block |
||
| 2369 | 2369 | |
| 2370 | 2370 | public function setAccounts($accounts) |
| 2371 | 2371 | { |
| 2372 | - $this->accounts = $accounts; |
|
| 2372 | + $this->accounts = $accounts; |
|
| 2373 | 2373 | } |
| 2374 | 2374 | public function getAccounts() |
| 2375 | 2375 | { |
| 2376 | - return $this->accounts; |
|
| 2376 | + return $this->accounts; |
|
| 2377 | 2377 | } |
| 2378 | 2378 | } |
| 2379 | 2379 | |
@@ -2390,19 +2390,19 @@ discard block |
||
| 2390 | 2390 | |
| 2391 | 2391 | public function setContainerVersion($containerVersion) |
| 2392 | 2392 | { |
| 2393 | - $this->containerVersion = $containerVersion; |
|
| 2393 | + $this->containerVersion = $containerVersion; |
|
| 2394 | 2394 | } |
| 2395 | 2395 | public function getContainerVersion() |
| 2396 | 2396 | { |
| 2397 | - return $this->containerVersion; |
|
| 2397 | + return $this->containerVersion; |
|
| 2398 | 2398 | } |
| 2399 | 2399 | public function setContainerVersionHeader($containerVersionHeader) |
| 2400 | 2400 | { |
| 2401 | - $this->containerVersionHeader = $containerVersionHeader; |
|
| 2401 | + $this->containerVersionHeader = $containerVersionHeader; |
|
| 2402 | 2402 | } |
| 2403 | 2403 | public function getContainerVersionHeader() |
| 2404 | 2404 | { |
| 2405 | - return $this->containerVersionHeader; |
|
| 2405 | + return $this->containerVersionHeader; |
|
| 2406 | 2406 | } |
| 2407 | 2407 | } |
| 2408 | 2408 | |
@@ -2417,11 +2417,11 @@ discard block |
||
| 2417 | 2417 | |
| 2418 | 2418 | public function setContainers($containers) |
| 2419 | 2419 | { |
| 2420 | - $this->containers = $containers; |
|
| 2420 | + $this->containers = $containers; |
|
| 2421 | 2421 | } |
| 2422 | 2422 | public function getContainers() |
| 2423 | 2423 | { |
| 2424 | - return $this->containers; |
|
| 2424 | + return $this->containers; |
|
| 2425 | 2425 | } |
| 2426 | 2426 | } |
| 2427 | 2427 | |
@@ -2436,11 +2436,11 @@ discard block |
||
| 2436 | 2436 | |
| 2437 | 2437 | public function setMacros($macros) |
| 2438 | 2438 | { |
| 2439 | - $this->macros = $macros; |
|
| 2439 | + $this->macros = $macros; |
|
| 2440 | 2440 | } |
| 2441 | 2441 | public function getMacros() |
| 2442 | 2442 | { |
| 2443 | - return $this->macros; |
|
| 2443 | + return $this->macros; |
|
| 2444 | 2444 | } |
| 2445 | 2445 | } |
| 2446 | 2446 | |
@@ -2455,11 +2455,11 @@ discard block |
||
| 2455 | 2455 | |
| 2456 | 2456 | public function setRules($rules) |
| 2457 | 2457 | { |
| 2458 | - $this->rules = $rules; |
|
| 2458 | + $this->rules = $rules; |
|
| 2459 | 2459 | } |
| 2460 | 2460 | public function getRules() |
| 2461 | 2461 | { |
| 2462 | - return $this->rules; |
|
| 2462 | + return $this->rules; |
|
| 2463 | 2463 | } |
| 2464 | 2464 | } |
| 2465 | 2465 | |
@@ -2474,11 +2474,11 @@ discard block |
||
| 2474 | 2474 | |
| 2475 | 2475 | public function setTags($tags) |
| 2476 | 2476 | { |
| 2477 | - $this->tags = $tags; |
|
| 2477 | + $this->tags = $tags; |
|
| 2478 | 2478 | } |
| 2479 | 2479 | public function getTags() |
| 2480 | 2480 | { |
| 2481 | - return $this->tags; |
|
| 2481 | + return $this->tags; |
|
| 2482 | 2482 | } |
| 2483 | 2483 | } |
| 2484 | 2484 | |
@@ -2493,11 +2493,11 @@ discard block |
||
| 2493 | 2493 | |
| 2494 | 2494 | public function setTriggers($triggers) |
| 2495 | 2495 | { |
| 2496 | - $this->triggers = $triggers; |
|
| 2496 | + $this->triggers = $triggers; |
|
| 2497 | 2497 | } |
| 2498 | 2498 | public function getTriggers() |
| 2499 | 2499 | { |
| 2500 | - return $this->triggers; |
|
| 2500 | + return $this->triggers; |
|
| 2501 | 2501 | } |
| 2502 | 2502 | } |
| 2503 | 2503 | |
@@ -2512,11 +2512,11 @@ discard block |
||
| 2512 | 2512 | |
| 2513 | 2513 | public function setVariables($variables) |
| 2514 | 2514 | { |
| 2515 | - $this->variables = $variables; |
|
| 2515 | + $this->variables = $variables; |
|
| 2516 | 2516 | } |
| 2517 | 2517 | public function getVariables() |
| 2518 | 2518 | { |
| 2519 | - return $this->variables; |
|
| 2519 | + return $this->variables; |
|
| 2520 | 2520 | } |
| 2521 | 2521 | } |
| 2522 | 2522 | |
@@ -2542,99 +2542,99 @@ discard block |
||
| 2542 | 2542 | |
| 2543 | 2543 | public function setAccountId($accountId) |
| 2544 | 2544 | { |
| 2545 | - $this->accountId = $accountId; |
|
| 2545 | + $this->accountId = $accountId; |
|
| 2546 | 2546 | } |
| 2547 | 2547 | public function getAccountId() |
| 2548 | 2548 | { |
| 2549 | - return $this->accountId; |
|
| 2549 | + return $this->accountId; |
|
| 2550 | 2550 | } |
| 2551 | 2551 | public function setContainerId($containerId) |
| 2552 | 2552 | { |
| 2553 | - $this->containerId = $containerId; |
|
| 2553 | + $this->containerId = $containerId; |
|
| 2554 | 2554 | } |
| 2555 | 2555 | public function getContainerId() |
| 2556 | 2556 | { |
| 2557 | - return $this->containerId; |
|
| 2557 | + return $this->containerId; |
|
| 2558 | 2558 | } |
| 2559 | 2559 | public function setDisablingRuleId($disablingRuleId) |
| 2560 | 2560 | { |
| 2561 | - $this->disablingRuleId = $disablingRuleId; |
|
| 2561 | + $this->disablingRuleId = $disablingRuleId; |
|
| 2562 | 2562 | } |
| 2563 | 2563 | public function getDisablingRuleId() |
| 2564 | 2564 | { |
| 2565 | - return $this->disablingRuleId; |
|
| 2565 | + return $this->disablingRuleId; |
|
| 2566 | 2566 | } |
| 2567 | 2567 | public function setEnablingRuleId($enablingRuleId) |
| 2568 | 2568 | { |
| 2569 | - $this->enablingRuleId = $enablingRuleId; |
|
| 2569 | + $this->enablingRuleId = $enablingRuleId; |
|
| 2570 | 2570 | } |
| 2571 | 2571 | public function getEnablingRuleId() |
| 2572 | 2572 | { |
| 2573 | - return $this->enablingRuleId; |
|
| 2573 | + return $this->enablingRuleId; |
|
| 2574 | 2574 | } |
| 2575 | 2575 | public function setFingerprint($fingerprint) |
| 2576 | 2576 | { |
| 2577 | - $this->fingerprint = $fingerprint; |
|
| 2577 | + $this->fingerprint = $fingerprint; |
|
| 2578 | 2578 | } |
| 2579 | 2579 | public function getFingerprint() |
| 2580 | 2580 | { |
| 2581 | - return $this->fingerprint; |
|
| 2581 | + return $this->fingerprint; |
|
| 2582 | 2582 | } |
| 2583 | 2583 | public function setMacroId($macroId) |
| 2584 | 2584 | { |
| 2585 | - $this->macroId = $macroId; |
|
| 2585 | + $this->macroId = $macroId; |
|
| 2586 | 2586 | } |
| 2587 | 2587 | public function getMacroId() |
| 2588 | 2588 | { |
| 2589 | - return $this->macroId; |
|
| 2589 | + return $this->macroId; |
|
| 2590 | 2590 | } |
| 2591 | 2591 | public function setName($name) |
| 2592 | 2592 | { |
| 2593 | - $this->name = $name; |
|
| 2593 | + $this->name = $name; |
|
| 2594 | 2594 | } |
| 2595 | 2595 | public function getName() |
| 2596 | 2596 | { |
| 2597 | - return $this->name; |
|
| 2597 | + return $this->name; |
|
| 2598 | 2598 | } |
| 2599 | 2599 | public function setNotes($notes) |
| 2600 | 2600 | { |
| 2601 | - $this->notes = $notes; |
|
| 2601 | + $this->notes = $notes; |
|
| 2602 | 2602 | } |
| 2603 | 2603 | public function getNotes() |
| 2604 | 2604 | { |
| 2605 | - return $this->notes; |
|
| 2605 | + return $this->notes; |
|
| 2606 | 2606 | } |
| 2607 | 2607 | public function setParameter($parameter) |
| 2608 | 2608 | { |
| 2609 | - $this->parameter = $parameter; |
|
| 2609 | + $this->parameter = $parameter; |
|
| 2610 | 2610 | } |
| 2611 | 2611 | public function getParameter() |
| 2612 | 2612 | { |
| 2613 | - return $this->parameter; |
|
| 2613 | + return $this->parameter; |
|
| 2614 | 2614 | } |
| 2615 | 2615 | public function setScheduleEndMs($scheduleEndMs) |
| 2616 | 2616 | { |
| 2617 | - $this->scheduleEndMs = $scheduleEndMs; |
|
| 2617 | + $this->scheduleEndMs = $scheduleEndMs; |
|
| 2618 | 2618 | } |
| 2619 | 2619 | public function getScheduleEndMs() |
| 2620 | 2620 | { |
| 2621 | - return $this->scheduleEndMs; |
|
| 2621 | + return $this->scheduleEndMs; |
|
| 2622 | 2622 | } |
| 2623 | 2623 | public function setScheduleStartMs($scheduleStartMs) |
| 2624 | 2624 | { |
| 2625 | - $this->scheduleStartMs = $scheduleStartMs; |
|
| 2625 | + $this->scheduleStartMs = $scheduleStartMs; |
|
| 2626 | 2626 | } |
| 2627 | 2627 | public function getScheduleStartMs() |
| 2628 | 2628 | { |
| 2629 | - return $this->scheduleStartMs; |
|
| 2629 | + return $this->scheduleStartMs; |
|
| 2630 | 2630 | } |
| 2631 | 2631 | public function setType($type) |
| 2632 | 2632 | { |
| 2633 | - $this->type = $type; |
|
| 2633 | + $this->type = $type; |
|
| 2634 | 2634 | } |
| 2635 | 2635 | public function getType() |
| 2636 | 2636 | { |
| 2637 | - return $this->type; |
|
| 2637 | + return $this->type; |
|
| 2638 | 2638 | } |
| 2639 | 2639 | } |
| 2640 | 2640 | |
@@ -2654,43 +2654,43 @@ discard block |
||
| 2654 | 2654 | |
| 2655 | 2655 | public function setKey($key) |
| 2656 | 2656 | { |
| 2657 | - $this->key = $key; |
|
| 2657 | + $this->key = $key; |
|
| 2658 | 2658 | } |
| 2659 | 2659 | public function getKey() |
| 2660 | 2660 | { |
| 2661 | - return $this->key; |
|
| 2661 | + return $this->key; |
|
| 2662 | 2662 | } |
| 2663 | 2663 | public function setList($list) |
| 2664 | 2664 | { |
| 2665 | - $this->list = $list; |
|
| 2665 | + $this->list = $list; |
|
| 2666 | 2666 | } |
| 2667 | 2667 | public function getList() |
| 2668 | 2668 | { |
| 2669 | - return $this->list; |
|
| 2669 | + return $this->list; |
|
| 2670 | 2670 | } |
| 2671 | 2671 | public function setMap($map) |
| 2672 | 2672 | { |
| 2673 | - $this->map = $map; |
|
| 2673 | + $this->map = $map; |
|
| 2674 | 2674 | } |
| 2675 | 2675 | public function getMap() |
| 2676 | 2676 | { |
| 2677 | - return $this->map; |
|
| 2677 | + return $this->map; |
|
| 2678 | 2678 | } |
| 2679 | 2679 | public function setType($type) |
| 2680 | 2680 | { |
| 2681 | - $this->type = $type; |
|
| 2681 | + $this->type = $type; |
|
| 2682 | 2682 | } |
| 2683 | 2683 | public function getType() |
| 2684 | 2684 | { |
| 2685 | - return $this->type; |
|
| 2685 | + return $this->type; |
|
| 2686 | 2686 | } |
| 2687 | 2687 | public function setValue($value) |
| 2688 | 2688 | { |
| 2689 | - $this->value = $value; |
|
| 2689 | + $this->value = $value; |
|
| 2690 | 2690 | } |
| 2691 | 2691 | public function getValue() |
| 2692 | 2692 | { |
| 2693 | - return $this->value; |
|
| 2693 | + return $this->value; |
|
| 2694 | 2694 | } |
| 2695 | 2695 | } |
| 2696 | 2696 | |
@@ -2705,19 +2705,19 @@ discard block |
||
| 2705 | 2705 | |
| 2706 | 2706 | public function setCompilerError($compilerError) |
| 2707 | 2707 | { |
| 2708 | - $this->compilerError = $compilerError; |
|
| 2708 | + $this->compilerError = $compilerError; |
|
| 2709 | 2709 | } |
| 2710 | 2710 | public function getCompilerError() |
| 2711 | 2711 | { |
| 2712 | - return $this->compilerError; |
|
| 2712 | + return $this->compilerError; |
|
| 2713 | 2713 | } |
| 2714 | 2714 | public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion) |
| 2715 | 2715 | { |
| 2716 | - $this->containerVersion = $containerVersion; |
|
| 2716 | + $this->containerVersion = $containerVersion; |
|
| 2717 | 2717 | } |
| 2718 | 2718 | public function getContainerVersion() |
| 2719 | 2719 | { |
| 2720 | - return $this->containerVersion; |
|
| 2720 | + return $this->containerVersion; |
|
| 2721 | 2721 | } |
| 2722 | 2722 | } |
| 2723 | 2723 | |
@@ -2738,59 +2738,59 @@ discard block |
||
| 2738 | 2738 | |
| 2739 | 2739 | public function setAccountId($accountId) |
| 2740 | 2740 | { |
| 2741 | - $this->accountId = $accountId; |
|
| 2741 | + $this->accountId = $accountId; |
|
| 2742 | 2742 | } |
| 2743 | 2743 | public function getAccountId() |
| 2744 | 2744 | { |
| 2745 | - return $this->accountId; |
|
| 2745 | + return $this->accountId; |
|
| 2746 | 2746 | } |
| 2747 | 2747 | public function setCondition($condition) |
| 2748 | 2748 | { |
| 2749 | - $this->condition = $condition; |
|
| 2749 | + $this->condition = $condition; |
|
| 2750 | 2750 | } |
| 2751 | 2751 | public function getCondition() |
| 2752 | 2752 | { |
| 2753 | - return $this->condition; |
|
| 2753 | + return $this->condition; |
|
| 2754 | 2754 | } |
| 2755 | 2755 | public function setContainerId($containerId) |
| 2756 | 2756 | { |
| 2757 | - $this->containerId = $containerId; |
|
| 2757 | + $this->containerId = $containerId; |
|
| 2758 | 2758 | } |
| 2759 | 2759 | public function getContainerId() |
| 2760 | 2760 | { |
| 2761 | - return $this->containerId; |
|
| 2761 | + return $this->containerId; |
|
| 2762 | 2762 | } |
| 2763 | 2763 | public function setFingerprint($fingerprint) |
| 2764 | 2764 | { |
| 2765 | - $this->fingerprint = $fingerprint; |
|
| 2765 | + $this->fingerprint = $fingerprint; |
|
| 2766 | 2766 | } |
| 2767 | 2767 | public function getFingerprint() |
| 2768 | 2768 | { |
| 2769 | - return $this->fingerprint; |
|
| 2769 | + return $this->fingerprint; |
|
| 2770 | 2770 | } |
| 2771 | 2771 | public function setName($name) |
| 2772 | 2772 | { |
| 2773 | - $this->name = $name; |
|
| 2773 | + $this->name = $name; |
|
| 2774 | 2774 | } |
| 2775 | 2775 | public function getName() |
| 2776 | 2776 | { |
| 2777 | - return $this->name; |
|
| 2777 | + return $this->name; |
|
| 2778 | 2778 | } |
| 2779 | 2779 | public function setNotes($notes) |
| 2780 | 2780 | { |
| 2781 | - $this->notes = $notes; |
|
| 2781 | + $this->notes = $notes; |
|
| 2782 | 2782 | } |
| 2783 | 2783 | public function getNotes() |
| 2784 | 2784 | { |
| 2785 | - return $this->notes; |
|
| 2785 | + return $this->notes; |
|
| 2786 | 2786 | } |
| 2787 | 2787 | public function setRuleId($ruleId) |
| 2788 | 2788 | { |
| 2789 | - $this->ruleId = $ruleId; |
|
| 2789 | + $this->ruleId = $ruleId; |
|
| 2790 | 2790 | } |
| 2791 | 2791 | public function getRuleId() |
| 2792 | 2792 | { |
| 2793 | - return $this->ruleId; |
|
| 2793 | + return $this->ruleId; |
|
| 2794 | 2794 | } |
| 2795 | 2795 | } |
| 2796 | 2796 | |
@@ -2821,131 +2821,131 @@ discard block |
||
| 2821 | 2821 | |
| 2822 | 2822 | public function setAccountId($accountId) |
| 2823 | 2823 | { |
| 2824 | - $this->accountId = $accountId; |
|
| 2824 | + $this->accountId = $accountId; |
|
| 2825 | 2825 | } |
| 2826 | 2826 | public function getAccountId() |
| 2827 | 2827 | { |
| 2828 | - return $this->accountId; |
|
| 2828 | + return $this->accountId; |
|
| 2829 | 2829 | } |
| 2830 | 2830 | public function setBlockingRuleId($blockingRuleId) |
| 2831 | 2831 | { |
| 2832 | - $this->blockingRuleId = $blockingRuleId; |
|
| 2832 | + $this->blockingRuleId = $blockingRuleId; |
|
| 2833 | 2833 | } |
| 2834 | 2834 | public function getBlockingRuleId() |
| 2835 | 2835 | { |
| 2836 | - return $this->blockingRuleId; |
|
| 2836 | + return $this->blockingRuleId; |
|
| 2837 | 2837 | } |
| 2838 | 2838 | public function setBlockingTriggerId($blockingTriggerId) |
| 2839 | 2839 | { |
| 2840 | - $this->blockingTriggerId = $blockingTriggerId; |
|
| 2840 | + $this->blockingTriggerId = $blockingTriggerId; |
|
| 2841 | 2841 | } |
| 2842 | 2842 | public function getBlockingTriggerId() |
| 2843 | 2843 | { |
| 2844 | - return $this->blockingTriggerId; |
|
| 2844 | + return $this->blockingTriggerId; |
|
| 2845 | 2845 | } |
| 2846 | 2846 | public function setContainerId($containerId) |
| 2847 | 2847 | { |
| 2848 | - $this->containerId = $containerId; |
|
| 2848 | + $this->containerId = $containerId; |
|
| 2849 | 2849 | } |
| 2850 | 2850 | public function getContainerId() |
| 2851 | 2851 | { |
| 2852 | - return $this->containerId; |
|
| 2852 | + return $this->containerId; |
|
| 2853 | 2853 | } |
| 2854 | 2854 | public function setFingerprint($fingerprint) |
| 2855 | 2855 | { |
| 2856 | - $this->fingerprint = $fingerprint; |
|
| 2856 | + $this->fingerprint = $fingerprint; |
|
| 2857 | 2857 | } |
| 2858 | 2858 | public function getFingerprint() |
| 2859 | 2859 | { |
| 2860 | - return $this->fingerprint; |
|
| 2860 | + return $this->fingerprint; |
|
| 2861 | 2861 | } |
| 2862 | 2862 | public function setFiringRuleId($firingRuleId) |
| 2863 | 2863 | { |
| 2864 | - $this->firingRuleId = $firingRuleId; |
|
| 2864 | + $this->firingRuleId = $firingRuleId; |
|
| 2865 | 2865 | } |
| 2866 | 2866 | public function getFiringRuleId() |
| 2867 | 2867 | { |
| 2868 | - return $this->firingRuleId; |
|
| 2868 | + return $this->firingRuleId; |
|
| 2869 | 2869 | } |
| 2870 | 2870 | public function setFiringTriggerId($firingTriggerId) |
| 2871 | 2871 | { |
| 2872 | - $this->firingTriggerId = $firingTriggerId; |
|
| 2872 | + $this->firingTriggerId = $firingTriggerId; |
|
| 2873 | 2873 | } |
| 2874 | 2874 | public function getFiringTriggerId() |
| 2875 | 2875 | { |
| 2876 | - return $this->firingTriggerId; |
|
| 2876 | + return $this->firingTriggerId; |
|
| 2877 | 2877 | } |
| 2878 | 2878 | public function setLiveOnly($liveOnly) |
| 2879 | 2879 | { |
| 2880 | - $this->liveOnly = $liveOnly; |
|
| 2880 | + $this->liveOnly = $liveOnly; |
|
| 2881 | 2881 | } |
| 2882 | 2882 | public function getLiveOnly() |
| 2883 | 2883 | { |
| 2884 | - return $this->liveOnly; |
|
| 2884 | + return $this->liveOnly; |
|
| 2885 | 2885 | } |
| 2886 | 2886 | public function setName($name) |
| 2887 | 2887 | { |
| 2888 | - $this->name = $name; |
|
| 2888 | + $this->name = $name; |
|
| 2889 | 2889 | } |
| 2890 | 2890 | public function getName() |
| 2891 | 2891 | { |
| 2892 | - return $this->name; |
|
| 2892 | + return $this->name; |
|
| 2893 | 2893 | } |
| 2894 | 2894 | public function setNotes($notes) |
| 2895 | 2895 | { |
| 2896 | - $this->notes = $notes; |
|
| 2896 | + $this->notes = $notes; |
|
| 2897 | 2897 | } |
| 2898 | 2898 | public function getNotes() |
| 2899 | 2899 | { |
| 2900 | - return $this->notes; |
|
| 2900 | + return $this->notes; |
|
| 2901 | 2901 | } |
| 2902 | 2902 | public function setParameter($parameter) |
| 2903 | 2903 | { |
| 2904 | - $this->parameter = $parameter; |
|
| 2904 | + $this->parameter = $parameter; |
|
| 2905 | 2905 | } |
| 2906 | 2906 | public function getParameter() |
| 2907 | 2907 | { |
| 2908 | - return $this->parameter; |
|
| 2908 | + return $this->parameter; |
|
| 2909 | 2909 | } |
| 2910 | 2910 | public function setPriority(Google_Service_TagManager_Parameter $priority) |
| 2911 | 2911 | { |
| 2912 | - $this->priority = $priority; |
|
| 2912 | + $this->priority = $priority; |
|
| 2913 | 2913 | } |
| 2914 | 2914 | public function getPriority() |
| 2915 | 2915 | { |
| 2916 | - return $this->priority; |
|
| 2916 | + return $this->priority; |
|
| 2917 | 2917 | } |
| 2918 | 2918 | public function setScheduleEndMs($scheduleEndMs) |
| 2919 | 2919 | { |
| 2920 | - $this->scheduleEndMs = $scheduleEndMs; |
|
| 2920 | + $this->scheduleEndMs = $scheduleEndMs; |
|
| 2921 | 2921 | } |
| 2922 | 2922 | public function getScheduleEndMs() |
| 2923 | 2923 | { |
| 2924 | - return $this->scheduleEndMs; |
|
| 2924 | + return $this->scheduleEndMs; |
|
| 2925 | 2925 | } |
| 2926 | 2926 | public function setScheduleStartMs($scheduleStartMs) |
| 2927 | 2927 | { |
| 2928 | - $this->scheduleStartMs = $scheduleStartMs; |
|
| 2928 | + $this->scheduleStartMs = $scheduleStartMs; |
|
| 2929 | 2929 | } |
| 2930 | 2930 | public function getScheduleStartMs() |
| 2931 | 2931 | { |
| 2932 | - return $this->scheduleStartMs; |
|
| 2932 | + return $this->scheduleStartMs; |
|
| 2933 | 2933 | } |
| 2934 | 2934 | public function setTagId($tagId) |
| 2935 | 2935 | { |
| 2936 | - $this->tagId = $tagId; |
|
| 2936 | + $this->tagId = $tagId; |
|
| 2937 | 2937 | } |
| 2938 | 2938 | public function getTagId() |
| 2939 | 2939 | { |
| 2940 | - return $this->tagId; |
|
| 2940 | + return $this->tagId; |
|
| 2941 | 2941 | } |
| 2942 | 2942 | public function setType($type) |
| 2943 | 2943 | { |
| 2944 | - $this->type = $type; |
|
| 2944 | + $this->type = $type; |
|
| 2945 | 2945 | } |
| 2946 | 2946 | public function getType() |
| 2947 | 2947 | { |
| 2948 | - return $this->type; |
|
| 2948 | + return $this->type; |
|
| 2949 | 2949 | } |
| 2950 | 2950 | } |
| 2951 | 2951 | |
@@ -2988,147 +2988,147 @@ discard block |
||
| 2988 | 2988 | |
| 2989 | 2989 | public function setAccountId($accountId) |
| 2990 | 2990 | { |
| 2991 | - $this->accountId = $accountId; |
|
| 2991 | + $this->accountId = $accountId; |
|
| 2992 | 2992 | } |
| 2993 | 2993 | public function getAccountId() |
| 2994 | 2994 | { |
| 2995 | - return $this->accountId; |
|
| 2995 | + return $this->accountId; |
|
| 2996 | 2996 | } |
| 2997 | 2997 | public function setAutoEventFilter($autoEventFilter) |
| 2998 | 2998 | { |
| 2999 | - $this->autoEventFilter = $autoEventFilter; |
|
| 2999 | + $this->autoEventFilter = $autoEventFilter; |
|
| 3000 | 3000 | } |
| 3001 | 3001 | public function getAutoEventFilter() |
| 3002 | 3002 | { |
| 3003 | - return $this->autoEventFilter; |
|
| 3003 | + return $this->autoEventFilter; |
|
| 3004 | 3004 | } |
| 3005 | 3005 | public function setCheckValidation(Google_Service_TagManager_Parameter $checkValidation) |
| 3006 | 3006 | { |
| 3007 | - $this->checkValidation = $checkValidation; |
|
| 3007 | + $this->checkValidation = $checkValidation; |
|
| 3008 | 3008 | } |
| 3009 | 3009 | public function getCheckValidation() |
| 3010 | 3010 | { |
| 3011 | - return $this->checkValidation; |
|
| 3011 | + return $this->checkValidation; |
|
| 3012 | 3012 | } |
| 3013 | 3013 | public function setContainerId($containerId) |
| 3014 | 3014 | { |
| 3015 | - $this->containerId = $containerId; |
|
| 3015 | + $this->containerId = $containerId; |
|
| 3016 | 3016 | } |
| 3017 | 3017 | public function getContainerId() |
| 3018 | 3018 | { |
| 3019 | - return $this->containerId; |
|
| 3019 | + return $this->containerId; |
|
| 3020 | 3020 | } |
| 3021 | 3021 | public function setCustomEventFilter($customEventFilter) |
| 3022 | 3022 | { |
| 3023 | - $this->customEventFilter = $customEventFilter; |
|
| 3023 | + $this->customEventFilter = $customEventFilter; |
|
| 3024 | 3024 | } |
| 3025 | 3025 | public function getCustomEventFilter() |
| 3026 | 3026 | { |
| 3027 | - return $this->customEventFilter; |
|
| 3027 | + return $this->customEventFilter; |
|
| 3028 | 3028 | } |
| 3029 | 3029 | public function setEnableAllVideos(Google_Service_TagManager_Parameter $enableAllVideos) |
| 3030 | 3030 | { |
| 3031 | - $this->enableAllVideos = $enableAllVideos; |
|
| 3031 | + $this->enableAllVideos = $enableAllVideos; |
|
| 3032 | 3032 | } |
| 3033 | 3033 | public function getEnableAllVideos() |
| 3034 | 3034 | { |
| 3035 | - return $this->enableAllVideos; |
|
| 3035 | + return $this->enableAllVideos; |
|
| 3036 | 3036 | } |
| 3037 | 3037 | public function setEventName(Google_Service_TagManager_Parameter $eventName) |
| 3038 | 3038 | { |
| 3039 | - $this->eventName = $eventName; |
|
| 3039 | + $this->eventName = $eventName; |
|
| 3040 | 3040 | } |
| 3041 | 3041 | public function getEventName() |
| 3042 | 3042 | { |
| 3043 | - return $this->eventName; |
|
| 3043 | + return $this->eventName; |
|
| 3044 | 3044 | } |
| 3045 | 3045 | public function setFilter($filter) |
| 3046 | 3046 | { |
| 3047 | - $this->filter = $filter; |
|
| 3047 | + $this->filter = $filter; |
|
| 3048 | 3048 | } |
| 3049 | 3049 | public function getFilter() |
| 3050 | 3050 | { |
| 3051 | - return $this->filter; |
|
| 3051 | + return $this->filter; |
|
| 3052 | 3052 | } |
| 3053 | 3053 | public function setFingerprint($fingerprint) |
| 3054 | 3054 | { |
| 3055 | - $this->fingerprint = $fingerprint; |
|
| 3055 | + $this->fingerprint = $fingerprint; |
|
| 3056 | 3056 | } |
| 3057 | 3057 | public function getFingerprint() |
| 3058 | 3058 | { |
| 3059 | - return $this->fingerprint; |
|
| 3059 | + return $this->fingerprint; |
|
| 3060 | 3060 | } |
| 3061 | 3061 | public function setInterval(Google_Service_TagManager_Parameter $interval) |
| 3062 | 3062 | { |
| 3063 | - $this->interval = $interval; |
|
| 3063 | + $this->interval = $interval; |
|
| 3064 | 3064 | } |
| 3065 | 3065 | public function getInterval() |
| 3066 | 3066 | { |
| 3067 | - return $this->interval; |
|
| 3067 | + return $this->interval; |
|
| 3068 | 3068 | } |
| 3069 | 3069 | public function setLimit(Google_Service_TagManager_Parameter $limit) |
| 3070 | 3070 | { |
| 3071 | - $this->limit = $limit; |
|
| 3071 | + $this->limit = $limit; |
|
| 3072 | 3072 | } |
| 3073 | 3073 | public function getLimit() |
| 3074 | 3074 | { |
| 3075 | - return $this->limit; |
|
| 3075 | + return $this->limit; |
|
| 3076 | 3076 | } |
| 3077 | 3077 | public function setName($name) |
| 3078 | 3078 | { |
| 3079 | - $this->name = $name; |
|
| 3079 | + $this->name = $name; |
|
| 3080 | 3080 | } |
| 3081 | 3081 | public function getName() |
| 3082 | 3082 | { |
| 3083 | - return $this->name; |
|
| 3083 | + return $this->name; |
|
| 3084 | 3084 | } |
| 3085 | 3085 | public function setTriggerId($triggerId) |
| 3086 | 3086 | { |
| 3087 | - $this->triggerId = $triggerId; |
|
| 3087 | + $this->triggerId = $triggerId; |
|
| 3088 | 3088 | } |
| 3089 | 3089 | public function getTriggerId() |
| 3090 | 3090 | { |
| 3091 | - return $this->triggerId; |
|
| 3091 | + return $this->triggerId; |
|
| 3092 | 3092 | } |
| 3093 | 3093 | public function setType($type) |
| 3094 | 3094 | { |
| 3095 | - $this->type = $type; |
|
| 3095 | + $this->type = $type; |
|
| 3096 | 3096 | } |
| 3097 | 3097 | public function getType() |
| 3098 | 3098 | { |
| 3099 | - return $this->type; |
|
| 3099 | + return $this->type; |
|
| 3100 | 3100 | } |
| 3101 | 3101 | public function setUniqueTriggerId(Google_Service_TagManager_Parameter $uniqueTriggerId) |
| 3102 | 3102 | { |
| 3103 | - $this->uniqueTriggerId = $uniqueTriggerId; |
|
| 3103 | + $this->uniqueTriggerId = $uniqueTriggerId; |
|
| 3104 | 3104 | } |
| 3105 | 3105 | public function getUniqueTriggerId() |
| 3106 | 3106 | { |
| 3107 | - return $this->uniqueTriggerId; |
|
| 3107 | + return $this->uniqueTriggerId; |
|
| 3108 | 3108 | } |
| 3109 | 3109 | public function setVideoPercentageList(Google_Service_TagManager_Parameter $videoPercentageList) |
| 3110 | 3110 | { |
| 3111 | - $this->videoPercentageList = $videoPercentageList; |
|
| 3111 | + $this->videoPercentageList = $videoPercentageList; |
|
| 3112 | 3112 | } |
| 3113 | 3113 | public function getVideoPercentageList() |
| 3114 | 3114 | { |
| 3115 | - return $this->videoPercentageList; |
|
| 3115 | + return $this->videoPercentageList; |
|
| 3116 | 3116 | } |
| 3117 | 3117 | public function setWaitForTags(Google_Service_TagManager_Parameter $waitForTags) |
| 3118 | 3118 | { |
| 3119 | - $this->waitForTags = $waitForTags; |
|
| 3119 | + $this->waitForTags = $waitForTags; |
|
| 3120 | 3120 | } |
| 3121 | 3121 | public function getWaitForTags() |
| 3122 | 3122 | { |
| 3123 | - return $this->waitForTags; |
|
| 3123 | + return $this->waitForTags; |
|
| 3124 | 3124 | } |
| 3125 | 3125 | public function setWaitForTagsTimeout(Google_Service_TagManager_Parameter $waitForTagsTimeout) |
| 3126 | 3126 | { |
| 3127 | - $this->waitForTagsTimeout = $waitForTagsTimeout; |
|
| 3127 | + $this->waitForTagsTimeout = $waitForTagsTimeout; |
|
| 3128 | 3128 | } |
| 3129 | 3129 | public function getWaitForTagsTimeout() |
| 3130 | 3130 | { |
| 3131 | - return $this->waitForTagsTimeout; |
|
| 3131 | + return $this->waitForTagsTimeout; |
|
| 3132 | 3132 | } |
| 3133 | 3133 | } |
| 3134 | 3134 | |
@@ -3148,43 +3148,43 @@ discard block |
||
| 3148 | 3148 | |
| 3149 | 3149 | public function setAccountAccess(Google_Service_TagManager_AccountAccess $accountAccess) |
| 3150 | 3150 | { |
| 3151 | - $this->accountAccess = $accountAccess; |
|
| 3151 | + $this->accountAccess = $accountAccess; |
|
| 3152 | 3152 | } |
| 3153 | 3153 | public function getAccountAccess() |
| 3154 | 3154 | { |
| 3155 | - return $this->accountAccess; |
|
| 3155 | + return $this->accountAccess; |
|
| 3156 | 3156 | } |
| 3157 | 3157 | public function setAccountId($accountId) |
| 3158 | 3158 | { |
| 3159 | - $this->accountId = $accountId; |
|
| 3159 | + $this->accountId = $accountId; |
|
| 3160 | 3160 | } |
| 3161 | 3161 | public function getAccountId() |
| 3162 | 3162 | { |
| 3163 | - return $this->accountId; |
|
| 3163 | + return $this->accountId; |
|
| 3164 | 3164 | } |
| 3165 | 3165 | public function setContainerAccess($containerAccess) |
| 3166 | 3166 | { |
| 3167 | - $this->containerAccess = $containerAccess; |
|
| 3167 | + $this->containerAccess = $containerAccess; |
|
| 3168 | 3168 | } |
| 3169 | 3169 | public function getContainerAccess() |
| 3170 | 3170 | { |
| 3171 | - return $this->containerAccess; |
|
| 3171 | + return $this->containerAccess; |
|
| 3172 | 3172 | } |
| 3173 | 3173 | public function setEmailAddress($emailAddress) |
| 3174 | 3174 | { |
| 3175 | - $this->emailAddress = $emailAddress; |
|
| 3175 | + $this->emailAddress = $emailAddress; |
|
| 3176 | 3176 | } |
| 3177 | 3177 | public function getEmailAddress() |
| 3178 | 3178 | { |
| 3179 | - return $this->emailAddress; |
|
| 3179 | + return $this->emailAddress; |
|
| 3180 | 3180 | } |
| 3181 | 3181 | public function setPermissionId($permissionId) |
| 3182 | 3182 | { |
| 3183 | - $this->permissionId = $permissionId; |
|
| 3183 | + $this->permissionId = $permissionId; |
|
| 3184 | 3184 | } |
| 3185 | 3185 | public function getPermissionId() |
| 3186 | 3186 | { |
| 3187 | - return $this->permissionId; |
|
| 3187 | + return $this->permissionId; |
|
| 3188 | 3188 | } |
| 3189 | 3189 | } |
| 3190 | 3190 | |
@@ -3210,98 +3210,98 @@ discard block |
||
| 3210 | 3210 | |
| 3211 | 3211 | public function setAccountId($accountId) |
| 3212 | 3212 | { |
| 3213 | - $this->accountId = $accountId; |
|
| 3213 | + $this->accountId = $accountId; |
|
| 3214 | 3214 | } |
| 3215 | 3215 | public function getAccountId() |
| 3216 | 3216 | { |
| 3217 | - return $this->accountId; |
|
| 3217 | + return $this->accountId; |
|
| 3218 | 3218 | } |
| 3219 | 3219 | public function setContainerId($containerId) |
| 3220 | 3220 | { |
| 3221 | - $this->containerId = $containerId; |
|
| 3221 | + $this->containerId = $containerId; |
|
| 3222 | 3222 | } |
| 3223 | 3223 | public function getContainerId() |
| 3224 | 3224 | { |
| 3225 | - return $this->containerId; |
|
| 3225 | + return $this->containerId; |
|
| 3226 | 3226 | } |
| 3227 | 3227 | public function setDisablingTriggerId($disablingTriggerId) |
| 3228 | 3228 | { |
| 3229 | - $this->disablingTriggerId = $disablingTriggerId; |
|
| 3229 | + $this->disablingTriggerId = $disablingTriggerId; |
|
| 3230 | 3230 | } |
| 3231 | 3231 | public function getDisablingTriggerId() |
| 3232 | 3232 | { |
| 3233 | - return $this->disablingTriggerId; |
|
| 3233 | + return $this->disablingTriggerId; |
|
| 3234 | 3234 | } |
| 3235 | 3235 | public function setEnablingTriggerId($enablingTriggerId) |
| 3236 | 3236 | { |
| 3237 | - $this->enablingTriggerId = $enablingTriggerId; |
|
| 3237 | + $this->enablingTriggerId = $enablingTriggerId; |
|
| 3238 | 3238 | } |
| 3239 | 3239 | public function getEnablingTriggerId() |
| 3240 | 3240 | { |
| 3241 | - return $this->enablingTriggerId; |
|
| 3241 | + return $this->enablingTriggerId; |
|
| 3242 | 3242 | } |
| 3243 | 3243 | public function setFingerprint($fingerprint) |
| 3244 | 3244 | { |
| 3245 | - $this->fingerprint = $fingerprint; |
|
| 3245 | + $this->fingerprint = $fingerprint; |
|
| 3246 | 3246 | } |
| 3247 | 3247 | public function getFingerprint() |
| 3248 | 3248 | { |
| 3249 | - return $this->fingerprint; |
|
| 3249 | + return $this->fingerprint; |
|
| 3250 | 3250 | } |
| 3251 | 3251 | public function setName($name) |
| 3252 | 3252 | { |
| 3253 | - $this->name = $name; |
|
| 3253 | + $this->name = $name; |
|
| 3254 | 3254 | } |
| 3255 | 3255 | public function getName() |
| 3256 | 3256 | { |
| 3257 | - return $this->name; |
|
| 3257 | + return $this->name; |
|
| 3258 | 3258 | } |
| 3259 | 3259 | public function setNotes($notes) |
| 3260 | 3260 | { |
| 3261 | - $this->notes = $notes; |
|
| 3261 | + $this->notes = $notes; |
|
| 3262 | 3262 | } |
| 3263 | 3263 | public function getNotes() |
| 3264 | 3264 | { |
| 3265 | - return $this->notes; |
|
| 3265 | + return $this->notes; |
|
| 3266 | 3266 | } |
| 3267 | 3267 | public function setParameter($parameter) |
| 3268 | 3268 | { |
| 3269 | - $this->parameter = $parameter; |
|
| 3269 | + $this->parameter = $parameter; |
|
| 3270 | 3270 | } |
| 3271 | 3271 | public function getParameter() |
| 3272 | 3272 | { |
| 3273 | - return $this->parameter; |
|
| 3273 | + return $this->parameter; |
|
| 3274 | 3274 | } |
| 3275 | 3275 | public function setScheduleEndMs($scheduleEndMs) |
| 3276 | 3276 | { |
| 3277 | - $this->scheduleEndMs = $scheduleEndMs; |
|
| 3277 | + $this->scheduleEndMs = $scheduleEndMs; |
|
| 3278 | 3278 | } |
| 3279 | 3279 | public function getScheduleEndMs() |
| 3280 | 3280 | { |
| 3281 | - return $this->scheduleEndMs; |
|
| 3281 | + return $this->scheduleEndMs; |
|
| 3282 | 3282 | } |
| 3283 | 3283 | public function setScheduleStartMs($scheduleStartMs) |
| 3284 | 3284 | { |
| 3285 | - $this->scheduleStartMs = $scheduleStartMs; |
|
| 3285 | + $this->scheduleStartMs = $scheduleStartMs; |
|
| 3286 | 3286 | } |
| 3287 | 3287 | public function getScheduleStartMs() |
| 3288 | 3288 | { |
| 3289 | - return $this->scheduleStartMs; |
|
| 3289 | + return $this->scheduleStartMs; |
|
| 3290 | 3290 | } |
| 3291 | 3291 | public function setType($type) |
| 3292 | 3292 | { |
| 3293 | - $this->type = $type; |
|
| 3293 | + $this->type = $type; |
|
| 3294 | 3294 | } |
| 3295 | 3295 | public function getType() |
| 3296 | 3296 | { |
| 3297 | - return $this->type; |
|
| 3297 | + return $this->type; |
|
| 3298 | 3298 | } |
| 3299 | 3299 | public function setVariableId($variableId) |
| 3300 | 3300 | { |
| 3301 | - $this->variableId = $variableId; |
|
| 3301 | + $this->variableId = $variableId; |
|
| 3302 | 3302 | } |
| 3303 | 3303 | public function getVariableId() |
| 3304 | 3304 | { |
| 3305 | - return $this->variableId; |
|
| 3305 | + return $this->variableId; |
|
| 3306 | 3306 | } |
| 3307 | 3307 | } |
@@ -92,11 +92,11 @@ discard block |
||
| 92 | 92 | 'required' => true, |
| 93 | 93 | ), |
| 94 | 94 | ), |
| 95 | - ),'list' => array( |
|
| 95 | + ), 'list' => array( |
|
| 96 | 96 | 'path' => 'accounts', |
| 97 | 97 | 'httpMethod' => 'GET', |
| 98 | 98 | 'parameters' => array(), |
| 99 | - ),'update' => array( |
|
| 99 | + ), 'update' => array( |
|
| 100 | 100 | 'path' => 'accounts/{accountId}', |
| 101 | 101 | 'httpMethod' => 'PUT', |
| 102 | 102 | 'parameters' => array( |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | 'required' => true, |
| 131 | 131 | ), |
| 132 | 132 | ), |
| 133 | - ),'delete' => array( |
|
| 133 | + ), 'delete' => array( |
|
| 134 | 134 | 'path' => 'accounts/{accountId}/containers/{containerId}', |
| 135 | 135 | 'httpMethod' => 'DELETE', |
| 136 | 136 | 'parameters' => array( |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | 'required' => true, |
| 146 | 146 | ), |
| 147 | 147 | ), |
| 148 | - ),'get' => array( |
|
| 148 | + ), 'get' => array( |
|
| 149 | 149 | 'path' => 'accounts/{accountId}/containers/{containerId}', |
| 150 | 150 | 'httpMethod' => 'GET', |
| 151 | 151 | 'parameters' => array( |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | 'required' => true, |
| 161 | 161 | ), |
| 162 | 162 | ), |
| 163 | - ),'list' => array( |
|
| 163 | + ), 'list' => array( |
|
| 164 | 164 | 'path' => 'accounts/{accountId}/containers', |
| 165 | 165 | 'httpMethod' => 'GET', |
| 166 | 166 | 'parameters' => array( |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | 'required' => true, |
| 171 | 171 | ), |
| 172 | 172 | ), |
| 173 | - ),'update' => array( |
|
| 173 | + ), 'update' => array( |
|
| 174 | 174 | 'path' => 'accounts/{accountId}/containers/{containerId}', |
| 175 | 175 | 'httpMethod' => 'PUT', |
| 176 | 176 | 'parameters' => array( |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | 'required' => true, |
| 215 | 215 | ), |
| 216 | 216 | ), |
| 217 | - ),'delete' => array( |
|
| 217 | + ), 'delete' => array( |
|
| 218 | 218 | 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
| 219 | 219 | 'httpMethod' => 'DELETE', |
| 220 | 220 | 'parameters' => array( |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | 'required' => true, |
| 235 | 235 | ), |
| 236 | 236 | ), |
| 237 | - ),'get' => array( |
|
| 237 | + ), 'get' => array( |
|
| 238 | 238 | 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
| 239 | 239 | 'httpMethod' => 'GET', |
| 240 | 240 | 'parameters' => array( |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | 'required' => true, |
| 255 | 255 | ), |
| 256 | 256 | ), |
| 257 | - ),'list' => array( |
|
| 257 | + ), 'list' => array( |
|
| 258 | 258 | 'path' => 'accounts/{accountId}/containers/{containerId}/macros', |
| 259 | 259 | 'httpMethod' => 'GET', |
| 260 | 260 | 'parameters' => array( |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | 'required' => true, |
| 270 | 270 | ), |
| 271 | 271 | ), |
| 272 | - ),'update' => array( |
|
| 272 | + ), 'update' => array( |
|
| 273 | 273 | 'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}', |
| 274 | 274 | 'httpMethod' => 'PUT', |
| 275 | 275 | 'parameters' => array( |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | 'required' => true, |
| 319 | 319 | ), |
| 320 | 320 | ), |
| 321 | - ),'delete' => array( |
|
| 321 | + ), 'delete' => array( |
|
| 322 | 322 | 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
| 323 | 323 | 'httpMethod' => 'DELETE', |
| 324 | 324 | 'parameters' => array( |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | 'required' => true, |
| 339 | 339 | ), |
| 340 | 340 | ), |
| 341 | - ),'get' => array( |
|
| 341 | + ), 'get' => array( |
|
| 342 | 342 | 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
| 343 | 343 | 'httpMethod' => 'GET', |
| 344 | 344 | 'parameters' => array( |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | 'required' => true, |
| 359 | 359 | ), |
| 360 | 360 | ), |
| 361 | - ),'list' => array( |
|
| 361 | + ), 'list' => array( |
|
| 362 | 362 | 'path' => 'accounts/{accountId}/containers/{containerId}/rules', |
| 363 | 363 | 'httpMethod' => 'GET', |
| 364 | 364 | 'parameters' => array( |
@@ -373,7 +373,7 @@ discard block |
||
| 373 | 373 | 'required' => true, |
| 374 | 374 | ), |
| 375 | 375 | ), |
| 376 | - ),'update' => array( |
|
| 376 | + ), 'update' => array( |
|
| 377 | 377 | 'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}', |
| 378 | 378 | 'httpMethod' => 'PUT', |
| 379 | 379 | 'parameters' => array( |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | 'required' => true, |
| 423 | 423 | ), |
| 424 | 424 | ), |
| 425 | - ),'delete' => array( |
|
| 425 | + ), 'delete' => array( |
|
| 426 | 426 | 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
| 427 | 427 | 'httpMethod' => 'DELETE', |
| 428 | 428 | 'parameters' => array( |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | 'required' => true, |
| 443 | 443 | ), |
| 444 | 444 | ), |
| 445 | - ),'get' => array( |
|
| 445 | + ), 'get' => array( |
|
| 446 | 446 | 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
| 447 | 447 | 'httpMethod' => 'GET', |
| 448 | 448 | 'parameters' => array( |
@@ -462,7 +462,7 @@ discard block |
||
| 462 | 462 | 'required' => true, |
| 463 | 463 | ), |
| 464 | 464 | ), |
| 465 | - ),'list' => array( |
|
| 465 | + ), 'list' => array( |
|
| 466 | 466 | 'path' => 'accounts/{accountId}/containers/{containerId}/tags', |
| 467 | 467 | 'httpMethod' => 'GET', |
| 468 | 468 | 'parameters' => array( |
@@ -477,7 +477,7 @@ discard block |
||
| 477 | 477 | 'required' => true, |
| 478 | 478 | ), |
| 479 | 479 | ), |
| 480 | - ),'update' => array( |
|
| 480 | + ), 'update' => array( |
|
| 481 | 481 | 'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}', |
| 482 | 482 | 'httpMethod' => 'PUT', |
| 483 | 483 | 'parameters' => array( |
@@ -526,7 +526,7 @@ discard block |
||
| 526 | 526 | 'required' => true, |
| 527 | 527 | ), |
| 528 | 528 | ), |
| 529 | - ),'delete' => array( |
|
| 529 | + ), 'delete' => array( |
|
| 530 | 530 | 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
| 531 | 531 | 'httpMethod' => 'DELETE', |
| 532 | 532 | 'parameters' => array( |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | 'required' => true, |
| 547 | 547 | ), |
| 548 | 548 | ), |
| 549 | - ),'get' => array( |
|
| 549 | + ), 'get' => array( |
|
| 550 | 550 | 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
| 551 | 551 | 'httpMethod' => 'GET', |
| 552 | 552 | 'parameters' => array( |
@@ -566,7 +566,7 @@ discard block |
||
| 566 | 566 | 'required' => true, |
| 567 | 567 | ), |
| 568 | 568 | ), |
| 569 | - ),'list' => array( |
|
| 569 | + ), 'list' => array( |
|
| 570 | 570 | 'path' => 'accounts/{accountId}/containers/{containerId}/triggers', |
| 571 | 571 | 'httpMethod' => 'GET', |
| 572 | 572 | 'parameters' => array( |
@@ -581,7 +581,7 @@ discard block |
||
| 581 | 581 | 'required' => true, |
| 582 | 582 | ), |
| 583 | 583 | ), |
| 584 | - ),'update' => array( |
|
| 584 | + ), 'update' => array( |
|
| 585 | 585 | 'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}', |
| 586 | 586 | 'httpMethod' => 'PUT', |
| 587 | 587 | 'parameters' => array( |
@@ -630,7 +630,7 @@ discard block |
||
| 630 | 630 | 'required' => true, |
| 631 | 631 | ), |
| 632 | 632 | ), |
| 633 | - ),'delete' => array( |
|
| 633 | + ), 'delete' => array( |
|
| 634 | 634 | 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
| 635 | 635 | 'httpMethod' => 'DELETE', |
| 636 | 636 | 'parameters' => array( |
@@ -650,7 +650,7 @@ discard block |
||
| 650 | 650 | 'required' => true, |
| 651 | 651 | ), |
| 652 | 652 | ), |
| 653 | - ),'get' => array( |
|
| 653 | + ), 'get' => array( |
|
| 654 | 654 | 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
| 655 | 655 | 'httpMethod' => 'GET', |
| 656 | 656 | 'parameters' => array( |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | 'required' => true, |
| 671 | 671 | ), |
| 672 | 672 | ), |
| 673 | - ),'list' => array( |
|
| 673 | + ), 'list' => array( |
|
| 674 | 674 | 'path' => 'accounts/{accountId}/containers/{containerId}/variables', |
| 675 | 675 | 'httpMethod' => 'GET', |
| 676 | 676 | 'parameters' => array( |
@@ -685,7 +685,7 @@ discard block |
||
| 685 | 685 | 'required' => true, |
| 686 | 686 | ), |
| 687 | 687 | ), |
| 688 | - ),'update' => array( |
|
| 688 | + ), 'update' => array( |
|
| 689 | 689 | 'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}', |
| 690 | 690 | 'httpMethod' => 'PUT', |
| 691 | 691 | 'parameters' => array( |
@@ -734,7 +734,7 @@ discard block |
||
| 734 | 734 | 'required' => true, |
| 735 | 735 | ), |
| 736 | 736 | ), |
| 737 | - ),'delete' => array( |
|
| 737 | + ), 'delete' => array( |
|
| 738 | 738 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
| 739 | 739 | 'httpMethod' => 'DELETE', |
| 740 | 740 | 'parameters' => array( |
@@ -754,7 +754,7 @@ discard block |
||
| 754 | 754 | 'required' => true, |
| 755 | 755 | ), |
| 756 | 756 | ), |
| 757 | - ),'get' => array( |
|
| 757 | + ), 'get' => array( |
|
| 758 | 758 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
| 759 | 759 | 'httpMethod' => 'GET', |
| 760 | 760 | 'parameters' => array( |
@@ -774,7 +774,7 @@ discard block |
||
| 774 | 774 | 'required' => true, |
| 775 | 775 | ), |
| 776 | 776 | ), |
| 777 | - ),'list' => array( |
|
| 777 | + ), 'list' => array( |
|
| 778 | 778 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions', |
| 779 | 779 | 'httpMethod' => 'GET', |
| 780 | 780 | 'parameters' => array( |
@@ -793,7 +793,7 @@ discard block |
||
| 793 | 793 | 'type' => 'boolean', |
| 794 | 794 | ), |
| 795 | 795 | ), |
| 796 | - ),'publish' => array( |
|
| 796 | + ), 'publish' => array( |
|
| 797 | 797 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish', |
| 798 | 798 | 'httpMethod' => 'POST', |
| 799 | 799 | 'parameters' => array( |
@@ -817,7 +817,7 @@ discard block |
||
| 817 | 817 | 'type' => 'string', |
| 818 | 818 | ), |
| 819 | 819 | ), |
| 820 | - ),'restore' => array( |
|
| 820 | + ), 'restore' => array( |
|
| 821 | 821 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore', |
| 822 | 822 | 'httpMethod' => 'POST', |
| 823 | 823 | 'parameters' => array( |
@@ -837,7 +837,7 @@ discard block |
||
| 837 | 837 | 'required' => true, |
| 838 | 838 | ), |
| 839 | 839 | ), |
| 840 | - ),'undelete' => array( |
|
| 840 | + ), 'undelete' => array( |
|
| 841 | 841 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete', |
| 842 | 842 | 'httpMethod' => 'POST', |
| 843 | 843 | 'parameters' => array( |
@@ -857,7 +857,7 @@ discard block |
||
| 857 | 857 | 'required' => true, |
| 858 | 858 | ), |
| 859 | 859 | ), |
| 860 | - ),'update' => array( |
|
| 860 | + ), 'update' => array( |
|
| 861 | 861 | 'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}', |
| 862 | 862 | 'httpMethod' => 'PUT', |
| 863 | 863 | 'parameters' => array( |
@@ -901,7 +901,7 @@ discard block |
||
| 901 | 901 | 'required' => true, |
| 902 | 902 | ), |
| 903 | 903 | ), |
| 904 | - ),'delete' => array( |
|
| 904 | + ), 'delete' => array( |
|
| 905 | 905 | 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
| 906 | 906 | 'httpMethod' => 'DELETE', |
| 907 | 907 | 'parameters' => array( |
@@ -916,7 +916,7 @@ discard block |
||
| 916 | 916 | 'required' => true, |
| 917 | 917 | ), |
| 918 | 918 | ), |
| 919 | - ),'get' => array( |
|
| 919 | + ), 'get' => array( |
|
| 920 | 920 | 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
| 921 | 921 | 'httpMethod' => 'GET', |
| 922 | 922 | 'parameters' => array( |
@@ -931,7 +931,7 @@ discard block |
||
| 931 | 931 | 'required' => true, |
| 932 | 932 | ), |
| 933 | 933 | ), |
| 934 | - ),'list' => array( |
|
| 934 | + ), 'list' => array( |
|
| 935 | 935 | 'path' => 'accounts/{accountId}/permissions', |
| 936 | 936 | 'httpMethod' => 'GET', |
| 937 | 937 | 'parameters' => array( |
@@ -941,7 +941,7 @@ discard block |
||
| 941 | 941 | 'required' => true, |
| 942 | 942 | ), |
| 943 | 943 | ), |
| 944 | - ),'update' => array( |
|
| 944 | + ), 'update' => array( |
|
| 945 | 945 | 'path' => 'accounts/{accountId}/permissions/{permissionId}', |
| 946 | 946 | 'httpMethod' => 'PUT', |
| 947 | 947 | 'parameters' => array( |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | /** View and manage your data across Google Cloud Platform services. */ |
| 38 | 38 | const CLOUD_PLATFORM = |
| 39 | - "https://www.googleapis.com/auth/cloud-platform"; |
|
| 39 | + "https://www.googleapis.com/auth/cloud-platform"; |
|
| 40 | 40 | |
| 41 | 41 | public $projects; |
| 42 | 42 | |
@@ -48,83 +48,83 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function __construct(Google_Client $client) |
| 50 | 50 | { |
| 51 | - parent::__construct($client); |
|
| 52 | - $this->rootUrl = 'https://cloudresourcemanager.googleapis.com/'; |
|
| 53 | - $this->servicePath = ''; |
|
| 54 | - $this->version = 'v1beta1'; |
|
| 55 | - $this->serviceName = 'cloudresourcemanager'; |
|
| 51 | + parent::__construct($client); |
|
| 52 | + $this->rootUrl = 'https://cloudresourcemanager.googleapis.com/'; |
|
| 53 | + $this->servicePath = ''; |
|
| 54 | + $this->version = 'v1beta1'; |
|
| 55 | + $this->serviceName = 'cloudresourcemanager'; |
|
| 56 | 56 | |
| 57 | - $this->projects = new Google_Service_Cloudresourcemanager_Projects_Resource( |
|
| 58 | - $this, |
|
| 59 | - $this->serviceName, |
|
| 60 | - 'projects', |
|
| 61 | - array( |
|
| 62 | - 'methods' => array( |
|
| 63 | - 'create' => array( |
|
| 64 | - 'path' => 'v1beta1/projects', |
|
| 65 | - 'httpMethod' => 'POST', |
|
| 66 | - 'parameters' => array(), |
|
| 67 | - ),'delete' => array( |
|
| 68 | - 'path' => 'v1beta1/projects/{projectId}', |
|
| 69 | - 'httpMethod' => 'DELETE', |
|
| 70 | - 'parameters' => array( |
|
| 71 | - 'projectId' => array( |
|
| 72 | - 'location' => 'path', |
|
| 73 | - 'type' => 'string', |
|
| 74 | - 'required' => true, |
|
| 75 | - ), |
|
| 76 | - ), |
|
| 77 | - ),'get' => array( |
|
| 78 | - 'path' => 'v1beta1/projects/{projectId}', |
|
| 79 | - 'httpMethod' => 'GET', |
|
| 80 | - 'parameters' => array( |
|
| 81 | - 'projectId' => array( |
|
| 82 | - 'location' => 'path', |
|
| 83 | - 'type' => 'string', |
|
| 84 | - 'required' => true, |
|
| 85 | - ), |
|
| 86 | - ), |
|
| 87 | - ),'list' => array( |
|
| 88 | - 'path' => 'v1beta1/projects', |
|
| 89 | - 'httpMethod' => 'GET', |
|
| 90 | - 'parameters' => array( |
|
| 91 | - 'filter' => array( |
|
| 92 | - 'location' => 'query', |
|
| 93 | - 'type' => 'string', |
|
| 94 | - ), |
|
| 95 | - 'pageToken' => array( |
|
| 96 | - 'location' => 'query', |
|
| 97 | - 'type' => 'string', |
|
| 98 | - ), |
|
| 99 | - 'pageSize' => array( |
|
| 100 | - 'location' => 'query', |
|
| 101 | - 'type' => 'integer', |
|
| 102 | - ), |
|
| 103 | - ), |
|
| 104 | - ),'undelete' => array( |
|
| 105 | - 'path' => 'v1beta1/projects/{projectId}:undelete', |
|
| 106 | - 'httpMethod' => 'POST', |
|
| 107 | - 'parameters' => array( |
|
| 108 | - 'projectId' => array( |
|
| 109 | - 'location' => 'path', |
|
| 110 | - 'type' => 'string', |
|
| 111 | - 'required' => true, |
|
| 112 | - ), |
|
| 113 | - ), |
|
| 114 | - ),'update' => array( |
|
| 115 | - 'path' => 'v1beta1/projects/{projectId}', |
|
| 116 | - 'httpMethod' => 'PUT', |
|
| 117 | - 'parameters' => array( |
|
| 118 | - 'projectId' => array( |
|
| 119 | - 'location' => 'path', |
|
| 120 | - 'type' => 'string', |
|
| 121 | - 'required' => true, |
|
| 122 | - ), |
|
| 123 | - ), |
|
| 124 | - ), |
|
| 125 | - ) |
|
| 126 | - ) |
|
| 127 | - ); |
|
| 57 | + $this->projects = new Google_Service_Cloudresourcemanager_Projects_Resource( |
|
| 58 | + $this, |
|
| 59 | + $this->serviceName, |
|
| 60 | + 'projects', |
|
| 61 | + array( |
|
| 62 | + 'methods' => array( |
|
| 63 | + 'create' => array( |
|
| 64 | + 'path' => 'v1beta1/projects', |
|
| 65 | + 'httpMethod' => 'POST', |
|
| 66 | + 'parameters' => array(), |
|
| 67 | + ),'delete' => array( |
|
| 68 | + 'path' => 'v1beta1/projects/{projectId}', |
|
| 69 | + 'httpMethod' => 'DELETE', |
|
| 70 | + 'parameters' => array( |
|
| 71 | + 'projectId' => array( |
|
| 72 | + 'location' => 'path', |
|
| 73 | + 'type' => 'string', |
|
| 74 | + 'required' => true, |
|
| 75 | + ), |
|
| 76 | + ), |
|
| 77 | + ),'get' => array( |
|
| 78 | + 'path' => 'v1beta1/projects/{projectId}', |
|
| 79 | + 'httpMethod' => 'GET', |
|
| 80 | + 'parameters' => array( |
|
| 81 | + 'projectId' => array( |
|
| 82 | + 'location' => 'path', |
|
| 83 | + 'type' => 'string', |
|
| 84 | + 'required' => true, |
|
| 85 | + ), |
|
| 86 | + ), |
|
| 87 | + ),'list' => array( |
|
| 88 | + 'path' => 'v1beta1/projects', |
|
| 89 | + 'httpMethod' => 'GET', |
|
| 90 | + 'parameters' => array( |
|
| 91 | + 'filter' => array( |
|
| 92 | + 'location' => 'query', |
|
| 93 | + 'type' => 'string', |
|
| 94 | + ), |
|
| 95 | + 'pageToken' => array( |
|
| 96 | + 'location' => 'query', |
|
| 97 | + 'type' => 'string', |
|
| 98 | + ), |
|
| 99 | + 'pageSize' => array( |
|
| 100 | + 'location' => 'query', |
|
| 101 | + 'type' => 'integer', |
|
| 102 | + ), |
|
| 103 | + ), |
|
| 104 | + ),'undelete' => array( |
|
| 105 | + 'path' => 'v1beta1/projects/{projectId}:undelete', |
|
| 106 | + 'httpMethod' => 'POST', |
|
| 107 | + 'parameters' => array( |
|
| 108 | + 'projectId' => array( |
|
| 109 | + 'location' => 'path', |
|
| 110 | + 'type' => 'string', |
|
| 111 | + 'required' => true, |
|
| 112 | + ), |
|
| 113 | + ), |
|
| 114 | + ),'update' => array( |
|
| 115 | + 'path' => 'v1beta1/projects/{projectId}', |
|
| 116 | + 'httpMethod' => 'PUT', |
|
| 117 | + 'parameters' => array( |
|
| 118 | + 'projectId' => array( |
|
| 119 | + 'location' => 'path', |
|
| 120 | + 'type' => 'string', |
|
| 121 | + 'required' => true, |
|
| 122 | + ), |
|
| 123 | + ), |
|
| 124 | + ), |
|
| 125 | + ) |
|
| 126 | + ) |
|
| 127 | + ); |
|
| 128 | 128 | } |
| 129 | 129 | } |
| 130 | 130 | |
@@ -152,9 +152,9 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | public function create(Google_Service_Cloudresourcemanager_Project $postBody, $optParams = array()) |
| 154 | 154 | { |
| 155 | - $params = array('postBody' => $postBody); |
|
| 156 | - $params = array_merge($params, $optParams); |
|
| 157 | - return $this->call('create', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 155 | + $params = array('postBody' => $postBody); |
|
| 156 | + $params = array_merge($params, $optParams); |
|
| 157 | + return $this->call('create', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
@@ -190,9 +190,9 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | public function delete($projectId, $optParams = array()) |
| 192 | 192 | { |
| 193 | - $params = array('projectId' => $projectId); |
|
| 194 | - $params = array_merge($params, $optParams); |
|
| 195 | - return $this->call('delete', array($params), "Google_Service_Cloudresourcemanager_Empty"); |
|
| 193 | + $params = array('projectId' => $projectId); |
|
| 194 | + $params = array_merge($params, $optParams); |
|
| 195 | + return $this->call('delete', array($params), "Google_Service_Cloudresourcemanager_Empty"); |
|
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | /** |
@@ -207,9 +207,9 @@ discard block |
||
| 207 | 207 | */ |
| 208 | 208 | public function get($projectId, $optParams = array()) |
| 209 | 209 | { |
| 210 | - $params = array('projectId' => $projectId); |
|
| 211 | - $params = array_merge($params, $optParams); |
|
| 212 | - return $this->call('get', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 210 | + $params = array('projectId' => $projectId); |
|
| 211 | + $params = array_merge($params, $optParams); |
|
| 212 | + return $this->call('get', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | /** |
@@ -239,9 +239,9 @@ discard block |
||
| 239 | 239 | */ |
| 240 | 240 | public function listProjects($optParams = array()) |
| 241 | 241 | { |
| 242 | - $params = array(); |
|
| 243 | - $params = array_merge($params, $optParams); |
|
| 244 | - return $this->call('list', array($params), "Google_Service_Cloudresourcemanager_ListProjectsResponse"); |
|
| 242 | + $params = array(); |
|
| 243 | + $params = array_merge($params, $optParams); |
|
| 244 | + return $this->call('list', array($params), "Google_Service_Cloudresourcemanager_ListProjectsResponse"); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | /** |
@@ -262,9 +262,9 @@ discard block |
||
| 262 | 262 | */ |
| 263 | 263 | public function undelete($projectId, $optParams = array()) |
| 264 | 264 | { |
| 265 | - $params = array('projectId' => $projectId); |
|
| 266 | - $params = array_merge($params, $optParams); |
|
| 267 | - return $this->call('undelete', array($params), "Google_Service_Cloudresourcemanager_Empty"); |
|
| 265 | + $params = array('projectId' => $projectId); |
|
| 266 | + $params = array_merge($params, $optParams); |
|
| 267 | + return $this->call('undelete', array($params), "Google_Service_Cloudresourcemanager_Empty"); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | /** |
@@ -280,9 +280,9 @@ discard block |
||
| 280 | 280 | */ |
| 281 | 281 | public function update($projectId, Google_Service_Cloudresourcemanager_Project $postBody, $optParams = array()) |
| 282 | 282 | { |
| 283 | - $params = array('projectId' => $projectId, 'postBody' => $postBody); |
|
| 284 | - $params = array_merge($params, $optParams); |
|
| 285 | - return $this->call('update', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 283 | + $params = array('projectId' => $projectId, 'postBody' => $postBody); |
|
| 284 | + $params = array_merge($params, $optParams); |
|
| 285 | + return $this->call('update', array($params), "Google_Service_Cloudresourcemanager_Project"); |
|
| 286 | 286 | } |
| 287 | 287 | } |
| 288 | 288 | |
@@ -305,19 +305,19 @@ discard block |
||
| 305 | 305 | |
| 306 | 306 | public function setNextPageToken($nextPageToken) |
| 307 | 307 | { |
| 308 | - $this->nextPageToken = $nextPageToken; |
|
| 308 | + $this->nextPageToken = $nextPageToken; |
|
| 309 | 309 | } |
| 310 | 310 | public function getNextPageToken() |
| 311 | 311 | { |
| 312 | - return $this->nextPageToken; |
|
| 312 | + return $this->nextPageToken; |
|
| 313 | 313 | } |
| 314 | 314 | public function setProjects($projects) |
| 315 | 315 | { |
| 316 | - $this->projects = $projects; |
|
| 316 | + $this->projects = $projects; |
|
| 317 | 317 | } |
| 318 | 318 | public function getProjects() |
| 319 | 319 | { |
| 320 | - return $this->projects; |
|
| 320 | + return $this->projects; |
|
| 321 | 321 | } |
| 322 | 322 | } |
| 323 | 323 | |
@@ -335,51 +335,51 @@ discard block |
||
| 335 | 335 | |
| 336 | 336 | public function setCreateTime($createTime) |
| 337 | 337 | { |
| 338 | - $this->createTime = $createTime; |
|
| 338 | + $this->createTime = $createTime; |
|
| 339 | 339 | } |
| 340 | 340 | public function getCreateTime() |
| 341 | 341 | { |
| 342 | - return $this->createTime; |
|
| 342 | + return $this->createTime; |
|
| 343 | 343 | } |
| 344 | 344 | public function setLabels($labels) |
| 345 | 345 | { |
| 346 | - $this->labels = $labels; |
|
| 346 | + $this->labels = $labels; |
|
| 347 | 347 | } |
| 348 | 348 | public function getLabels() |
| 349 | 349 | { |
| 350 | - return $this->labels; |
|
| 350 | + return $this->labels; |
|
| 351 | 351 | } |
| 352 | 352 | public function setLifecycleState($lifecycleState) |
| 353 | 353 | { |
| 354 | - $this->lifecycleState = $lifecycleState; |
|
| 354 | + $this->lifecycleState = $lifecycleState; |
|
| 355 | 355 | } |
| 356 | 356 | public function getLifecycleState() |
| 357 | 357 | { |
| 358 | - return $this->lifecycleState; |
|
| 358 | + return $this->lifecycleState; |
|
| 359 | 359 | } |
| 360 | 360 | public function setName($name) |
| 361 | 361 | { |
| 362 | - $this->name = $name; |
|
| 362 | + $this->name = $name; |
|
| 363 | 363 | } |
| 364 | 364 | public function getName() |
| 365 | 365 | { |
| 366 | - return $this->name; |
|
| 366 | + return $this->name; |
|
| 367 | 367 | } |
| 368 | 368 | public function setProjectId($projectId) |
| 369 | 369 | { |
| 370 | - $this->projectId = $projectId; |
|
| 370 | + $this->projectId = $projectId; |
|
| 371 | 371 | } |
| 372 | 372 | public function getProjectId() |
| 373 | 373 | { |
| 374 | - return $this->projectId; |
|
| 374 | + return $this->projectId; |
|
| 375 | 375 | } |
| 376 | 376 | public function setProjectNumber($projectNumber) |
| 377 | 377 | { |
| 378 | - $this->projectNumber = $projectNumber; |
|
| 378 | + $this->projectNumber = $projectNumber; |
|
| 379 | 379 | } |
| 380 | 380 | public function getProjectNumber() |
| 381 | 381 | { |
| 382 | - return $this->projectNumber; |
|
| 382 | + return $this->projectNumber; |
|
| 383 | 383 | } |
| 384 | 384 | } |
| 385 | 385 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | 'path' => 'v1beta1/projects', |
| 65 | 65 | 'httpMethod' => 'POST', |
| 66 | 66 | 'parameters' => array(), |
| 67 | - ),'delete' => array( |
|
| 67 | + ), 'delete' => array( |
|
| 68 | 68 | 'path' => 'v1beta1/projects/{projectId}', |
| 69 | 69 | 'httpMethod' => 'DELETE', |
| 70 | 70 | 'parameters' => array( |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | 'required' => true, |
| 75 | 75 | ), |
| 76 | 76 | ), |
| 77 | - ),'get' => array( |
|
| 77 | + ), 'get' => array( |
|
| 78 | 78 | 'path' => 'v1beta1/projects/{projectId}', |
| 79 | 79 | 'httpMethod' => 'GET', |
| 80 | 80 | 'parameters' => array( |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | 'required' => true, |
| 85 | 85 | ), |
| 86 | 86 | ), |
| 87 | - ),'list' => array( |
|
| 87 | + ), 'list' => array( |
|
| 88 | 88 | 'path' => 'v1beta1/projects', |
| 89 | 89 | 'httpMethod' => 'GET', |
| 90 | 90 | 'parameters' => array( |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'type' => 'integer', |
| 102 | 102 | ), |
| 103 | 103 | ), |
| 104 | - ),'undelete' => array( |
|
| 104 | + ), 'undelete' => array( |
|
| 105 | 105 | 'path' => 'v1beta1/projects/{projectId}:undelete', |
| 106 | 106 | 'httpMethod' => 'POST', |
| 107 | 107 | 'parameters' => array( |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | 'required' => true, |
| 112 | 112 | ), |
| 113 | 113 | ), |
| 114 | - ),'update' => array( |
|
| 114 | + ), 'update' => array( |
|
| 115 | 115 | 'path' => 'v1beta1/projects/{projectId}', |
| 116 | 116 | 'httpMethod' => 'PUT', |
| 117 | 117 | 'parameters' => array( |
@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** View and manage your data across Google Cloud Platform services. */ |
| 34 | 34 | const CLOUD_PLATFORM = |
| 35 | - "https://www.googleapis.com/auth/cloud-platform"; |
|
| 35 | + "https://www.googleapis.com/auth/cloud-platform"; |
|
| 36 | 36 | /** View your email address. */ |
| 37 | 37 | const USERINFO_EMAIL = |
| 38 | - "https://www.googleapis.com/auth/userinfo.email"; |
|
| 38 | + "https://www.googleapis.com/auth/userinfo.email"; |
|
| 39 | 39 | |
| 40 | 40 | public $projects_jobs; |
| 41 | 41 | public $projects_jobs_messages; |
@@ -49,215 +49,215 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function __construct(Google_Client $client) |
| 51 | 51 | { |
| 52 | - parent::__construct($client); |
|
| 53 | - $this->rootUrl = 'https://dataflow.googleapis.com/'; |
|
| 54 | - $this->servicePath = 'v1b3/projects/'; |
|
| 55 | - $this->version = 'v1b3'; |
|
| 56 | - $this->serviceName = 'dataflow'; |
|
| 57 | - |
|
| 58 | - $this->projects_jobs = new Google_Service_Dataflow_ProjectsJobs_Resource( |
|
| 59 | - $this, |
|
| 60 | - $this->serviceName, |
|
| 61 | - 'jobs', |
|
| 62 | - array( |
|
| 63 | - 'methods' => array( |
|
| 64 | - 'create' => array( |
|
| 65 | - 'path' => '{projectId}/jobs', |
|
| 66 | - 'httpMethod' => 'POST', |
|
| 67 | - 'parameters' => array( |
|
| 68 | - 'projectId' => array( |
|
| 69 | - 'location' => 'path', |
|
| 70 | - 'type' => 'string', |
|
| 71 | - 'required' => true, |
|
| 72 | - ), |
|
| 73 | - 'replaceJobId' => array( |
|
| 74 | - 'location' => 'query', |
|
| 75 | - 'type' => 'string', |
|
| 76 | - ), |
|
| 77 | - 'view' => array( |
|
| 78 | - 'location' => 'query', |
|
| 79 | - 'type' => 'string', |
|
| 80 | - ), |
|
| 81 | - ), |
|
| 82 | - ),'get' => array( |
|
| 83 | - 'path' => '{projectId}/jobs/{jobId}', |
|
| 84 | - 'httpMethod' => 'GET', |
|
| 85 | - 'parameters' => array( |
|
| 86 | - 'projectId' => array( |
|
| 87 | - 'location' => 'path', |
|
| 88 | - 'type' => 'string', |
|
| 89 | - 'required' => true, |
|
| 90 | - ), |
|
| 91 | - 'jobId' => array( |
|
| 92 | - 'location' => 'path', |
|
| 93 | - 'type' => 'string', |
|
| 94 | - 'required' => true, |
|
| 95 | - ), |
|
| 96 | - 'view' => array( |
|
| 97 | - 'location' => 'query', |
|
| 98 | - 'type' => 'string', |
|
| 99 | - ), |
|
| 100 | - ), |
|
| 101 | - ),'getMetrics' => array( |
|
| 102 | - 'path' => '{projectId}/jobs/{jobId}/metrics', |
|
| 103 | - 'httpMethod' => 'GET', |
|
| 104 | - 'parameters' => array( |
|
| 105 | - 'projectId' => array( |
|
| 106 | - 'location' => 'path', |
|
| 107 | - 'type' => 'string', |
|
| 108 | - 'required' => true, |
|
| 109 | - ), |
|
| 110 | - 'jobId' => array( |
|
| 111 | - 'location' => 'path', |
|
| 112 | - 'type' => 'string', |
|
| 113 | - 'required' => true, |
|
| 114 | - ), |
|
| 115 | - 'startTime' => array( |
|
| 116 | - 'location' => 'query', |
|
| 117 | - 'type' => 'string', |
|
| 118 | - ), |
|
| 119 | - ), |
|
| 120 | - ),'list' => array( |
|
| 121 | - 'path' => '{projectId}/jobs', |
|
| 122 | - 'httpMethod' => 'GET', |
|
| 123 | - 'parameters' => array( |
|
| 124 | - 'projectId' => array( |
|
| 125 | - 'location' => 'path', |
|
| 126 | - 'type' => 'string', |
|
| 127 | - 'required' => true, |
|
| 128 | - ), |
|
| 129 | - 'pageToken' => array( |
|
| 130 | - 'location' => 'query', |
|
| 131 | - 'type' => 'string', |
|
| 132 | - ), |
|
| 133 | - 'view' => array( |
|
| 134 | - 'location' => 'query', |
|
| 135 | - 'type' => 'string', |
|
| 136 | - ), |
|
| 137 | - 'pageSize' => array( |
|
| 138 | - 'location' => 'query', |
|
| 139 | - 'type' => 'integer', |
|
| 140 | - ), |
|
| 141 | - ), |
|
| 142 | - ),'patch' => array( |
|
| 143 | - 'path' => '{projectId}/jobs/{jobId}', |
|
| 144 | - 'httpMethod' => 'PATCH', |
|
| 145 | - 'parameters' => array( |
|
| 146 | - 'projectId' => array( |
|
| 147 | - 'location' => 'path', |
|
| 148 | - 'type' => 'string', |
|
| 149 | - 'required' => true, |
|
| 150 | - ), |
|
| 151 | - 'jobId' => array( |
|
| 152 | - 'location' => 'path', |
|
| 153 | - 'type' => 'string', |
|
| 154 | - 'required' => true, |
|
| 155 | - ), |
|
| 156 | - ), |
|
| 157 | - ),'update' => array( |
|
| 158 | - 'path' => '{projectId}/jobs/{jobId}', |
|
| 159 | - 'httpMethod' => 'PUT', |
|
| 160 | - 'parameters' => array( |
|
| 161 | - 'projectId' => array( |
|
| 162 | - 'location' => 'path', |
|
| 163 | - 'type' => 'string', |
|
| 164 | - 'required' => true, |
|
| 165 | - ), |
|
| 166 | - 'jobId' => array( |
|
| 167 | - 'location' => 'path', |
|
| 168 | - 'type' => 'string', |
|
| 169 | - 'required' => true, |
|
| 170 | - ), |
|
| 171 | - ), |
|
| 172 | - ), |
|
| 173 | - ) |
|
| 174 | - ) |
|
| 175 | - ); |
|
| 176 | - $this->projects_jobs_messages = new Google_Service_Dataflow_ProjectsJobsMessages_Resource( |
|
| 177 | - $this, |
|
| 178 | - $this->serviceName, |
|
| 179 | - 'messages', |
|
| 180 | - array( |
|
| 181 | - 'methods' => array( |
|
| 182 | - 'list' => array( |
|
| 183 | - 'path' => '{projectId}/jobs/{jobId}/messages', |
|
| 184 | - 'httpMethod' => 'GET', |
|
| 185 | - 'parameters' => array( |
|
| 186 | - 'projectId' => array( |
|
| 187 | - 'location' => 'path', |
|
| 188 | - 'type' => 'string', |
|
| 189 | - 'required' => true, |
|
| 190 | - ), |
|
| 191 | - 'jobId' => array( |
|
| 192 | - 'location' => 'path', |
|
| 193 | - 'type' => 'string', |
|
| 194 | - 'required' => true, |
|
| 195 | - ), |
|
| 196 | - 'pageSize' => array( |
|
| 197 | - 'location' => 'query', |
|
| 198 | - 'type' => 'integer', |
|
| 199 | - ), |
|
| 200 | - 'pageToken' => array( |
|
| 201 | - 'location' => 'query', |
|
| 202 | - 'type' => 'string', |
|
| 203 | - ), |
|
| 204 | - 'startTime' => array( |
|
| 205 | - 'location' => 'query', |
|
| 206 | - 'type' => 'string', |
|
| 207 | - ), |
|
| 208 | - 'endTime' => array( |
|
| 209 | - 'location' => 'query', |
|
| 210 | - 'type' => 'string', |
|
| 211 | - ), |
|
| 212 | - 'minimumImportance' => array( |
|
| 213 | - 'location' => 'query', |
|
| 214 | - 'type' => 'string', |
|
| 215 | - ), |
|
| 216 | - ), |
|
| 217 | - ), |
|
| 218 | - ) |
|
| 219 | - ) |
|
| 220 | - ); |
|
| 221 | - $this->projects_jobs_workItems = new Google_Service_Dataflow_ProjectsJobsWorkItems_Resource( |
|
| 222 | - $this, |
|
| 223 | - $this->serviceName, |
|
| 224 | - 'workItems', |
|
| 225 | - array( |
|
| 226 | - 'methods' => array( |
|
| 227 | - 'lease' => array( |
|
| 228 | - 'path' => '{projectId}/jobs/{jobId}/workItems:lease', |
|
| 229 | - 'httpMethod' => 'POST', |
|
| 230 | - 'parameters' => array( |
|
| 231 | - 'projectId' => array( |
|
| 232 | - 'location' => 'path', |
|
| 233 | - 'type' => 'string', |
|
| 234 | - 'required' => true, |
|
| 235 | - ), |
|
| 236 | - 'jobId' => array( |
|
| 237 | - 'location' => 'path', |
|
| 238 | - 'type' => 'string', |
|
| 239 | - 'required' => true, |
|
| 240 | - ), |
|
| 241 | - ), |
|
| 242 | - ),'reportStatus' => array( |
|
| 243 | - 'path' => '{projectId}/jobs/{jobId}/workItems:reportStatus', |
|
| 244 | - 'httpMethod' => 'POST', |
|
| 245 | - 'parameters' => array( |
|
| 246 | - 'projectId' => array( |
|
| 247 | - 'location' => 'path', |
|
| 248 | - 'type' => 'string', |
|
| 249 | - 'required' => true, |
|
| 250 | - ), |
|
| 251 | - 'jobId' => array( |
|
| 252 | - 'location' => 'path', |
|
| 253 | - 'type' => 'string', |
|
| 254 | - 'required' => true, |
|
| 255 | - ), |
|
| 256 | - ), |
|
| 257 | - ), |
|
| 258 | - ) |
|
| 259 | - ) |
|
| 260 | - ); |
|
| 52 | + parent::__construct($client); |
|
| 53 | + $this->rootUrl = 'https://dataflow.googleapis.com/'; |
|
| 54 | + $this->servicePath = 'v1b3/projects/'; |
|
| 55 | + $this->version = 'v1b3'; |
|
| 56 | + $this->serviceName = 'dataflow'; |
|
| 57 | + |
|
| 58 | + $this->projects_jobs = new Google_Service_Dataflow_ProjectsJobs_Resource( |
|
| 59 | + $this, |
|
| 60 | + $this->serviceName, |
|
| 61 | + 'jobs', |
|
| 62 | + array( |
|
| 63 | + 'methods' => array( |
|
| 64 | + 'create' => array( |
|
| 65 | + 'path' => '{projectId}/jobs', |
|
| 66 | + 'httpMethod' => 'POST', |
|
| 67 | + 'parameters' => array( |
|
| 68 | + 'projectId' => array( |
|
| 69 | + 'location' => 'path', |
|
| 70 | + 'type' => 'string', |
|
| 71 | + 'required' => true, |
|
| 72 | + ), |
|
| 73 | + 'replaceJobId' => array( |
|
| 74 | + 'location' => 'query', |
|
| 75 | + 'type' => 'string', |
|
| 76 | + ), |
|
| 77 | + 'view' => array( |
|
| 78 | + 'location' => 'query', |
|
| 79 | + 'type' => 'string', |
|
| 80 | + ), |
|
| 81 | + ), |
|
| 82 | + ),'get' => array( |
|
| 83 | + 'path' => '{projectId}/jobs/{jobId}', |
|
| 84 | + 'httpMethod' => 'GET', |
|
| 85 | + 'parameters' => array( |
|
| 86 | + 'projectId' => array( |
|
| 87 | + 'location' => 'path', |
|
| 88 | + 'type' => 'string', |
|
| 89 | + 'required' => true, |
|
| 90 | + ), |
|
| 91 | + 'jobId' => array( |
|
| 92 | + 'location' => 'path', |
|
| 93 | + 'type' => 'string', |
|
| 94 | + 'required' => true, |
|
| 95 | + ), |
|
| 96 | + 'view' => array( |
|
| 97 | + 'location' => 'query', |
|
| 98 | + 'type' => 'string', |
|
| 99 | + ), |
|
| 100 | + ), |
|
| 101 | + ),'getMetrics' => array( |
|
| 102 | + 'path' => '{projectId}/jobs/{jobId}/metrics', |
|
| 103 | + 'httpMethod' => 'GET', |
|
| 104 | + 'parameters' => array( |
|
| 105 | + 'projectId' => array( |
|
| 106 | + 'location' => 'path', |
|
| 107 | + 'type' => 'string', |
|
| 108 | + 'required' => true, |
|
| 109 | + ), |
|
| 110 | + 'jobId' => array( |
|
| 111 | + 'location' => 'path', |
|
| 112 | + 'type' => 'string', |
|
| 113 | + 'required' => true, |
|
| 114 | + ), |
|
| 115 | + 'startTime' => array( |
|
| 116 | + 'location' => 'query', |
|
| 117 | + 'type' => 'string', |
|
| 118 | + ), |
|
| 119 | + ), |
|
| 120 | + ),'list' => array( |
|
| 121 | + 'path' => '{projectId}/jobs', |
|
| 122 | + 'httpMethod' => 'GET', |
|
| 123 | + 'parameters' => array( |
|
| 124 | + 'projectId' => array( |
|
| 125 | + 'location' => 'path', |
|
| 126 | + 'type' => 'string', |
|
| 127 | + 'required' => true, |
|
| 128 | + ), |
|
| 129 | + 'pageToken' => array( |
|
| 130 | + 'location' => 'query', |
|
| 131 | + 'type' => 'string', |
|
| 132 | + ), |
|
| 133 | + 'view' => array( |
|
| 134 | + 'location' => 'query', |
|
| 135 | + 'type' => 'string', |
|
| 136 | + ), |
|
| 137 | + 'pageSize' => array( |
|
| 138 | + 'location' => 'query', |
|
| 139 | + 'type' => 'integer', |
|
| 140 | + ), |
|
| 141 | + ), |
|
| 142 | + ),'patch' => array( |
|
| 143 | + 'path' => '{projectId}/jobs/{jobId}', |
|
| 144 | + 'httpMethod' => 'PATCH', |
|
| 145 | + 'parameters' => array( |
|
| 146 | + 'projectId' => array( |
|
| 147 | + 'location' => 'path', |
|
| 148 | + 'type' => 'string', |
|
| 149 | + 'required' => true, |
|
| 150 | + ), |
|
| 151 | + 'jobId' => array( |
|
| 152 | + 'location' => 'path', |
|
| 153 | + 'type' => 'string', |
|
| 154 | + 'required' => true, |
|
| 155 | + ), |
|
| 156 | + ), |
|
| 157 | + ),'update' => array( |
|
| 158 | + 'path' => '{projectId}/jobs/{jobId}', |
|
| 159 | + 'httpMethod' => 'PUT', |
|
| 160 | + 'parameters' => array( |
|
| 161 | + 'projectId' => array( |
|
| 162 | + 'location' => 'path', |
|
| 163 | + 'type' => 'string', |
|
| 164 | + 'required' => true, |
|
| 165 | + ), |
|
| 166 | + 'jobId' => array( |
|
| 167 | + 'location' => 'path', |
|
| 168 | + 'type' => 'string', |
|
| 169 | + 'required' => true, |
|
| 170 | + ), |
|
| 171 | + ), |
|
| 172 | + ), |
|
| 173 | + ) |
|
| 174 | + ) |
|
| 175 | + ); |
|
| 176 | + $this->projects_jobs_messages = new Google_Service_Dataflow_ProjectsJobsMessages_Resource( |
|
| 177 | + $this, |
|
| 178 | + $this->serviceName, |
|
| 179 | + 'messages', |
|
| 180 | + array( |
|
| 181 | + 'methods' => array( |
|
| 182 | + 'list' => array( |
|
| 183 | + 'path' => '{projectId}/jobs/{jobId}/messages', |
|
| 184 | + 'httpMethod' => 'GET', |
|
| 185 | + 'parameters' => array( |
|
| 186 | + 'projectId' => array( |
|
| 187 | + 'location' => 'path', |
|
| 188 | + 'type' => 'string', |
|
| 189 | + 'required' => true, |
|
| 190 | + ), |
|
| 191 | + 'jobId' => array( |
|
| 192 | + 'location' => 'path', |
|
| 193 | + 'type' => 'string', |
|
| 194 | + 'required' => true, |
|
| 195 | + ), |
|
| 196 | + 'pageSize' => array( |
|
| 197 | + 'location' => 'query', |
|
| 198 | + 'type' => 'integer', |
|
| 199 | + ), |
|
| 200 | + 'pageToken' => array( |
|
| 201 | + 'location' => 'query', |
|
| 202 | + 'type' => 'string', |
|
| 203 | + ), |
|
| 204 | + 'startTime' => array( |
|
| 205 | + 'location' => 'query', |
|
| 206 | + 'type' => 'string', |
|
| 207 | + ), |
|
| 208 | + 'endTime' => array( |
|
| 209 | + 'location' => 'query', |
|
| 210 | + 'type' => 'string', |
|
| 211 | + ), |
|
| 212 | + 'minimumImportance' => array( |
|
| 213 | + 'location' => 'query', |
|
| 214 | + 'type' => 'string', |
|
| 215 | + ), |
|
| 216 | + ), |
|
| 217 | + ), |
|
| 218 | + ) |
|
| 219 | + ) |
|
| 220 | + ); |
|
| 221 | + $this->projects_jobs_workItems = new Google_Service_Dataflow_ProjectsJobsWorkItems_Resource( |
|
| 222 | + $this, |
|
| 223 | + $this->serviceName, |
|
| 224 | + 'workItems', |
|
| 225 | + array( |
|
| 226 | + 'methods' => array( |
|
| 227 | + 'lease' => array( |
|
| 228 | + 'path' => '{projectId}/jobs/{jobId}/workItems:lease', |
|
| 229 | + 'httpMethod' => 'POST', |
|
| 230 | + 'parameters' => array( |
|
| 231 | + 'projectId' => array( |
|
| 232 | + 'location' => 'path', |
|
| 233 | + 'type' => 'string', |
|
| 234 | + 'required' => true, |
|
| 235 | + ), |
|
| 236 | + 'jobId' => array( |
|
| 237 | + 'location' => 'path', |
|
| 238 | + 'type' => 'string', |
|
| 239 | + 'required' => true, |
|
| 240 | + ), |
|
| 241 | + ), |
|
| 242 | + ),'reportStatus' => array( |
|
| 243 | + 'path' => '{projectId}/jobs/{jobId}/workItems:reportStatus', |
|
| 244 | + 'httpMethod' => 'POST', |
|
| 245 | + 'parameters' => array( |
|
| 246 | + 'projectId' => array( |
|
| 247 | + 'location' => 'path', |
|
| 248 | + 'type' => 'string', |
|
| 249 | + 'required' => true, |
|
| 250 | + ), |
|
| 251 | + 'jobId' => array( |
|
| 252 | + 'location' => 'path', |
|
| 253 | + 'type' => 'string', |
|
| 254 | + 'required' => true, |
|
| 255 | + ), |
|
| 256 | + ), |
|
| 257 | + ), |
|
| 258 | + ) |
|
| 259 | + ) |
|
| 260 | + ); |
|
| 261 | 261 | } |
| 262 | 262 | } |
| 263 | 263 | |
@@ -298,9 +298,9 @@ discard block |
||
| 298 | 298 | */ |
| 299 | 299 | public function create($projectId, Google_Service_Dataflow_Job $postBody, $optParams = array()) |
| 300 | 300 | { |
| 301 | - $params = array('projectId' => $projectId, 'postBody' => $postBody); |
|
| 302 | - $params = array_merge($params, $optParams); |
|
| 303 | - return $this->call('create', array($params), "Google_Service_Dataflow_Job"); |
|
| 301 | + $params = array('projectId' => $projectId, 'postBody' => $postBody); |
|
| 302 | + $params = array_merge($params, $optParams); |
|
| 303 | + return $this->call('create', array($params), "Google_Service_Dataflow_Job"); |
|
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | /** |
@@ -315,9 +315,9 @@ discard block |
||
| 315 | 315 | */ |
| 316 | 316 | public function get($projectId, $jobId, $optParams = array()) |
| 317 | 317 | { |
| 318 | - $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 319 | - $params = array_merge($params, $optParams); |
|
| 320 | - return $this->call('get', array($params), "Google_Service_Dataflow_Job"); |
|
| 318 | + $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 319 | + $params = array_merge($params, $optParams); |
|
| 320 | + return $this->call('get', array($params), "Google_Service_Dataflow_Job"); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -332,9 +332,9 @@ discard block |
||
| 332 | 332 | */ |
| 333 | 333 | public function getMetrics($projectId, $jobId, $optParams = array()) |
| 334 | 334 | { |
| 335 | - $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 336 | - $params = array_merge($params, $optParams); |
|
| 337 | - return $this->call('getMetrics', array($params), "Google_Service_Dataflow_JobMetrics"); |
|
| 335 | + $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 336 | + $params = array_merge($params, $optParams); |
|
| 337 | + return $this->call('getMetrics', array($params), "Google_Service_Dataflow_JobMetrics"); |
|
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | /** |
@@ -350,9 +350,9 @@ discard block |
||
| 350 | 350 | */ |
| 351 | 351 | public function listProjectsJobs($projectId, $optParams = array()) |
| 352 | 352 | { |
| 353 | - $params = array('projectId' => $projectId); |
|
| 354 | - $params = array_merge($params, $optParams); |
|
| 355 | - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobsResponse"); |
|
| 353 | + $params = array('projectId' => $projectId); |
|
| 354 | + $params = array_merge($params, $optParams); |
|
| 355 | + return $this->call('list', array($params), "Google_Service_Dataflow_ListJobsResponse"); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | /** |
@@ -367,9 +367,9 @@ discard block |
||
| 367 | 367 | */ |
| 368 | 368 | public function patch($projectId, $jobId, Google_Service_Dataflow_Job $postBody, $optParams = array()) |
| 369 | 369 | { |
| 370 | - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 371 | - $params = array_merge($params, $optParams); |
|
| 372 | - return $this->call('patch', array($params), "Google_Service_Dataflow_Job"); |
|
| 370 | + $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 371 | + $params = array_merge($params, $optParams); |
|
| 372 | + return $this->call('patch', array($params), "Google_Service_Dataflow_Job"); |
|
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | /** |
@@ -383,9 +383,9 @@ discard block |
||
| 383 | 383 | */ |
| 384 | 384 | public function update($projectId, $jobId, Google_Service_Dataflow_Job $postBody, $optParams = array()) |
| 385 | 385 | { |
| 386 | - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 387 | - $params = array_merge($params, $optParams); |
|
| 388 | - return $this->call('update', array($params), "Google_Service_Dataflow_Job"); |
|
| 386 | + $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 387 | + $params = array_merge($params, $optParams); |
|
| 388 | + return $this->call('update', array($params), "Google_Service_Dataflow_Job"); |
|
| 389 | 389 | } |
| 390 | 390 | } |
| 391 | 391 | |
@@ -416,9 +416,9 @@ discard block |
||
| 416 | 416 | */ |
| 417 | 417 | public function listProjectsJobsMessages($projectId, $jobId, $optParams = array()) |
| 418 | 418 | { |
| 419 | - $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 420 | - $params = array_merge($params, $optParams); |
|
| 421 | - return $this->call('list', array($params), "Google_Service_Dataflow_ListJobMessagesResponse"); |
|
| 419 | + $params = array('projectId' => $projectId, 'jobId' => $jobId); |
|
| 420 | + $params = array_merge($params, $optParams); |
|
| 421 | + return $this->call('list', array($params), "Google_Service_Dataflow_ListJobMessagesResponse"); |
|
| 422 | 422 | } |
| 423 | 423 | } |
| 424 | 424 | /** |
@@ -443,9 +443,9 @@ discard block |
||
| 443 | 443 | */ |
| 444 | 444 | public function lease($projectId, $jobId, Google_Service_Dataflow_LeaseWorkItemRequest $postBody, $optParams = array()) |
| 445 | 445 | { |
| 446 | - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 447 | - $params = array_merge($params, $optParams); |
|
| 448 | - return $this->call('lease', array($params), "Google_Service_Dataflow_LeaseWorkItemResponse"); |
|
| 446 | + $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 447 | + $params = array_merge($params, $optParams); |
|
| 448 | + return $this->call('lease', array($params), "Google_Service_Dataflow_LeaseWorkItemResponse"); |
|
| 449 | 449 | } |
| 450 | 450 | |
| 451 | 451 | /** |
@@ -460,9 +460,9 @@ discard block |
||
| 460 | 460 | */ |
| 461 | 461 | public function reportStatus($projectId, $jobId, Google_Service_Dataflow_ReportWorkItemStatusRequest $postBody, $optParams = array()) |
| 462 | 462 | { |
| 463 | - $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 464 | - $params = array_merge($params, $optParams); |
|
| 465 | - return $this->call('reportStatus', array($params), "Google_Service_Dataflow_ReportWorkItemStatusResponse"); |
|
| 463 | + $params = array('projectId' => $projectId, 'jobId' => $jobId, 'postBody' => $postBody); |
|
| 464 | + $params = array_merge($params, $optParams); |
|
| 465 | + return $this->call('reportStatus', array($params), "Google_Service_Dataflow_ReportWorkItemStatusResponse"); |
|
| 466 | 466 | } |
| 467 | 467 | } |
| 468 | 468 | |
@@ -481,27 +481,27 @@ discard block |
||
| 481 | 481 | |
| 482 | 482 | public function setPercentComplete($percentComplete) |
| 483 | 483 | { |
| 484 | - $this->percentComplete = $percentComplete; |
|
| 484 | + $this->percentComplete = $percentComplete; |
|
| 485 | 485 | } |
| 486 | 486 | public function getPercentComplete() |
| 487 | 487 | { |
| 488 | - return $this->percentComplete; |
|
| 488 | + return $this->percentComplete; |
|
| 489 | 489 | } |
| 490 | 490 | public function setPosition(Google_Service_Dataflow_Position $position) |
| 491 | 491 | { |
| 492 | - $this->position = $position; |
|
| 492 | + $this->position = $position; |
|
| 493 | 493 | } |
| 494 | 494 | public function getPosition() |
| 495 | 495 | { |
| 496 | - return $this->position; |
|
| 496 | + return $this->position; |
|
| 497 | 497 | } |
| 498 | 498 | public function setRemainingTime($remainingTime) |
| 499 | 499 | { |
| 500 | - $this->remainingTime = $remainingTime; |
|
| 500 | + $this->remainingTime = $remainingTime; |
|
| 501 | 501 | } |
| 502 | 502 | public function getRemainingTime() |
| 503 | 503 | { |
| 504 | - return $this->remainingTime; |
|
| 504 | + return $this->remainingTime; |
|
| 505 | 505 | } |
| 506 | 506 | } |
| 507 | 507 | |
@@ -515,19 +515,19 @@ discard block |
||
| 515 | 515 | |
| 516 | 516 | public function setAlgorithm($algorithm) |
| 517 | 517 | { |
| 518 | - $this->algorithm = $algorithm; |
|
| 518 | + $this->algorithm = $algorithm; |
|
| 519 | 519 | } |
| 520 | 520 | public function getAlgorithm() |
| 521 | 521 | { |
| 522 | - return $this->algorithm; |
|
| 522 | + return $this->algorithm; |
|
| 523 | 523 | } |
| 524 | 524 | public function setMaxNumWorkers($maxNumWorkers) |
| 525 | 525 | { |
| 526 | - $this->maxNumWorkers = $maxNumWorkers; |
|
| 526 | + $this->maxNumWorkers = $maxNumWorkers; |
|
| 527 | 527 | } |
| 528 | 528 | public function getMaxNumWorkers() |
| 529 | 529 | { |
| 530 | - return $this->maxNumWorkers; |
|
| 530 | + return $this->maxNumWorkers; |
|
| 531 | 531 | } |
| 532 | 532 | } |
| 533 | 533 | |
@@ -547,35 +547,35 @@ discard block |
||
| 547 | 547 | |
| 548 | 548 | public function setComputationId($computationId) |
| 549 | 549 | { |
| 550 | - $this->computationId = $computationId; |
|
| 550 | + $this->computationId = $computationId; |
|
| 551 | 551 | } |
| 552 | 552 | public function getComputationId() |
| 553 | 553 | { |
| 554 | - return $this->computationId; |
|
| 554 | + return $this->computationId; |
|
| 555 | 555 | } |
| 556 | 556 | public function setInputs($inputs) |
| 557 | 557 | { |
| 558 | - $this->inputs = $inputs; |
|
| 558 | + $this->inputs = $inputs; |
|
| 559 | 559 | } |
| 560 | 560 | public function getInputs() |
| 561 | 561 | { |
| 562 | - return $this->inputs; |
|
| 562 | + return $this->inputs; |
|
| 563 | 563 | } |
| 564 | 564 | public function setKeyRanges($keyRanges) |
| 565 | 565 | { |
| 566 | - $this->keyRanges = $keyRanges; |
|
| 566 | + $this->keyRanges = $keyRanges; |
|
| 567 | 567 | } |
| 568 | 568 | public function getKeyRanges() |
| 569 | 569 | { |
| 570 | - return $this->keyRanges; |
|
| 570 | + return $this->keyRanges; |
|
| 571 | 571 | } |
| 572 | 572 | public function setOutputs($outputs) |
| 573 | 573 | { |
| 574 | - $this->outputs = $outputs; |
|
| 574 | + $this->outputs = $outputs; |
|
| 575 | 575 | } |
| 576 | 576 | public function getOutputs() |
| 577 | 577 | { |
| 578 | - return $this->outputs; |
|
| 578 | + return $this->outputs; |
|
| 579 | 579 | } |
| 580 | 580 | } |
| 581 | 581 | |
@@ -590,19 +590,19 @@ discard block |
||
| 590 | 590 | |
| 591 | 591 | public function setDataDisks($dataDisks) |
| 592 | 592 | { |
| 593 | - $this->dataDisks = $dataDisks; |
|
| 593 | + $this->dataDisks = $dataDisks; |
|
| 594 | 594 | } |
| 595 | 595 | public function getDataDisks() |
| 596 | 596 | { |
| 597 | - return $this->dataDisks; |
|
| 597 | + return $this->dataDisks; |
|
| 598 | 598 | } |
| 599 | 599 | public function setVmInstance($vmInstance) |
| 600 | 600 | { |
| 601 | - $this->vmInstance = $vmInstance; |
|
| 601 | + $this->vmInstance = $vmInstance; |
|
| 602 | 602 | } |
| 603 | 603 | public function getVmInstance() |
| 604 | 604 | { |
| 605 | - return $this->vmInstance; |
|
| 605 | + return $this->vmInstance; |
|
| 606 | 606 | } |
| 607 | 607 | } |
| 608 | 608 | |
@@ -617,19 +617,19 @@ discard block |
||
| 617 | 617 | |
| 618 | 618 | public function setDerivationMode($derivationMode) |
| 619 | 619 | { |
| 620 | - $this->derivationMode = $derivationMode; |
|
| 620 | + $this->derivationMode = $derivationMode; |
|
| 621 | 621 | } |
| 622 | 622 | public function getDerivationMode() |
| 623 | 623 | { |
| 624 | - return $this->derivationMode; |
|
| 624 | + return $this->derivationMode; |
|
| 625 | 625 | } |
| 626 | 626 | public function setSource(Google_Service_Dataflow_Source $source) |
| 627 | 627 | { |
| 628 | - $this->source = $source; |
|
| 628 | + $this->source = $source; |
|
| 629 | 629 | } |
| 630 | 630 | public function getSource() |
| 631 | 631 | { |
| 632 | - return $this->source; |
|
| 632 | + return $this->source; |
|
| 633 | 633 | } |
| 634 | 634 | } |
| 635 | 635 | |
@@ -644,27 +644,27 @@ discard block |
||
| 644 | 644 | |
| 645 | 645 | public function setDiskType($diskType) |
| 646 | 646 | { |
| 647 | - $this->diskType = $diskType; |
|
| 647 | + $this->diskType = $diskType; |
|
| 648 | 648 | } |
| 649 | 649 | public function getDiskType() |
| 650 | 650 | { |
| 651 | - return $this->diskType; |
|
| 651 | + return $this->diskType; |
|
| 652 | 652 | } |
| 653 | 653 | public function setMountPoint($mountPoint) |
| 654 | 654 | { |
| 655 | - $this->mountPoint = $mountPoint; |
|
| 655 | + $this->mountPoint = $mountPoint; |
|
| 656 | 656 | } |
| 657 | 657 | public function getMountPoint() |
| 658 | 658 | { |
| 659 | - return $this->mountPoint; |
|
| 659 | + return $this->mountPoint; |
|
| 660 | 660 | } |
| 661 | 661 | public function setSizeGb($sizeGb) |
| 662 | 662 | { |
| 663 | - $this->sizeGb = $sizeGb; |
|
| 663 | + $this->sizeGb = $sizeGb; |
|
| 664 | 664 | } |
| 665 | 665 | public function getSizeGb() |
| 666 | 666 | { |
| 667 | - return $this->sizeGb; |
|
| 667 | + return $this->sizeGb; |
|
| 668 | 668 | } |
| 669 | 669 | } |
| 670 | 670 | |
@@ -680,19 +680,19 @@ discard block |
||
| 680 | 680 | |
| 681 | 681 | public function setPrimary(Google_Service_Dataflow_DerivedSource $primary) |
| 682 | 682 | { |
| 683 | - $this->primary = $primary; |
|
| 683 | + $this->primary = $primary; |
|
| 684 | 684 | } |
| 685 | 685 | public function getPrimary() |
| 686 | 686 | { |
| 687 | - return $this->primary; |
|
| 687 | + return $this->primary; |
|
| 688 | 688 | } |
| 689 | 689 | public function setResidual(Google_Service_Dataflow_DerivedSource $residual) |
| 690 | 690 | { |
| 691 | - $this->residual = $residual; |
|
| 691 | + $this->residual = $residual; |
|
| 692 | 692 | } |
| 693 | 693 | public function getResidual() |
| 694 | 694 | { |
| 695 | - return $this->residual; |
|
| 695 | + return $this->residual; |
|
| 696 | 696 | } |
| 697 | 697 | } |
| 698 | 698 | |
@@ -714,67 +714,67 @@ discard block |
||
| 714 | 714 | |
| 715 | 715 | public function setClusterManagerApiService($clusterManagerApiService) |
| 716 | 716 | { |
| 717 | - $this->clusterManagerApiService = $clusterManagerApiService; |
|
| 717 | + $this->clusterManagerApiService = $clusterManagerApiService; |
|
| 718 | 718 | } |
| 719 | 719 | public function getClusterManagerApiService() |
| 720 | 720 | { |
| 721 | - return $this->clusterManagerApiService; |
|
| 721 | + return $this->clusterManagerApiService; |
|
| 722 | 722 | } |
| 723 | 723 | public function setDataset($dataset) |
| 724 | 724 | { |
| 725 | - $this->dataset = $dataset; |
|
| 725 | + $this->dataset = $dataset; |
|
| 726 | 726 | } |
| 727 | 727 | public function getDataset() |
| 728 | 728 | { |
| 729 | - return $this->dataset; |
|
| 729 | + return $this->dataset; |
|
| 730 | 730 | } |
| 731 | 731 | public function setExperiments($experiments) |
| 732 | 732 | { |
| 733 | - $this->experiments = $experiments; |
|
| 733 | + $this->experiments = $experiments; |
|
| 734 | 734 | } |
| 735 | 735 | public function getExperiments() |
| 736 | 736 | { |
| 737 | - return $this->experiments; |
|
| 737 | + return $this->experiments; |
|
| 738 | 738 | } |
| 739 | 739 | public function setSdkPipelineOptions($sdkPipelineOptions) |
| 740 | 740 | { |
| 741 | - $this->sdkPipelineOptions = $sdkPipelineOptions; |
|
| 741 | + $this->sdkPipelineOptions = $sdkPipelineOptions; |
|
| 742 | 742 | } |
| 743 | 743 | public function getSdkPipelineOptions() |
| 744 | 744 | { |
| 745 | - return $this->sdkPipelineOptions; |
|
| 745 | + return $this->sdkPipelineOptions; |
|
| 746 | 746 | } |
| 747 | 747 | public function setTempStoragePrefix($tempStoragePrefix) |
| 748 | 748 | { |
| 749 | - $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 749 | + $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 750 | 750 | } |
| 751 | 751 | public function getTempStoragePrefix() |
| 752 | 752 | { |
| 753 | - return $this->tempStoragePrefix; |
|
| 753 | + return $this->tempStoragePrefix; |
|
| 754 | 754 | } |
| 755 | 755 | public function setUserAgent($userAgent) |
| 756 | 756 | { |
| 757 | - $this->userAgent = $userAgent; |
|
| 757 | + $this->userAgent = $userAgent; |
|
| 758 | 758 | } |
| 759 | 759 | public function getUserAgent() |
| 760 | 760 | { |
| 761 | - return $this->userAgent; |
|
| 761 | + return $this->userAgent; |
|
| 762 | 762 | } |
| 763 | 763 | public function setVersion($version) |
| 764 | 764 | { |
| 765 | - $this->version = $version; |
|
| 765 | + $this->version = $version; |
|
| 766 | 766 | } |
| 767 | 767 | public function getVersion() |
| 768 | 768 | { |
| 769 | - return $this->version; |
|
| 769 | + return $this->version; |
|
| 770 | 770 | } |
| 771 | 771 | public function setWorkerPools($workerPools) |
| 772 | 772 | { |
| 773 | - $this->workerPools = $workerPools; |
|
| 773 | + $this->workerPools = $workerPools; |
|
| 774 | 774 | } |
| 775 | 775 | public function getWorkerPools() |
| 776 | 776 | { |
| 777 | - return $this->workerPools; |
|
| 777 | + return $this->workerPools; |
|
| 778 | 778 | } |
| 779 | 779 | } |
| 780 | 780 | |
@@ -801,11 +801,11 @@ discard block |
||
| 801 | 801 | |
| 802 | 802 | public function setInputs($inputs) |
| 803 | 803 | { |
| 804 | - $this->inputs = $inputs; |
|
| 804 | + $this->inputs = $inputs; |
|
| 805 | 805 | } |
| 806 | 806 | public function getInputs() |
| 807 | 807 | { |
| 808 | - return $this->inputs; |
|
| 808 | + return $this->inputs; |
|
| 809 | 809 | } |
| 810 | 810 | } |
| 811 | 811 | |
@@ -819,19 +819,19 @@ discard block |
||
| 819 | 819 | |
| 820 | 820 | public function setOutputNum($outputNum) |
| 821 | 821 | { |
| 822 | - $this->outputNum = $outputNum; |
|
| 822 | + $this->outputNum = $outputNum; |
|
| 823 | 823 | } |
| 824 | 824 | public function getOutputNum() |
| 825 | 825 | { |
| 826 | - return $this->outputNum; |
|
| 826 | + return $this->outputNum; |
|
| 827 | 827 | } |
| 828 | 828 | public function setProducerInstructionIndex($producerInstructionIndex) |
| 829 | 829 | { |
| 830 | - $this->producerInstructionIndex = $producerInstructionIndex; |
|
| 830 | + $this->producerInstructionIndex = $producerInstructionIndex; |
|
| 831 | 831 | } |
| 832 | 832 | public function getProducerInstructionIndex() |
| 833 | 833 | { |
| 834 | - return $this->producerInstructionIndex; |
|
| 834 | + return $this->producerInstructionIndex; |
|
| 835 | 835 | } |
| 836 | 836 | } |
| 837 | 837 | |
@@ -845,19 +845,19 @@ discard block |
||
| 845 | 845 | |
| 846 | 846 | public function setCodec($codec) |
| 847 | 847 | { |
| 848 | - $this->codec = $codec; |
|
| 848 | + $this->codec = $codec; |
|
| 849 | 849 | } |
| 850 | 850 | public function getCodec() |
| 851 | 851 | { |
| 852 | - return $this->codec; |
|
| 852 | + return $this->codec; |
|
| 853 | 853 | } |
| 854 | 854 | public function setName($name) |
| 855 | 855 | { |
| 856 | - $this->name = $name; |
|
| 856 | + $this->name = $name; |
|
| 857 | 857 | } |
| 858 | 858 | public function getName() |
| 859 | 859 | { |
| 860 | - return $this->name; |
|
| 860 | + return $this->name; |
|
| 861 | 861 | } |
| 862 | 862 | } |
| 863 | 863 | |
@@ -891,115 +891,115 @@ discard block |
||
| 891 | 891 | |
| 892 | 892 | public function setClientRequestId($clientRequestId) |
| 893 | 893 | { |
| 894 | - $this->clientRequestId = $clientRequestId; |
|
| 894 | + $this->clientRequestId = $clientRequestId; |
|
| 895 | 895 | } |
| 896 | 896 | public function getClientRequestId() |
| 897 | 897 | { |
| 898 | - return $this->clientRequestId; |
|
| 898 | + return $this->clientRequestId; |
|
| 899 | 899 | } |
| 900 | 900 | public function setCreateTime($createTime) |
| 901 | 901 | { |
| 902 | - $this->createTime = $createTime; |
|
| 902 | + $this->createTime = $createTime; |
|
| 903 | 903 | } |
| 904 | 904 | public function getCreateTime() |
| 905 | 905 | { |
| 906 | - return $this->createTime; |
|
| 906 | + return $this->createTime; |
|
| 907 | 907 | } |
| 908 | 908 | public function setCurrentState($currentState) |
| 909 | 909 | { |
| 910 | - $this->currentState = $currentState; |
|
| 910 | + $this->currentState = $currentState; |
|
| 911 | 911 | } |
| 912 | 912 | public function getCurrentState() |
| 913 | 913 | { |
| 914 | - return $this->currentState; |
|
| 914 | + return $this->currentState; |
|
| 915 | 915 | } |
| 916 | 916 | public function setCurrentStateTime($currentStateTime) |
| 917 | 917 | { |
| 918 | - $this->currentStateTime = $currentStateTime; |
|
| 918 | + $this->currentStateTime = $currentStateTime; |
|
| 919 | 919 | } |
| 920 | 920 | public function getCurrentStateTime() |
| 921 | 921 | { |
| 922 | - return $this->currentStateTime; |
|
| 922 | + return $this->currentStateTime; |
|
| 923 | 923 | } |
| 924 | 924 | public function setEnvironment(Google_Service_Dataflow_Environment $environment) |
| 925 | 925 | { |
| 926 | - $this->environment = $environment; |
|
| 926 | + $this->environment = $environment; |
|
| 927 | 927 | } |
| 928 | 928 | public function getEnvironment() |
| 929 | 929 | { |
| 930 | - return $this->environment; |
|
| 930 | + return $this->environment; |
|
| 931 | 931 | } |
| 932 | 932 | public function setExecutionInfo(Google_Service_Dataflow_JobExecutionInfo $executionInfo) |
| 933 | 933 | { |
| 934 | - $this->executionInfo = $executionInfo; |
|
| 934 | + $this->executionInfo = $executionInfo; |
|
| 935 | 935 | } |
| 936 | 936 | public function getExecutionInfo() |
| 937 | 937 | { |
| 938 | - return $this->executionInfo; |
|
| 938 | + return $this->executionInfo; |
|
| 939 | 939 | } |
| 940 | 940 | public function setId($id) |
| 941 | 941 | { |
| 942 | - $this->id = $id; |
|
| 942 | + $this->id = $id; |
|
| 943 | 943 | } |
| 944 | 944 | public function getId() |
| 945 | 945 | { |
| 946 | - return $this->id; |
|
| 946 | + return $this->id; |
|
| 947 | 947 | } |
| 948 | 948 | public function setName($name) |
| 949 | 949 | { |
| 950 | - $this->name = $name; |
|
| 950 | + $this->name = $name; |
|
| 951 | 951 | } |
| 952 | 952 | public function getName() |
| 953 | 953 | { |
| 954 | - return $this->name; |
|
| 954 | + return $this->name; |
|
| 955 | 955 | } |
| 956 | 956 | public function setProjectId($projectId) |
| 957 | 957 | { |
| 958 | - $this->projectId = $projectId; |
|
| 958 | + $this->projectId = $projectId; |
|
| 959 | 959 | } |
| 960 | 960 | public function getProjectId() |
| 961 | 961 | { |
| 962 | - return $this->projectId; |
|
| 962 | + return $this->projectId; |
|
| 963 | 963 | } |
| 964 | 964 | public function setReplaceJobId($replaceJobId) |
| 965 | 965 | { |
| 966 | - $this->replaceJobId = $replaceJobId; |
|
| 966 | + $this->replaceJobId = $replaceJobId; |
|
| 967 | 967 | } |
| 968 | 968 | public function getReplaceJobId() |
| 969 | 969 | { |
| 970 | - return $this->replaceJobId; |
|
| 970 | + return $this->replaceJobId; |
|
| 971 | 971 | } |
| 972 | 972 | public function setRequestedState($requestedState) |
| 973 | 973 | { |
| 974 | - $this->requestedState = $requestedState; |
|
| 974 | + $this->requestedState = $requestedState; |
|
| 975 | 975 | } |
| 976 | 976 | public function getRequestedState() |
| 977 | 977 | { |
| 978 | - return $this->requestedState; |
|
| 978 | + return $this->requestedState; |
|
| 979 | 979 | } |
| 980 | 980 | public function setSteps($steps) |
| 981 | 981 | { |
| 982 | - $this->steps = $steps; |
|
| 982 | + $this->steps = $steps; |
|
| 983 | 983 | } |
| 984 | 984 | public function getSteps() |
| 985 | 985 | { |
| 986 | - return $this->steps; |
|
| 986 | + return $this->steps; |
|
| 987 | 987 | } |
| 988 | 988 | public function setTransformNameMapping($transformNameMapping) |
| 989 | 989 | { |
| 990 | - $this->transformNameMapping = $transformNameMapping; |
|
| 990 | + $this->transformNameMapping = $transformNameMapping; |
|
| 991 | 991 | } |
| 992 | 992 | public function getTransformNameMapping() |
| 993 | 993 | { |
| 994 | - return $this->transformNameMapping; |
|
| 994 | + return $this->transformNameMapping; |
|
| 995 | 995 | } |
| 996 | 996 | public function setType($type) |
| 997 | 997 | { |
| 998 | - $this->type = $type; |
|
| 998 | + $this->type = $type; |
|
| 999 | 999 | } |
| 1000 | 1000 | public function getType() |
| 1001 | 1001 | { |
| 1002 | - return $this->type; |
|
| 1002 | + return $this->type; |
|
| 1003 | 1003 | } |
| 1004 | 1004 | } |
| 1005 | 1005 | |
@@ -1013,11 +1013,11 @@ discard block |
||
| 1013 | 1013 | |
| 1014 | 1014 | public function setStages($stages) |
| 1015 | 1015 | { |
| 1016 | - $this->stages = $stages; |
|
| 1016 | + $this->stages = $stages; |
|
| 1017 | 1017 | } |
| 1018 | 1018 | public function getStages() |
| 1019 | 1019 | { |
| 1020 | - return $this->stages; |
|
| 1020 | + return $this->stages; |
|
| 1021 | 1021 | } |
| 1022 | 1022 | } |
| 1023 | 1023 | |
@@ -1035,11 +1035,11 @@ discard block |
||
| 1035 | 1035 | |
| 1036 | 1036 | public function setStepName($stepName) |
| 1037 | 1037 | { |
| 1038 | - $this->stepName = $stepName; |
|
| 1038 | + $this->stepName = $stepName; |
|
| 1039 | 1039 | } |
| 1040 | 1040 | public function getStepName() |
| 1041 | 1041 | { |
| 1042 | - return $this->stepName; |
|
| 1042 | + return $this->stepName; |
|
| 1043 | 1043 | } |
| 1044 | 1044 | } |
| 1045 | 1045 | |
@@ -1055,35 +1055,35 @@ discard block |
||
| 1055 | 1055 | |
| 1056 | 1056 | public function setId($id) |
| 1057 | 1057 | { |
| 1058 | - $this->id = $id; |
|
| 1058 | + $this->id = $id; |
|
| 1059 | 1059 | } |
| 1060 | 1060 | public function getId() |
| 1061 | 1061 | { |
| 1062 | - return $this->id; |
|
| 1062 | + return $this->id; |
|
| 1063 | 1063 | } |
| 1064 | 1064 | public function setMessageImportance($messageImportance) |
| 1065 | 1065 | { |
| 1066 | - $this->messageImportance = $messageImportance; |
|
| 1066 | + $this->messageImportance = $messageImportance; |
|
| 1067 | 1067 | } |
| 1068 | 1068 | public function getMessageImportance() |
| 1069 | 1069 | { |
| 1070 | - return $this->messageImportance; |
|
| 1070 | + return $this->messageImportance; |
|
| 1071 | 1071 | } |
| 1072 | 1072 | public function setMessageText($messageText) |
| 1073 | 1073 | { |
| 1074 | - $this->messageText = $messageText; |
|
| 1074 | + $this->messageText = $messageText; |
|
| 1075 | 1075 | } |
| 1076 | 1076 | public function getMessageText() |
| 1077 | 1077 | { |
| 1078 | - return $this->messageText; |
|
| 1078 | + return $this->messageText; |
|
| 1079 | 1079 | } |
| 1080 | 1080 | public function setTime($time) |
| 1081 | 1081 | { |
| 1082 | - $this->time = $time; |
|
| 1082 | + $this->time = $time; |
|
| 1083 | 1083 | } |
| 1084 | 1084 | public function getTime() |
| 1085 | 1085 | { |
| 1086 | - return $this->time; |
|
| 1086 | + return $this->time; |
|
| 1087 | 1087 | } |
| 1088 | 1088 | } |
| 1089 | 1089 | |
@@ -1099,19 +1099,19 @@ discard block |
||
| 1099 | 1099 | |
| 1100 | 1100 | public function setMetricTime($metricTime) |
| 1101 | 1101 | { |
| 1102 | - $this->metricTime = $metricTime; |
|
| 1102 | + $this->metricTime = $metricTime; |
|
| 1103 | 1103 | } |
| 1104 | 1104 | public function getMetricTime() |
| 1105 | 1105 | { |
| 1106 | - return $this->metricTime; |
|
| 1106 | + return $this->metricTime; |
|
| 1107 | 1107 | } |
| 1108 | 1108 | public function setMetrics($metrics) |
| 1109 | 1109 | { |
| 1110 | - $this->metrics = $metrics; |
|
| 1110 | + $this->metrics = $metrics; |
|
| 1111 | 1111 | } |
| 1112 | 1112 | public function getMetrics() |
| 1113 | 1113 | { |
| 1114 | - return $this->metrics; |
|
| 1114 | + return $this->metrics; |
|
| 1115 | 1115 | } |
| 1116 | 1116 | } |
| 1117 | 1117 | |
@@ -1130,27 +1130,27 @@ discard block |
||
| 1130 | 1130 | |
| 1131 | 1131 | public function setDataDisk($dataDisk) |
| 1132 | 1132 | { |
| 1133 | - $this->dataDisk = $dataDisk; |
|
| 1133 | + $this->dataDisk = $dataDisk; |
|
| 1134 | 1134 | } |
| 1135 | 1135 | public function getDataDisk() |
| 1136 | 1136 | { |
| 1137 | - return $this->dataDisk; |
|
| 1137 | + return $this->dataDisk; |
|
| 1138 | 1138 | } |
| 1139 | 1139 | public function setEnd($end) |
| 1140 | 1140 | { |
| 1141 | - $this->end = $end; |
|
| 1141 | + $this->end = $end; |
|
| 1142 | 1142 | } |
| 1143 | 1143 | public function getEnd() |
| 1144 | 1144 | { |
| 1145 | - return $this->end; |
|
| 1145 | + return $this->end; |
|
| 1146 | 1146 | } |
| 1147 | 1147 | public function setStart($start) |
| 1148 | 1148 | { |
| 1149 | - $this->start = $start; |
|
| 1149 | + $this->start = $start; |
|
| 1150 | 1150 | } |
| 1151 | 1151 | public function getStart() |
| 1152 | 1152 | { |
| 1153 | - return $this->start; |
|
| 1153 | + return $this->start; |
|
| 1154 | 1154 | } |
| 1155 | 1155 | } |
| 1156 | 1156 | |
@@ -1167,43 +1167,43 @@ discard block |
||
| 1167 | 1167 | |
| 1168 | 1168 | public function setDataDisk($dataDisk) |
| 1169 | 1169 | { |
| 1170 | - $this->dataDisk = $dataDisk; |
|
| 1170 | + $this->dataDisk = $dataDisk; |
|
| 1171 | 1171 | } |
| 1172 | 1172 | public function getDataDisk() |
| 1173 | 1173 | { |
| 1174 | - return $this->dataDisk; |
|
| 1174 | + return $this->dataDisk; |
|
| 1175 | 1175 | } |
| 1176 | 1176 | public function setDeliveryEndpoint($deliveryEndpoint) |
| 1177 | 1177 | { |
| 1178 | - $this->deliveryEndpoint = $deliveryEndpoint; |
|
| 1178 | + $this->deliveryEndpoint = $deliveryEndpoint; |
|
| 1179 | 1179 | } |
| 1180 | 1180 | public function getDeliveryEndpoint() |
| 1181 | 1181 | { |
| 1182 | - return $this->deliveryEndpoint; |
|
| 1182 | + return $this->deliveryEndpoint; |
|
| 1183 | 1183 | } |
| 1184 | 1184 | public function setEnd($end) |
| 1185 | 1185 | { |
| 1186 | - $this->end = $end; |
|
| 1186 | + $this->end = $end; |
|
| 1187 | 1187 | } |
| 1188 | 1188 | public function getEnd() |
| 1189 | 1189 | { |
| 1190 | - return $this->end; |
|
| 1190 | + return $this->end; |
|
| 1191 | 1191 | } |
| 1192 | 1192 | public function setPersistentDirectory($persistentDirectory) |
| 1193 | 1193 | { |
| 1194 | - $this->persistentDirectory = $persistentDirectory; |
|
| 1194 | + $this->persistentDirectory = $persistentDirectory; |
|
| 1195 | 1195 | } |
| 1196 | 1196 | public function getPersistentDirectory() |
| 1197 | 1197 | { |
| 1198 | - return $this->persistentDirectory; |
|
| 1198 | + return $this->persistentDirectory; |
|
| 1199 | 1199 | } |
| 1200 | 1200 | public function setStart($start) |
| 1201 | 1201 | { |
| 1202 | - $this->start = $start; |
|
| 1202 | + $this->start = $start; |
|
| 1203 | 1203 | } |
| 1204 | 1204 | public function getStart() |
| 1205 | 1205 | { |
| 1206 | - return $this->start; |
|
| 1206 | + return $this->start; |
|
| 1207 | 1207 | } |
| 1208 | 1208 | } |
| 1209 | 1209 | |
@@ -1221,43 +1221,43 @@ discard block |
||
| 1221 | 1221 | |
| 1222 | 1222 | public function setCurrentWorkerTime($currentWorkerTime) |
| 1223 | 1223 | { |
| 1224 | - $this->currentWorkerTime = $currentWorkerTime; |
|
| 1224 | + $this->currentWorkerTime = $currentWorkerTime; |
|
| 1225 | 1225 | } |
| 1226 | 1226 | public function getCurrentWorkerTime() |
| 1227 | 1227 | { |
| 1228 | - return $this->currentWorkerTime; |
|
| 1228 | + return $this->currentWorkerTime; |
|
| 1229 | 1229 | } |
| 1230 | 1230 | public function setRequestedLeaseDuration($requestedLeaseDuration) |
| 1231 | 1231 | { |
| 1232 | - $this->requestedLeaseDuration = $requestedLeaseDuration; |
|
| 1232 | + $this->requestedLeaseDuration = $requestedLeaseDuration; |
|
| 1233 | 1233 | } |
| 1234 | 1234 | public function getRequestedLeaseDuration() |
| 1235 | 1235 | { |
| 1236 | - return $this->requestedLeaseDuration; |
|
| 1236 | + return $this->requestedLeaseDuration; |
|
| 1237 | 1237 | } |
| 1238 | 1238 | public function setWorkItemTypes($workItemTypes) |
| 1239 | 1239 | { |
| 1240 | - $this->workItemTypes = $workItemTypes; |
|
| 1240 | + $this->workItemTypes = $workItemTypes; |
|
| 1241 | 1241 | } |
| 1242 | 1242 | public function getWorkItemTypes() |
| 1243 | 1243 | { |
| 1244 | - return $this->workItemTypes; |
|
| 1244 | + return $this->workItemTypes; |
|
| 1245 | 1245 | } |
| 1246 | 1246 | public function setWorkerCapabilities($workerCapabilities) |
| 1247 | 1247 | { |
| 1248 | - $this->workerCapabilities = $workerCapabilities; |
|
| 1248 | + $this->workerCapabilities = $workerCapabilities; |
|
| 1249 | 1249 | } |
| 1250 | 1250 | public function getWorkerCapabilities() |
| 1251 | 1251 | { |
| 1252 | - return $this->workerCapabilities; |
|
| 1252 | + return $this->workerCapabilities; |
|
| 1253 | 1253 | } |
| 1254 | 1254 | public function setWorkerId($workerId) |
| 1255 | 1255 | { |
| 1256 | - $this->workerId = $workerId; |
|
| 1256 | + $this->workerId = $workerId; |
|
| 1257 | 1257 | } |
| 1258 | 1258 | public function getWorkerId() |
| 1259 | 1259 | { |
| 1260 | - return $this->workerId; |
|
| 1260 | + return $this->workerId; |
|
| 1261 | 1261 | } |
| 1262 | 1262 | } |
| 1263 | 1263 | |
@@ -1272,11 +1272,11 @@ discard block |
||
| 1272 | 1272 | |
| 1273 | 1273 | public function setWorkItems($workItems) |
| 1274 | 1274 | { |
| 1275 | - $this->workItems = $workItems; |
|
| 1275 | + $this->workItems = $workItems; |
|
| 1276 | 1276 | } |
| 1277 | 1277 | public function getWorkItems() |
| 1278 | 1278 | { |
| 1279 | - return $this->workItems; |
|
| 1279 | + return $this->workItems; |
|
| 1280 | 1280 | } |
| 1281 | 1281 | } |
| 1282 | 1282 | |
@@ -1292,19 +1292,19 @@ discard block |
||
| 1292 | 1292 | |
| 1293 | 1293 | public function setJobMessages($jobMessages) |
| 1294 | 1294 | { |
| 1295 | - $this->jobMessages = $jobMessages; |
|
| 1295 | + $this->jobMessages = $jobMessages; |
|
| 1296 | 1296 | } |
| 1297 | 1297 | public function getJobMessages() |
| 1298 | 1298 | { |
| 1299 | - return $this->jobMessages; |
|
| 1299 | + return $this->jobMessages; |
|
| 1300 | 1300 | } |
| 1301 | 1301 | public function setNextPageToken($nextPageToken) |
| 1302 | 1302 | { |
| 1303 | - $this->nextPageToken = $nextPageToken; |
|
| 1303 | + $this->nextPageToken = $nextPageToken; |
|
| 1304 | 1304 | } |
| 1305 | 1305 | public function getNextPageToken() |
| 1306 | 1306 | { |
| 1307 | - return $this->nextPageToken; |
|
| 1307 | + return $this->nextPageToken; |
|
| 1308 | 1308 | } |
| 1309 | 1309 | } |
| 1310 | 1310 | |
@@ -1320,19 +1320,19 @@ discard block |
||
| 1320 | 1320 | |
| 1321 | 1321 | public function setJobs($jobs) |
| 1322 | 1322 | { |
| 1323 | - $this->jobs = $jobs; |
|
| 1323 | + $this->jobs = $jobs; |
|
| 1324 | 1324 | } |
| 1325 | 1325 | public function getJobs() |
| 1326 | 1326 | { |
| 1327 | - return $this->jobs; |
|
| 1327 | + return $this->jobs; |
|
| 1328 | 1328 | } |
| 1329 | 1329 | public function setNextPageToken($nextPageToken) |
| 1330 | 1330 | { |
| 1331 | - $this->nextPageToken = $nextPageToken; |
|
| 1331 | + $this->nextPageToken = $nextPageToken; |
|
| 1332 | 1332 | } |
| 1333 | 1333 | public function getNextPageToken() |
| 1334 | 1334 | { |
| 1335 | - return $this->nextPageToken; |
|
| 1335 | + return $this->nextPageToken; |
|
| 1336 | 1336 | } |
| 1337 | 1337 | } |
| 1338 | 1338 | |
@@ -1349,27 +1349,27 @@ discard block |
||
| 1349 | 1349 | |
| 1350 | 1350 | public function setInstructions($instructions) |
| 1351 | 1351 | { |
| 1352 | - $this->instructions = $instructions; |
|
| 1352 | + $this->instructions = $instructions; |
|
| 1353 | 1353 | } |
| 1354 | 1354 | public function getInstructions() |
| 1355 | 1355 | { |
| 1356 | - return $this->instructions; |
|
| 1356 | + return $this->instructions; |
|
| 1357 | 1357 | } |
| 1358 | 1358 | public function setStageName($stageName) |
| 1359 | 1359 | { |
| 1360 | - $this->stageName = $stageName; |
|
| 1360 | + $this->stageName = $stageName; |
|
| 1361 | 1361 | } |
| 1362 | 1362 | public function getStageName() |
| 1363 | 1363 | { |
| 1364 | - return $this->stageName; |
|
| 1364 | + return $this->stageName; |
|
| 1365 | 1365 | } |
| 1366 | 1366 | public function setSystemName($systemName) |
| 1367 | 1367 | { |
| 1368 | - $this->systemName = $systemName; |
|
| 1368 | + $this->systemName = $systemName; |
|
| 1369 | 1369 | } |
| 1370 | 1370 | public function getSystemName() |
| 1371 | 1371 | { |
| 1372 | - return $this->systemName; |
|
| 1372 | + return $this->systemName; |
|
| 1373 | 1373 | } |
| 1374 | 1374 | } |
| 1375 | 1375 | |
@@ -1384,27 +1384,27 @@ discard block |
||
| 1384 | 1384 | |
| 1385 | 1385 | public function setContext($context) |
| 1386 | 1386 | { |
| 1387 | - $this->context = $context; |
|
| 1387 | + $this->context = $context; |
|
| 1388 | 1388 | } |
| 1389 | 1389 | public function getContext() |
| 1390 | 1390 | { |
| 1391 | - return $this->context; |
|
| 1391 | + return $this->context; |
|
| 1392 | 1392 | } |
| 1393 | 1393 | public function setName($name) |
| 1394 | 1394 | { |
| 1395 | - $this->name = $name; |
|
| 1395 | + $this->name = $name; |
|
| 1396 | 1396 | } |
| 1397 | 1397 | public function getName() |
| 1398 | 1398 | { |
| 1399 | - return $this->name; |
|
| 1399 | + return $this->name; |
|
| 1400 | 1400 | } |
| 1401 | 1401 | public function setOrigin($origin) |
| 1402 | 1402 | { |
| 1403 | - $this->origin = $origin; |
|
| 1403 | + $this->origin = $origin; |
|
| 1404 | 1404 | } |
| 1405 | 1405 | public function getOrigin() |
| 1406 | 1406 | { |
| 1407 | - return $this->origin; |
|
| 1407 | + return $this->origin; |
|
| 1408 | 1408 | } |
| 1409 | 1409 | } |
| 1410 | 1410 | |
@@ -1430,75 +1430,75 @@ discard block |
||
| 1430 | 1430 | |
| 1431 | 1431 | public function setCumulative($cumulative) |
| 1432 | 1432 | { |
| 1433 | - $this->cumulative = $cumulative; |
|
| 1433 | + $this->cumulative = $cumulative; |
|
| 1434 | 1434 | } |
| 1435 | 1435 | public function getCumulative() |
| 1436 | 1436 | { |
| 1437 | - return $this->cumulative; |
|
| 1437 | + return $this->cumulative; |
|
| 1438 | 1438 | } |
| 1439 | 1439 | public function setInternal($internal) |
| 1440 | 1440 | { |
| 1441 | - $this->internal = $internal; |
|
| 1441 | + $this->internal = $internal; |
|
| 1442 | 1442 | } |
| 1443 | 1443 | public function getInternal() |
| 1444 | 1444 | { |
| 1445 | - return $this->internal; |
|
| 1445 | + return $this->internal; |
|
| 1446 | 1446 | } |
| 1447 | 1447 | public function setKind($kind) |
| 1448 | 1448 | { |
| 1449 | - $this->kind = $kind; |
|
| 1449 | + $this->kind = $kind; |
|
| 1450 | 1450 | } |
| 1451 | 1451 | public function getKind() |
| 1452 | 1452 | { |
| 1453 | - return $this->kind; |
|
| 1453 | + return $this->kind; |
|
| 1454 | 1454 | } |
| 1455 | 1455 | public function setMeanCount($meanCount) |
| 1456 | 1456 | { |
| 1457 | - $this->meanCount = $meanCount; |
|
| 1457 | + $this->meanCount = $meanCount; |
|
| 1458 | 1458 | } |
| 1459 | 1459 | public function getMeanCount() |
| 1460 | 1460 | { |
| 1461 | - return $this->meanCount; |
|
| 1461 | + return $this->meanCount; |
|
| 1462 | 1462 | } |
| 1463 | 1463 | public function setMeanSum($meanSum) |
| 1464 | 1464 | { |
| 1465 | - $this->meanSum = $meanSum; |
|
| 1465 | + $this->meanSum = $meanSum; |
|
| 1466 | 1466 | } |
| 1467 | 1467 | public function getMeanSum() |
| 1468 | 1468 | { |
| 1469 | - return $this->meanSum; |
|
| 1469 | + return $this->meanSum; |
|
| 1470 | 1470 | } |
| 1471 | 1471 | public function setName(Google_Service_Dataflow_MetricStructuredName $name) |
| 1472 | 1472 | { |
| 1473 | - $this->name = $name; |
|
| 1473 | + $this->name = $name; |
|
| 1474 | 1474 | } |
| 1475 | 1475 | public function getName() |
| 1476 | 1476 | { |
| 1477 | - return $this->name; |
|
| 1477 | + return $this->name; |
|
| 1478 | 1478 | } |
| 1479 | 1479 | public function setScalar($scalar) |
| 1480 | 1480 | { |
| 1481 | - $this->scalar = $scalar; |
|
| 1481 | + $this->scalar = $scalar; |
|
| 1482 | 1482 | } |
| 1483 | 1483 | public function getScalar() |
| 1484 | 1484 | { |
| 1485 | - return $this->scalar; |
|
| 1485 | + return $this->scalar; |
|
| 1486 | 1486 | } |
| 1487 | 1487 | public function setSet($set) |
| 1488 | 1488 | { |
| 1489 | - $this->set = $set; |
|
| 1489 | + $this->set = $set; |
|
| 1490 | 1490 | } |
| 1491 | 1491 | public function getSet() |
| 1492 | 1492 | { |
| 1493 | - return $this->set; |
|
| 1493 | + return $this->set; |
|
| 1494 | 1494 | } |
| 1495 | 1495 | public function setUpdateTime($updateTime) |
| 1496 | 1496 | { |
| 1497 | - $this->updateTime = $updateTime; |
|
| 1497 | + $this->updateTime = $updateTime; |
|
| 1498 | 1498 | } |
| 1499 | 1499 | public function getUpdateTime() |
| 1500 | 1500 | { |
| 1501 | - return $this->updateTime; |
|
| 1501 | + return $this->updateTime; |
|
| 1502 | 1502 | } |
| 1503 | 1503 | } |
| 1504 | 1504 | |
@@ -1511,11 +1511,11 @@ discard block |
||
| 1511 | 1511 | |
| 1512 | 1512 | public function setDataDisk($dataDisk) |
| 1513 | 1513 | { |
| 1514 | - $this->dataDisk = $dataDisk; |
|
| 1514 | + $this->dataDisk = $dataDisk; |
|
| 1515 | 1515 | } |
| 1516 | 1516 | public function getDataDisk() |
| 1517 | 1517 | { |
| 1518 | - return $this->dataDisk; |
|
| 1518 | + return $this->dataDisk; |
|
| 1519 | 1519 | } |
| 1520 | 1520 | } |
| 1521 | 1521 | |
@@ -1528,11 +1528,11 @@ discard block |
||
| 1528 | 1528 | |
| 1529 | 1529 | public function setTag($tag) |
| 1530 | 1530 | { |
| 1531 | - $this->tag = $tag; |
|
| 1531 | + $this->tag = $tag; |
|
| 1532 | 1532 | } |
| 1533 | 1533 | public function getTag() |
| 1534 | 1534 | { |
| 1535 | - return $this->tag; |
|
| 1535 | + return $this->tag; |
|
| 1536 | 1536 | } |
| 1537 | 1537 | } |
| 1538 | 1538 | |
@@ -1546,19 +1546,19 @@ discard block |
||
| 1546 | 1546 | |
| 1547 | 1547 | public function setLocation($location) |
| 1548 | 1548 | { |
| 1549 | - $this->location = $location; |
|
| 1549 | + $this->location = $location; |
|
| 1550 | 1550 | } |
| 1551 | 1551 | public function getLocation() |
| 1552 | 1552 | { |
| 1553 | - return $this->location; |
|
| 1553 | + return $this->location; |
|
| 1554 | 1554 | } |
| 1555 | 1555 | public function setName($name) |
| 1556 | 1556 | { |
| 1557 | - $this->name = $name; |
|
| 1557 | + $this->name = $name; |
|
| 1558 | 1558 | } |
| 1559 | 1559 | public function getName() |
| 1560 | 1560 | { |
| 1561 | - return $this->name; |
|
| 1561 | + return $this->name; |
|
| 1562 | 1562 | } |
| 1563 | 1563 | } |
| 1564 | 1564 | |
@@ -1579,43 +1579,43 @@ discard block |
||
| 1579 | 1579 | |
| 1580 | 1580 | public function setInput(Google_Service_Dataflow_InstructionInput $input) |
| 1581 | 1581 | { |
| 1582 | - $this->input = $input; |
|
| 1582 | + $this->input = $input; |
|
| 1583 | 1583 | } |
| 1584 | 1584 | public function getInput() |
| 1585 | 1585 | { |
| 1586 | - return $this->input; |
|
| 1586 | + return $this->input; |
|
| 1587 | 1587 | } |
| 1588 | 1588 | public function setMultiOutputInfos($multiOutputInfos) |
| 1589 | 1589 | { |
| 1590 | - $this->multiOutputInfos = $multiOutputInfos; |
|
| 1590 | + $this->multiOutputInfos = $multiOutputInfos; |
|
| 1591 | 1591 | } |
| 1592 | 1592 | public function getMultiOutputInfos() |
| 1593 | 1593 | { |
| 1594 | - return $this->multiOutputInfos; |
|
| 1594 | + return $this->multiOutputInfos; |
|
| 1595 | 1595 | } |
| 1596 | 1596 | public function setNumOutputs($numOutputs) |
| 1597 | 1597 | { |
| 1598 | - $this->numOutputs = $numOutputs; |
|
| 1598 | + $this->numOutputs = $numOutputs; |
|
| 1599 | 1599 | } |
| 1600 | 1600 | public function getNumOutputs() |
| 1601 | 1601 | { |
| 1602 | - return $this->numOutputs; |
|
| 1602 | + return $this->numOutputs; |
|
| 1603 | 1603 | } |
| 1604 | 1604 | public function setSideInputs($sideInputs) |
| 1605 | 1605 | { |
| 1606 | - $this->sideInputs = $sideInputs; |
|
| 1606 | + $this->sideInputs = $sideInputs; |
|
| 1607 | 1607 | } |
| 1608 | 1608 | public function getSideInputs() |
| 1609 | 1609 | { |
| 1610 | - return $this->sideInputs; |
|
| 1610 | + return $this->sideInputs; |
|
| 1611 | 1611 | } |
| 1612 | 1612 | public function setUserFn($userFn) |
| 1613 | 1613 | { |
| 1614 | - $this->userFn = $userFn; |
|
| 1614 | + $this->userFn = $userFn; |
|
| 1615 | 1615 | } |
| 1616 | 1616 | public function getUserFn() |
| 1617 | 1617 | { |
| 1618 | - return $this->userFn; |
|
| 1618 | + return $this->userFn; |
|
| 1619 | 1619 | } |
| 1620 | 1620 | } |
| 1621 | 1621 | |
@@ -1646,67 +1646,67 @@ discard block |
||
| 1646 | 1646 | |
| 1647 | 1647 | public function setFlatten(Google_Service_Dataflow_FlattenInstruction $flatten) |
| 1648 | 1648 | { |
| 1649 | - $this->flatten = $flatten; |
|
| 1649 | + $this->flatten = $flatten; |
|
| 1650 | 1650 | } |
| 1651 | 1651 | public function getFlatten() |
| 1652 | 1652 | { |
| 1653 | - return $this->flatten; |
|
| 1653 | + return $this->flatten; |
|
| 1654 | 1654 | } |
| 1655 | 1655 | public function setName($name) |
| 1656 | 1656 | { |
| 1657 | - $this->name = $name; |
|
| 1657 | + $this->name = $name; |
|
| 1658 | 1658 | } |
| 1659 | 1659 | public function getName() |
| 1660 | 1660 | { |
| 1661 | - return $this->name; |
|
| 1661 | + return $this->name; |
|
| 1662 | 1662 | } |
| 1663 | 1663 | public function setOutputs($outputs) |
| 1664 | 1664 | { |
| 1665 | - $this->outputs = $outputs; |
|
| 1665 | + $this->outputs = $outputs; |
|
| 1666 | 1666 | } |
| 1667 | 1667 | public function getOutputs() |
| 1668 | 1668 | { |
| 1669 | - return $this->outputs; |
|
| 1669 | + return $this->outputs; |
|
| 1670 | 1670 | } |
| 1671 | 1671 | public function setParDo(Google_Service_Dataflow_ParDoInstruction $parDo) |
| 1672 | 1672 | { |
| 1673 | - $this->parDo = $parDo; |
|
| 1673 | + $this->parDo = $parDo; |
|
| 1674 | 1674 | } |
| 1675 | 1675 | public function getParDo() |
| 1676 | 1676 | { |
| 1677 | - return $this->parDo; |
|
| 1677 | + return $this->parDo; |
|
| 1678 | 1678 | } |
| 1679 | 1679 | public function setPartialGroupByKey(Google_Service_Dataflow_PartialGroupByKeyInstruction $partialGroupByKey) |
| 1680 | 1680 | { |
| 1681 | - $this->partialGroupByKey = $partialGroupByKey; |
|
| 1681 | + $this->partialGroupByKey = $partialGroupByKey; |
|
| 1682 | 1682 | } |
| 1683 | 1683 | public function getPartialGroupByKey() |
| 1684 | 1684 | { |
| 1685 | - return $this->partialGroupByKey; |
|
| 1685 | + return $this->partialGroupByKey; |
|
| 1686 | 1686 | } |
| 1687 | 1687 | public function setRead(Google_Service_Dataflow_ReadInstruction $read) |
| 1688 | 1688 | { |
| 1689 | - $this->read = $read; |
|
| 1689 | + $this->read = $read; |
|
| 1690 | 1690 | } |
| 1691 | 1691 | public function getRead() |
| 1692 | 1692 | { |
| 1693 | - return $this->read; |
|
| 1693 | + return $this->read; |
|
| 1694 | 1694 | } |
| 1695 | 1695 | public function setSystemName($systemName) |
| 1696 | 1696 | { |
| 1697 | - $this->systemName = $systemName; |
|
| 1697 | + $this->systemName = $systemName; |
|
| 1698 | 1698 | } |
| 1699 | 1699 | public function getSystemName() |
| 1700 | 1700 | { |
| 1701 | - return $this->systemName; |
|
| 1701 | + return $this->systemName; |
|
| 1702 | 1702 | } |
| 1703 | 1703 | public function setWrite(Google_Service_Dataflow_WriteInstruction $write) |
| 1704 | 1704 | { |
| 1705 | - $this->write = $write; |
|
| 1705 | + $this->write = $write; |
|
| 1706 | 1706 | } |
| 1707 | 1707 | public function getWrite() |
| 1708 | 1708 | { |
| 1709 | - return $this->write; |
|
| 1709 | + return $this->write; |
|
| 1710 | 1710 | } |
| 1711 | 1711 | } |
| 1712 | 1712 | |
@@ -1722,27 +1722,27 @@ discard block |
||
| 1722 | 1722 | |
| 1723 | 1723 | public function setInput(Google_Service_Dataflow_InstructionInput $input) |
| 1724 | 1724 | { |
| 1725 | - $this->input = $input; |
|
| 1725 | + $this->input = $input; |
|
| 1726 | 1726 | } |
| 1727 | 1727 | public function getInput() |
| 1728 | 1728 | { |
| 1729 | - return $this->input; |
|
| 1729 | + return $this->input; |
|
| 1730 | 1730 | } |
| 1731 | 1731 | public function setInputElementCodec($inputElementCodec) |
| 1732 | 1732 | { |
| 1733 | - $this->inputElementCodec = $inputElementCodec; |
|
| 1733 | + $this->inputElementCodec = $inputElementCodec; |
|
| 1734 | 1734 | } |
| 1735 | 1735 | public function getInputElementCodec() |
| 1736 | 1736 | { |
| 1737 | - return $this->inputElementCodec; |
|
| 1737 | + return $this->inputElementCodec; |
|
| 1738 | 1738 | } |
| 1739 | 1739 | public function setValueCombiningFn($valueCombiningFn) |
| 1740 | 1740 | { |
| 1741 | - $this->valueCombiningFn = $valueCombiningFn; |
|
| 1741 | + $this->valueCombiningFn = $valueCombiningFn; |
|
| 1742 | 1742 | } |
| 1743 | 1743 | public function getValueCombiningFn() |
| 1744 | 1744 | { |
| 1745 | - return $this->valueCombiningFn; |
|
| 1745 | + return $this->valueCombiningFn; |
|
| 1746 | 1746 | } |
| 1747 | 1747 | } |
| 1748 | 1748 | |
@@ -1767,43 +1767,43 @@ discard block |
||
| 1767 | 1767 | |
| 1768 | 1768 | public function setByteOffset($byteOffset) |
| 1769 | 1769 | { |
| 1770 | - $this->byteOffset = $byteOffset; |
|
| 1770 | + $this->byteOffset = $byteOffset; |
|
| 1771 | 1771 | } |
| 1772 | 1772 | public function getByteOffset() |
| 1773 | 1773 | { |
| 1774 | - return $this->byteOffset; |
|
| 1774 | + return $this->byteOffset; |
|
| 1775 | 1775 | } |
| 1776 | 1776 | public function setEnd($end) |
| 1777 | 1777 | { |
| 1778 | - $this->end = $end; |
|
| 1778 | + $this->end = $end; |
|
| 1779 | 1779 | } |
| 1780 | 1780 | public function getEnd() |
| 1781 | 1781 | { |
| 1782 | - return $this->end; |
|
| 1782 | + return $this->end; |
|
| 1783 | 1783 | } |
| 1784 | 1784 | public function setKey($key) |
| 1785 | 1785 | { |
| 1786 | - $this->key = $key; |
|
| 1786 | + $this->key = $key; |
|
| 1787 | 1787 | } |
| 1788 | 1788 | public function getKey() |
| 1789 | 1789 | { |
| 1790 | - return $this->key; |
|
| 1790 | + return $this->key; |
|
| 1791 | 1791 | } |
| 1792 | 1792 | public function setRecordIndex($recordIndex) |
| 1793 | 1793 | { |
| 1794 | - $this->recordIndex = $recordIndex; |
|
| 1794 | + $this->recordIndex = $recordIndex; |
|
| 1795 | 1795 | } |
| 1796 | 1796 | public function getRecordIndex() |
| 1797 | 1797 | { |
| 1798 | - return $this->recordIndex; |
|
| 1798 | + return $this->recordIndex; |
|
| 1799 | 1799 | } |
| 1800 | 1800 | public function setShufflePosition($shufflePosition) |
| 1801 | 1801 | { |
| 1802 | - $this->shufflePosition = $shufflePosition; |
|
| 1802 | + $this->shufflePosition = $shufflePosition; |
|
| 1803 | 1803 | } |
| 1804 | 1804 | public function getShufflePosition() |
| 1805 | 1805 | { |
| 1806 | - return $this->shufflePosition; |
|
| 1806 | + return $this->shufflePosition; |
|
| 1807 | 1807 | } |
| 1808 | 1808 | } |
| 1809 | 1809 | |
@@ -1821,51 +1821,51 @@ discard block |
||
| 1821 | 1821 | |
| 1822 | 1822 | public function setDropLateData($dropLateData) |
| 1823 | 1823 | { |
| 1824 | - $this->dropLateData = $dropLateData; |
|
| 1824 | + $this->dropLateData = $dropLateData; |
|
| 1825 | 1825 | } |
| 1826 | 1826 | public function getDropLateData() |
| 1827 | 1827 | { |
| 1828 | - return $this->dropLateData; |
|
| 1828 | + return $this->dropLateData; |
|
| 1829 | 1829 | } |
| 1830 | 1830 | public function setIdLabel($idLabel) |
| 1831 | 1831 | { |
| 1832 | - $this->idLabel = $idLabel; |
|
| 1832 | + $this->idLabel = $idLabel; |
|
| 1833 | 1833 | } |
| 1834 | 1834 | public function getIdLabel() |
| 1835 | 1835 | { |
| 1836 | - return $this->idLabel; |
|
| 1836 | + return $this->idLabel; |
|
| 1837 | 1837 | } |
| 1838 | 1838 | public function setSubscription($subscription) |
| 1839 | 1839 | { |
| 1840 | - $this->subscription = $subscription; |
|
| 1840 | + $this->subscription = $subscription; |
|
| 1841 | 1841 | } |
| 1842 | 1842 | public function getSubscription() |
| 1843 | 1843 | { |
| 1844 | - return $this->subscription; |
|
| 1844 | + return $this->subscription; |
|
| 1845 | 1845 | } |
| 1846 | 1846 | public function setTimestampLabel($timestampLabel) |
| 1847 | 1847 | { |
| 1848 | - $this->timestampLabel = $timestampLabel; |
|
| 1848 | + $this->timestampLabel = $timestampLabel; |
|
| 1849 | 1849 | } |
| 1850 | 1850 | public function getTimestampLabel() |
| 1851 | 1851 | { |
| 1852 | - return $this->timestampLabel; |
|
| 1852 | + return $this->timestampLabel; |
|
| 1853 | 1853 | } |
| 1854 | 1854 | public function setTopic($topic) |
| 1855 | 1855 | { |
| 1856 | - $this->topic = $topic; |
|
| 1856 | + $this->topic = $topic; |
|
| 1857 | 1857 | } |
| 1858 | 1858 | public function getTopic() |
| 1859 | 1859 | { |
| 1860 | - return $this->topic; |
|
| 1860 | + return $this->topic; |
|
| 1861 | 1861 | } |
| 1862 | 1862 | public function setTrackingSubscription($trackingSubscription) |
| 1863 | 1863 | { |
| 1864 | - $this->trackingSubscription = $trackingSubscription; |
|
| 1864 | + $this->trackingSubscription = $trackingSubscription; |
|
| 1865 | 1865 | } |
| 1866 | 1866 | public function getTrackingSubscription() |
| 1867 | 1867 | { |
| 1868 | - return $this->trackingSubscription; |
|
| 1868 | + return $this->trackingSubscription; |
|
| 1869 | 1869 | } |
| 1870 | 1870 | } |
| 1871 | 1871 | |
@@ -1879,11 +1879,11 @@ discard block |
||
| 1879 | 1879 | |
| 1880 | 1880 | public function setSource(Google_Service_Dataflow_Source $source) |
| 1881 | 1881 | { |
| 1882 | - $this->source = $source; |
|
| 1882 | + $this->source = $source; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | public function getSource() |
| 1885 | 1885 | { |
| 1886 | - return $this->source; |
|
| 1886 | + return $this->source; |
|
| 1887 | 1887 | } |
| 1888 | 1888 | } |
| 1889 | 1889 | |
@@ -1900,27 +1900,27 @@ discard block |
||
| 1900 | 1900 | |
| 1901 | 1901 | public function setCurrentWorkerTime($currentWorkerTime) |
| 1902 | 1902 | { |
| 1903 | - $this->currentWorkerTime = $currentWorkerTime; |
|
| 1903 | + $this->currentWorkerTime = $currentWorkerTime; |
|
| 1904 | 1904 | } |
| 1905 | 1905 | public function getCurrentWorkerTime() |
| 1906 | 1906 | { |
| 1907 | - return $this->currentWorkerTime; |
|
| 1907 | + return $this->currentWorkerTime; |
|
| 1908 | 1908 | } |
| 1909 | 1909 | public function setWorkItemStatuses($workItemStatuses) |
| 1910 | 1910 | { |
| 1911 | - $this->workItemStatuses = $workItemStatuses; |
|
| 1911 | + $this->workItemStatuses = $workItemStatuses; |
|
| 1912 | 1912 | } |
| 1913 | 1913 | public function getWorkItemStatuses() |
| 1914 | 1914 | { |
| 1915 | - return $this->workItemStatuses; |
|
| 1915 | + return $this->workItemStatuses; |
|
| 1916 | 1916 | } |
| 1917 | 1917 | public function setWorkerId($workerId) |
| 1918 | 1918 | { |
| 1919 | - $this->workerId = $workerId; |
|
| 1919 | + $this->workerId = $workerId; |
|
| 1920 | 1920 | } |
| 1921 | 1921 | public function getWorkerId() |
| 1922 | 1922 | { |
| 1923 | - return $this->workerId; |
|
| 1923 | + return $this->workerId; |
|
| 1924 | 1924 | } |
| 1925 | 1925 | } |
| 1926 | 1926 | |
@@ -1935,11 +1935,11 @@ discard block |
||
| 1935 | 1935 | |
| 1936 | 1936 | public function setWorkItemServiceStates($workItemServiceStates) |
| 1937 | 1937 | { |
| 1938 | - $this->workItemServiceStates = $workItemServiceStates; |
|
| 1938 | + $this->workItemServiceStates = $workItemServiceStates; |
|
| 1939 | 1939 | } |
| 1940 | 1940 | public function getWorkItemServiceStates() |
| 1941 | 1941 | { |
| 1942 | - return $this->workItemServiceStates; |
|
| 1942 | + return $this->workItemServiceStates; |
|
| 1943 | 1943 | } |
| 1944 | 1944 | } |
| 1945 | 1945 | |
@@ -1960,51 +1960,51 @@ discard block |
||
| 1960 | 1960 | |
| 1961 | 1961 | public function setInputs($inputs) |
| 1962 | 1962 | { |
| 1963 | - $this->inputs = $inputs; |
|
| 1963 | + $this->inputs = $inputs; |
|
| 1964 | 1964 | } |
| 1965 | 1965 | public function getInputs() |
| 1966 | 1966 | { |
| 1967 | - return $this->inputs; |
|
| 1967 | + return $this->inputs; |
|
| 1968 | 1968 | } |
| 1969 | 1969 | public function setName($name) |
| 1970 | 1970 | { |
| 1971 | - $this->name = $name; |
|
| 1971 | + $this->name = $name; |
|
| 1972 | 1972 | } |
| 1973 | 1973 | public function getName() |
| 1974 | 1974 | { |
| 1975 | - return $this->name; |
|
| 1975 | + return $this->name; |
|
| 1976 | 1976 | } |
| 1977 | 1977 | public function setOutputInfos($outputInfos) |
| 1978 | 1978 | { |
| 1979 | - $this->outputInfos = $outputInfos; |
|
| 1979 | + $this->outputInfos = $outputInfos; |
|
| 1980 | 1980 | } |
| 1981 | 1981 | public function getOutputInfos() |
| 1982 | 1982 | { |
| 1983 | - return $this->outputInfos; |
|
| 1983 | + return $this->outputInfos; |
|
| 1984 | 1984 | } |
| 1985 | 1985 | public function setStageName($stageName) |
| 1986 | 1986 | { |
| 1987 | - $this->stageName = $stageName; |
|
| 1987 | + $this->stageName = $stageName; |
|
| 1988 | 1988 | } |
| 1989 | 1989 | public function getStageName() |
| 1990 | 1990 | { |
| 1991 | - return $this->stageName; |
|
| 1991 | + return $this->stageName; |
|
| 1992 | 1992 | } |
| 1993 | 1993 | public function setSystemName($systemName) |
| 1994 | 1994 | { |
| 1995 | - $this->systemName = $systemName; |
|
| 1995 | + $this->systemName = $systemName; |
|
| 1996 | 1996 | } |
| 1997 | 1997 | public function getSystemName() |
| 1998 | 1998 | { |
| 1999 | - return $this->systemName; |
|
| 1999 | + return $this->systemName; |
|
| 2000 | 2000 | } |
| 2001 | 2001 | public function setUserFn($userFn) |
| 2002 | 2002 | { |
| 2003 | - $this->userFn = $userFn; |
|
| 2003 | + $this->userFn = $userFn; |
|
| 2004 | 2004 | } |
| 2005 | 2005 | public function getUserFn() |
| 2006 | 2006 | { |
| 2007 | - return $this->userFn; |
|
| 2007 | + return $this->userFn; |
|
| 2008 | 2008 | } |
| 2009 | 2009 | } |
| 2010 | 2010 | |
@@ -2019,19 +2019,19 @@ discard block |
||
| 2019 | 2019 | |
| 2020 | 2020 | public function setSink(Google_Service_Dataflow_Sink $sink) |
| 2021 | 2021 | { |
| 2022 | - $this->sink = $sink; |
|
| 2022 | + $this->sink = $sink; |
|
| 2023 | 2023 | } |
| 2024 | 2024 | public function getSink() |
| 2025 | 2025 | { |
| 2026 | - return $this->sink; |
|
| 2026 | + return $this->sink; |
|
| 2027 | 2027 | } |
| 2028 | 2028 | public function setTag($tag) |
| 2029 | 2029 | { |
| 2030 | - $this->tag = $tag; |
|
| 2030 | + $this->tag = $tag; |
|
| 2031 | 2031 | } |
| 2032 | 2032 | public function getTag() |
| 2033 | 2033 | { |
| 2034 | - return $this->tag; |
|
| 2034 | + return $this->tag; |
|
| 2035 | 2035 | } |
| 2036 | 2036 | } |
| 2037 | 2037 | |
@@ -2049,19 +2049,19 @@ discard block |
||
| 2049 | 2049 | |
| 2050 | 2050 | public function setCommand($command) |
| 2051 | 2051 | { |
| 2052 | - $this->command = $command; |
|
| 2052 | + $this->command = $command; |
|
| 2053 | 2053 | } |
| 2054 | 2054 | public function getCommand() |
| 2055 | 2055 | { |
| 2056 | - return $this->command; |
|
| 2056 | + return $this->command; |
|
| 2057 | 2057 | } |
| 2058 | 2058 | public function setExitCode($exitCode) |
| 2059 | 2059 | { |
| 2060 | - $this->exitCode = $exitCode; |
|
| 2060 | + $this->exitCode = $exitCode; |
|
| 2061 | 2061 | } |
| 2062 | 2062 | public function getExitCode() |
| 2063 | 2063 | { |
| 2064 | - return $this->exitCode; |
|
| 2064 | + return $this->exitCode; |
|
| 2065 | 2065 | } |
| 2066 | 2066 | } |
| 2067 | 2067 | |
@@ -2078,27 +2078,27 @@ discard block |
||
| 2078 | 2078 | |
| 2079 | 2079 | public function setKind($kind) |
| 2080 | 2080 | { |
| 2081 | - $this->kind = $kind; |
|
| 2081 | + $this->kind = $kind; |
|
| 2082 | 2082 | } |
| 2083 | 2083 | public function getKind() |
| 2084 | 2084 | { |
| 2085 | - return $this->kind; |
|
| 2085 | + return $this->kind; |
|
| 2086 | 2086 | } |
| 2087 | 2087 | public function setSources($sources) |
| 2088 | 2088 | { |
| 2089 | - $this->sources = $sources; |
|
| 2089 | + $this->sources = $sources; |
|
| 2090 | 2090 | } |
| 2091 | 2091 | public function getSources() |
| 2092 | 2092 | { |
| 2093 | - return $this->sources; |
|
| 2093 | + return $this->sources; |
|
| 2094 | 2094 | } |
| 2095 | 2095 | public function setTag($tag) |
| 2096 | 2096 | { |
| 2097 | - $this->tag = $tag; |
|
| 2097 | + $this->tag = $tag; |
|
| 2098 | 2098 | } |
| 2099 | 2099 | public function getTag() |
| 2100 | 2100 | { |
| 2101 | - return $this->tag; |
|
| 2101 | + return $this->tag; |
|
| 2102 | 2102 | } |
| 2103 | 2103 | } |
| 2104 | 2104 | |
@@ -2116,19 +2116,19 @@ discard block |
||
| 2116 | 2116 | |
| 2117 | 2117 | public function setCodec($codec) |
| 2118 | 2118 | { |
| 2119 | - $this->codec = $codec; |
|
| 2119 | + $this->codec = $codec; |
|
| 2120 | 2120 | } |
| 2121 | 2121 | public function getCodec() |
| 2122 | 2122 | { |
| 2123 | - return $this->codec; |
|
| 2123 | + return $this->codec; |
|
| 2124 | 2124 | } |
| 2125 | 2125 | public function setSpec($spec) |
| 2126 | 2126 | { |
| 2127 | - $this->spec = $spec; |
|
| 2127 | + $this->spec = $spec; |
|
| 2128 | 2128 | } |
| 2129 | 2129 | public function getSpec() |
| 2130 | 2130 | { |
| 2131 | - return $this->spec; |
|
| 2131 | + return $this->spec; |
|
| 2132 | 2132 | } |
| 2133 | 2133 | } |
| 2134 | 2134 | |
@@ -2155,43 +2155,43 @@ discard block |
||
| 2155 | 2155 | |
| 2156 | 2156 | public function setBaseSpecs($baseSpecs) |
| 2157 | 2157 | { |
| 2158 | - $this->baseSpecs = $baseSpecs; |
|
| 2158 | + $this->baseSpecs = $baseSpecs; |
|
| 2159 | 2159 | } |
| 2160 | 2160 | public function getBaseSpecs() |
| 2161 | 2161 | { |
| 2162 | - return $this->baseSpecs; |
|
| 2162 | + return $this->baseSpecs; |
|
| 2163 | 2163 | } |
| 2164 | 2164 | public function setCodec($codec) |
| 2165 | 2165 | { |
| 2166 | - $this->codec = $codec; |
|
| 2166 | + $this->codec = $codec; |
|
| 2167 | 2167 | } |
| 2168 | 2168 | public function getCodec() |
| 2169 | 2169 | { |
| 2170 | - return $this->codec; |
|
| 2170 | + return $this->codec; |
|
| 2171 | 2171 | } |
| 2172 | 2172 | public function setDoesNotNeedSplitting($doesNotNeedSplitting) |
| 2173 | 2173 | { |
| 2174 | - $this->doesNotNeedSplitting = $doesNotNeedSplitting; |
|
| 2174 | + $this->doesNotNeedSplitting = $doesNotNeedSplitting; |
|
| 2175 | 2175 | } |
| 2176 | 2176 | public function getDoesNotNeedSplitting() |
| 2177 | 2177 | { |
| 2178 | - return $this->doesNotNeedSplitting; |
|
| 2178 | + return $this->doesNotNeedSplitting; |
|
| 2179 | 2179 | } |
| 2180 | 2180 | public function setMetadata(Google_Service_Dataflow_SourceMetadata $metadata) |
| 2181 | 2181 | { |
| 2182 | - $this->metadata = $metadata; |
|
| 2182 | + $this->metadata = $metadata; |
|
| 2183 | 2183 | } |
| 2184 | 2184 | public function getMetadata() |
| 2185 | 2185 | { |
| 2186 | - return $this->metadata; |
|
| 2186 | + return $this->metadata; |
|
| 2187 | 2187 | } |
| 2188 | 2188 | public function setSpec($spec) |
| 2189 | 2189 | { |
| 2190 | - $this->spec = $spec; |
|
| 2190 | + $this->spec = $spec; |
|
| 2191 | 2191 | } |
| 2192 | 2192 | public function getSpec() |
| 2193 | 2193 | { |
| 2194 | - return $this->spec; |
|
| 2194 | + return $this->spec; |
|
| 2195 | 2195 | } |
| 2196 | 2196 | } |
| 2197 | 2197 | |
@@ -2219,35 +2219,35 @@ discard block |
||
| 2219 | 2219 | |
| 2220 | 2220 | public function setPrimary(Google_Service_Dataflow_SourceSplitShard $primary) |
| 2221 | 2221 | { |
| 2222 | - $this->primary = $primary; |
|
| 2222 | + $this->primary = $primary; |
|
| 2223 | 2223 | } |
| 2224 | 2224 | public function getPrimary() |
| 2225 | 2225 | { |
| 2226 | - return $this->primary; |
|
| 2226 | + return $this->primary; |
|
| 2227 | 2227 | } |
| 2228 | 2228 | public function setPrimarySource(Google_Service_Dataflow_DerivedSource $primarySource) |
| 2229 | 2229 | { |
| 2230 | - $this->primarySource = $primarySource; |
|
| 2230 | + $this->primarySource = $primarySource; |
|
| 2231 | 2231 | } |
| 2232 | 2232 | public function getPrimarySource() |
| 2233 | 2233 | { |
| 2234 | - return $this->primarySource; |
|
| 2234 | + return $this->primarySource; |
|
| 2235 | 2235 | } |
| 2236 | 2236 | public function setResidual(Google_Service_Dataflow_SourceSplitShard $residual) |
| 2237 | 2237 | { |
| 2238 | - $this->residual = $residual; |
|
| 2238 | + $this->residual = $residual; |
|
| 2239 | 2239 | } |
| 2240 | 2240 | public function getResidual() |
| 2241 | 2241 | { |
| 2242 | - return $this->residual; |
|
| 2242 | + return $this->residual; |
|
| 2243 | 2243 | } |
| 2244 | 2244 | public function setResidualSource(Google_Service_Dataflow_DerivedSource $residualSource) |
| 2245 | 2245 | { |
| 2246 | - $this->residualSource = $residualSource; |
|
| 2246 | + $this->residualSource = $residualSource; |
|
| 2247 | 2247 | } |
| 2248 | 2248 | public function getResidualSource() |
| 2249 | 2249 | { |
| 2250 | - return $this->residualSource; |
|
| 2250 | + return $this->residualSource; |
|
| 2251 | 2251 | } |
| 2252 | 2252 | } |
| 2253 | 2253 | |
@@ -2261,11 +2261,11 @@ discard block |
||
| 2261 | 2261 | |
| 2262 | 2262 | public function setSource(Google_Service_Dataflow_Source $source) |
| 2263 | 2263 | { |
| 2264 | - $this->source = $source; |
|
| 2264 | + $this->source = $source; |
|
| 2265 | 2265 | } |
| 2266 | 2266 | public function getSource() |
| 2267 | 2267 | { |
| 2268 | - return $this->source; |
|
| 2268 | + return $this->source; |
|
| 2269 | 2269 | } |
| 2270 | 2270 | } |
| 2271 | 2271 | |
@@ -2279,11 +2279,11 @@ discard block |
||
| 2279 | 2279 | |
| 2280 | 2280 | public function setMetadata(Google_Service_Dataflow_SourceMetadata $metadata) |
| 2281 | 2281 | { |
| 2282 | - $this->metadata = $metadata; |
|
| 2282 | + $this->metadata = $metadata; |
|
| 2283 | 2283 | } |
| 2284 | 2284 | public function getMetadata() |
| 2285 | 2285 | { |
| 2286 | - return $this->metadata; |
|
| 2286 | + return $this->metadata; |
|
| 2287 | 2287 | } |
| 2288 | 2288 | } |
| 2289 | 2289 | |
@@ -2298,27 +2298,27 @@ discard block |
||
| 2298 | 2298 | |
| 2299 | 2299 | public function setEstimatedSizeBytes($estimatedSizeBytes) |
| 2300 | 2300 | { |
| 2301 | - $this->estimatedSizeBytes = $estimatedSizeBytes; |
|
| 2301 | + $this->estimatedSizeBytes = $estimatedSizeBytes; |
|
| 2302 | 2302 | } |
| 2303 | 2303 | public function getEstimatedSizeBytes() |
| 2304 | 2304 | { |
| 2305 | - return $this->estimatedSizeBytes; |
|
| 2305 | + return $this->estimatedSizeBytes; |
|
| 2306 | 2306 | } |
| 2307 | 2307 | public function setInfinite($infinite) |
| 2308 | 2308 | { |
| 2309 | - $this->infinite = $infinite; |
|
| 2309 | + $this->infinite = $infinite; |
|
| 2310 | 2310 | } |
| 2311 | 2311 | public function getInfinite() |
| 2312 | 2312 | { |
| 2313 | - return $this->infinite; |
|
| 2313 | + return $this->infinite; |
|
| 2314 | 2314 | } |
| 2315 | 2315 | public function setProducesSortedKeys($producesSortedKeys) |
| 2316 | 2316 | { |
| 2317 | - $this->producesSortedKeys = $producesSortedKeys; |
|
| 2317 | + $this->producesSortedKeys = $producesSortedKeys; |
|
| 2318 | 2318 | } |
| 2319 | 2319 | public function getProducesSortedKeys() |
| 2320 | 2320 | { |
| 2321 | - return $this->producesSortedKeys; |
|
| 2321 | + return $this->producesSortedKeys; |
|
| 2322 | 2322 | } |
| 2323 | 2323 | } |
| 2324 | 2324 | |
@@ -2334,19 +2334,19 @@ discard block |
||
| 2334 | 2334 | |
| 2335 | 2335 | public function setGetMetadata(Google_Service_Dataflow_SourceGetMetadataRequest $getMetadata) |
| 2336 | 2336 | { |
| 2337 | - $this->getMetadata = $getMetadata; |
|
| 2337 | + $this->getMetadata = $getMetadata; |
|
| 2338 | 2338 | } |
| 2339 | 2339 | public function getGetMetadata() |
| 2340 | 2340 | { |
| 2341 | - return $this->getMetadata; |
|
| 2341 | + return $this->getMetadata; |
|
| 2342 | 2342 | } |
| 2343 | 2343 | public function setSplit(Google_Service_Dataflow_SourceSplitRequest $split) |
| 2344 | 2344 | { |
| 2345 | - $this->split = $split; |
|
| 2345 | + $this->split = $split; |
|
| 2346 | 2346 | } |
| 2347 | 2347 | public function getSplit() |
| 2348 | 2348 | { |
| 2349 | - return $this->split; |
|
| 2349 | + return $this->split; |
|
| 2350 | 2350 | } |
| 2351 | 2351 | } |
| 2352 | 2352 | |
@@ -2362,19 +2362,19 @@ discard block |
||
| 2362 | 2362 | |
| 2363 | 2363 | public function setGetMetadata(Google_Service_Dataflow_SourceGetMetadataResponse $getMetadata) |
| 2364 | 2364 | { |
| 2365 | - $this->getMetadata = $getMetadata; |
|
| 2365 | + $this->getMetadata = $getMetadata; |
|
| 2366 | 2366 | } |
| 2367 | 2367 | public function getGetMetadata() |
| 2368 | 2368 | { |
| 2369 | - return $this->getMetadata; |
|
| 2369 | + return $this->getMetadata; |
|
| 2370 | 2370 | } |
| 2371 | 2371 | public function setSplit(Google_Service_Dataflow_SourceSplitResponse $split) |
| 2372 | 2372 | { |
| 2373 | - $this->split = $split; |
|
| 2373 | + $this->split = $split; |
|
| 2374 | 2374 | } |
| 2375 | 2375 | public function getSplit() |
| 2376 | 2376 | { |
| 2377 | - return $this->split; |
|
| 2377 | + return $this->split; |
|
| 2378 | 2378 | } |
| 2379 | 2379 | } |
| 2380 | 2380 | |
@@ -2392,19 +2392,19 @@ discard block |
||
| 2392 | 2392 | |
| 2393 | 2393 | public function setDesiredBundleSizeBytes($desiredBundleSizeBytes) |
| 2394 | 2394 | { |
| 2395 | - $this->desiredBundleSizeBytes = $desiredBundleSizeBytes; |
|
| 2395 | + $this->desiredBundleSizeBytes = $desiredBundleSizeBytes; |
|
| 2396 | 2396 | } |
| 2397 | 2397 | public function getDesiredBundleSizeBytes() |
| 2398 | 2398 | { |
| 2399 | - return $this->desiredBundleSizeBytes; |
|
| 2399 | + return $this->desiredBundleSizeBytes; |
|
| 2400 | 2400 | } |
| 2401 | 2401 | public function setDesiredShardSizeBytes($desiredShardSizeBytes) |
| 2402 | 2402 | { |
| 2403 | - $this->desiredShardSizeBytes = $desiredShardSizeBytes; |
|
| 2403 | + $this->desiredShardSizeBytes = $desiredShardSizeBytes; |
|
| 2404 | 2404 | } |
| 2405 | 2405 | public function getDesiredShardSizeBytes() |
| 2406 | 2406 | { |
| 2407 | - return $this->desiredShardSizeBytes; |
|
| 2407 | + return $this->desiredShardSizeBytes; |
|
| 2408 | 2408 | } |
| 2409 | 2409 | } |
| 2410 | 2410 | |
@@ -2420,19 +2420,19 @@ discard block |
||
| 2420 | 2420 | |
| 2421 | 2421 | public function setOptions(Google_Service_Dataflow_SourceSplitOptions $options) |
| 2422 | 2422 | { |
| 2423 | - $this->options = $options; |
|
| 2423 | + $this->options = $options; |
|
| 2424 | 2424 | } |
| 2425 | 2425 | public function getOptions() |
| 2426 | 2426 | { |
| 2427 | - return $this->options; |
|
| 2427 | + return $this->options; |
|
| 2428 | 2428 | } |
| 2429 | 2429 | public function setSource(Google_Service_Dataflow_Source $source) |
| 2430 | 2430 | { |
| 2431 | - $this->source = $source; |
|
| 2431 | + $this->source = $source; |
|
| 2432 | 2432 | } |
| 2433 | 2433 | public function getSource() |
| 2434 | 2434 | { |
| 2435 | - return $this->source; |
|
| 2435 | + return $this->source; |
|
| 2436 | 2436 | } |
| 2437 | 2437 | } |
| 2438 | 2438 | |
@@ -2450,27 +2450,27 @@ discard block |
||
| 2450 | 2450 | |
| 2451 | 2451 | public function setBundles($bundles) |
| 2452 | 2452 | { |
| 2453 | - $this->bundles = $bundles; |
|
| 2453 | + $this->bundles = $bundles; |
|
| 2454 | 2454 | } |
| 2455 | 2455 | public function getBundles() |
| 2456 | 2456 | { |
| 2457 | - return $this->bundles; |
|
| 2457 | + return $this->bundles; |
|
| 2458 | 2458 | } |
| 2459 | 2459 | public function setOutcome($outcome) |
| 2460 | 2460 | { |
| 2461 | - $this->outcome = $outcome; |
|
| 2461 | + $this->outcome = $outcome; |
|
| 2462 | 2462 | } |
| 2463 | 2463 | public function getOutcome() |
| 2464 | 2464 | { |
| 2465 | - return $this->outcome; |
|
| 2465 | + return $this->outcome; |
|
| 2466 | 2466 | } |
| 2467 | 2467 | public function setShards($shards) |
| 2468 | 2468 | { |
| 2469 | - $this->shards = $shards; |
|
| 2469 | + $this->shards = $shards; |
|
| 2470 | 2470 | } |
| 2471 | 2471 | public function getShards() |
| 2472 | 2472 | { |
| 2473 | - return $this->shards; |
|
| 2473 | + return $this->shards; |
|
| 2474 | 2474 | } |
| 2475 | 2475 | } |
| 2476 | 2476 | |
@@ -2485,19 +2485,19 @@ discard block |
||
| 2485 | 2485 | |
| 2486 | 2486 | public function setDerivationMode($derivationMode) |
| 2487 | 2487 | { |
| 2488 | - $this->derivationMode = $derivationMode; |
|
| 2488 | + $this->derivationMode = $derivationMode; |
|
| 2489 | 2489 | } |
| 2490 | 2490 | public function getDerivationMode() |
| 2491 | 2491 | { |
| 2492 | - return $this->derivationMode; |
|
| 2492 | + return $this->derivationMode; |
|
| 2493 | 2493 | } |
| 2494 | 2494 | public function setSource(Google_Service_Dataflow_Source $source) |
| 2495 | 2495 | { |
| 2496 | - $this->source = $source; |
|
| 2496 | + $this->source = $source; |
|
| 2497 | 2497 | } |
| 2498 | 2498 | public function getSource() |
| 2499 | 2499 | { |
| 2500 | - return $this->source; |
|
| 2500 | + return $this->source; |
|
| 2501 | 2501 | } |
| 2502 | 2502 | } |
| 2503 | 2503 | |
@@ -2513,27 +2513,27 @@ discard block |
||
| 2513 | 2513 | |
| 2514 | 2514 | public function setCode($code) |
| 2515 | 2515 | { |
| 2516 | - $this->code = $code; |
|
| 2516 | + $this->code = $code; |
|
| 2517 | 2517 | } |
| 2518 | 2518 | public function getCode() |
| 2519 | 2519 | { |
| 2520 | - return $this->code; |
|
| 2520 | + return $this->code; |
|
| 2521 | 2521 | } |
| 2522 | 2522 | public function setDetails($details) |
| 2523 | 2523 | { |
| 2524 | - $this->details = $details; |
|
| 2524 | + $this->details = $details; |
|
| 2525 | 2525 | } |
| 2526 | 2526 | public function getDetails() |
| 2527 | 2527 | { |
| 2528 | - return $this->details; |
|
| 2528 | + return $this->details; |
|
| 2529 | 2529 | } |
| 2530 | 2530 | public function setMessage($message) |
| 2531 | 2531 | { |
| 2532 | - $this->message = $message; |
|
| 2532 | + $this->message = $message; |
|
| 2533 | 2533 | } |
| 2534 | 2534 | public function getMessage() |
| 2535 | 2535 | { |
| 2536 | - return $this->message; |
|
| 2536 | + return $this->message; |
|
| 2537 | 2537 | } |
| 2538 | 2538 | } |
| 2539 | 2539 | |
@@ -2552,27 +2552,27 @@ discard block |
||
| 2552 | 2552 | |
| 2553 | 2553 | public function setKind($kind) |
| 2554 | 2554 | { |
| 2555 | - $this->kind = $kind; |
|
| 2555 | + $this->kind = $kind; |
|
| 2556 | 2556 | } |
| 2557 | 2557 | public function getKind() |
| 2558 | 2558 | { |
| 2559 | - return $this->kind; |
|
| 2559 | + return $this->kind; |
|
| 2560 | 2560 | } |
| 2561 | 2561 | public function setName($name) |
| 2562 | 2562 | { |
| 2563 | - $this->name = $name; |
|
| 2563 | + $this->name = $name; |
|
| 2564 | 2564 | } |
| 2565 | 2565 | public function getName() |
| 2566 | 2566 | { |
| 2567 | - return $this->name; |
|
| 2567 | + return $this->name; |
|
| 2568 | 2568 | } |
| 2569 | 2569 | public function setProperties($properties) |
| 2570 | 2570 | { |
| 2571 | - $this->properties = $properties; |
|
| 2571 | + $this->properties = $properties; |
|
| 2572 | 2572 | } |
| 2573 | 2573 | public function getProperties() |
| 2574 | 2574 | { |
| 2575 | - return $this->properties; |
|
| 2575 | + return $this->properties; |
|
| 2576 | 2576 | } |
| 2577 | 2577 | } |
| 2578 | 2578 | |
@@ -2594,27 +2594,27 @@ discard block |
||
| 2594 | 2594 | |
| 2595 | 2595 | public function setPubsubLocation(Google_Service_Dataflow_PubsubLocation $pubsubLocation) |
| 2596 | 2596 | { |
| 2597 | - $this->pubsubLocation = $pubsubLocation; |
|
| 2597 | + $this->pubsubLocation = $pubsubLocation; |
|
| 2598 | 2598 | } |
| 2599 | 2599 | public function getPubsubLocation() |
| 2600 | 2600 | { |
| 2601 | - return $this->pubsubLocation; |
|
| 2601 | + return $this->pubsubLocation; |
|
| 2602 | 2602 | } |
| 2603 | 2603 | public function setSideInputLocation(Google_Service_Dataflow_StreamingSideInputLocation $sideInputLocation) |
| 2604 | 2604 | { |
| 2605 | - $this->sideInputLocation = $sideInputLocation; |
|
| 2605 | + $this->sideInputLocation = $sideInputLocation; |
|
| 2606 | 2606 | } |
| 2607 | 2607 | public function getSideInputLocation() |
| 2608 | 2608 | { |
| 2609 | - return $this->sideInputLocation; |
|
| 2609 | + return $this->sideInputLocation; |
|
| 2610 | 2610 | } |
| 2611 | 2611 | public function setStreamingStageLocation(Google_Service_Dataflow_StreamingStageLocation $streamingStageLocation) |
| 2612 | 2612 | { |
| 2613 | - $this->streamingStageLocation = $streamingStageLocation; |
|
| 2613 | + $this->streamingStageLocation = $streamingStageLocation; |
|
| 2614 | 2614 | } |
| 2615 | 2615 | public function getStreamingStageLocation() |
| 2616 | 2616 | { |
| 2617 | - return $this->streamingStageLocation; |
|
| 2617 | + return $this->streamingStageLocation; |
|
| 2618 | 2618 | } |
| 2619 | 2619 | } |
| 2620 | 2620 | |
@@ -2630,19 +2630,19 @@ discard block |
||
| 2630 | 2630 | |
| 2631 | 2631 | public function setComputationId($computationId) |
| 2632 | 2632 | { |
| 2633 | - $this->computationId = $computationId; |
|
| 2633 | + $this->computationId = $computationId; |
|
| 2634 | 2634 | } |
| 2635 | 2635 | public function getComputationId() |
| 2636 | 2636 | { |
| 2637 | - return $this->computationId; |
|
| 2637 | + return $this->computationId; |
|
| 2638 | 2638 | } |
| 2639 | 2639 | public function setRangeAssignments($rangeAssignments) |
| 2640 | 2640 | { |
| 2641 | - $this->rangeAssignments = $rangeAssignments; |
|
| 2641 | + $this->rangeAssignments = $rangeAssignments; |
|
| 2642 | 2642 | } |
| 2643 | 2643 | public function getRangeAssignments() |
| 2644 | 2644 | { |
| 2645 | - return $this->rangeAssignments; |
|
| 2645 | + return $this->rangeAssignments; |
|
| 2646 | 2646 | } |
| 2647 | 2647 | } |
| 2648 | 2648 | |
@@ -2660,27 +2660,27 @@ discard block |
||
| 2660 | 2660 | |
| 2661 | 2661 | public function setComputationRanges($computationRanges) |
| 2662 | 2662 | { |
| 2663 | - $this->computationRanges = $computationRanges; |
|
| 2663 | + $this->computationRanges = $computationRanges; |
|
| 2664 | 2664 | } |
| 2665 | 2665 | public function getComputationRanges() |
| 2666 | 2666 | { |
| 2667 | - return $this->computationRanges; |
|
| 2667 | + return $this->computationRanges; |
|
| 2668 | 2668 | } |
| 2669 | 2669 | public function setDataDisks($dataDisks) |
| 2670 | 2670 | { |
| 2671 | - $this->dataDisks = $dataDisks; |
|
| 2671 | + $this->dataDisks = $dataDisks; |
|
| 2672 | 2672 | } |
| 2673 | 2673 | public function getDataDisks() |
| 2674 | 2674 | { |
| 2675 | - return $this->dataDisks; |
|
| 2675 | + return $this->dataDisks; |
|
| 2676 | 2676 | } |
| 2677 | 2677 | public function setTaskType($taskType) |
| 2678 | 2678 | { |
| 2679 | - $this->taskType = $taskType; |
|
| 2679 | + $this->taskType = $taskType; |
|
| 2680 | 2680 | } |
| 2681 | 2681 | public function getTaskType() |
| 2682 | 2682 | { |
| 2683 | - return $this->taskType; |
|
| 2683 | + return $this->taskType; |
|
| 2684 | 2684 | } |
| 2685 | 2685 | } |
| 2686 | 2686 | |
@@ -2696,27 +2696,27 @@ discard block |
||
| 2696 | 2696 | |
| 2697 | 2697 | public function setReceiveWorkPort($receiveWorkPort) |
| 2698 | 2698 | { |
| 2699 | - $this->receiveWorkPort = $receiveWorkPort; |
|
| 2699 | + $this->receiveWorkPort = $receiveWorkPort; |
|
| 2700 | 2700 | } |
| 2701 | 2701 | public function getReceiveWorkPort() |
| 2702 | 2702 | { |
| 2703 | - return $this->receiveWorkPort; |
|
| 2703 | + return $this->receiveWorkPort; |
|
| 2704 | 2704 | } |
| 2705 | 2705 | public function setStreamingComputationTopology(Google_Service_Dataflow_TopologyConfig $streamingComputationTopology) |
| 2706 | 2706 | { |
| 2707 | - $this->streamingComputationTopology = $streamingComputationTopology; |
|
| 2707 | + $this->streamingComputationTopology = $streamingComputationTopology; |
|
| 2708 | 2708 | } |
| 2709 | 2709 | public function getStreamingComputationTopology() |
| 2710 | 2710 | { |
| 2711 | - return $this->streamingComputationTopology; |
|
| 2711 | + return $this->streamingComputationTopology; |
|
| 2712 | 2712 | } |
| 2713 | 2713 | public function setWorkerHarnessPort($workerHarnessPort) |
| 2714 | 2714 | { |
| 2715 | - $this->workerHarnessPort = $workerHarnessPort; |
|
| 2715 | + $this->workerHarnessPort = $workerHarnessPort; |
|
| 2716 | 2716 | } |
| 2717 | 2717 | public function getWorkerHarnessPort() |
| 2718 | 2718 | { |
| 2719 | - return $this->workerHarnessPort; |
|
| 2719 | + return $this->workerHarnessPort; |
|
| 2720 | 2720 | } |
| 2721 | 2721 | } |
| 2722 | 2722 | |
@@ -2729,11 +2729,11 @@ discard block |
||
| 2729 | 2729 | |
| 2730 | 2730 | public function setTag($tag) |
| 2731 | 2731 | { |
| 2732 | - $this->tag = $tag; |
|
| 2732 | + $this->tag = $tag; |
|
| 2733 | 2733 | } |
| 2734 | 2734 | public function getTag() |
| 2735 | 2735 | { |
| 2736 | - return $this->tag; |
|
| 2736 | + return $this->tag; |
|
| 2737 | 2737 | } |
| 2738 | 2738 | } |
| 2739 | 2739 | |
@@ -2746,11 +2746,11 @@ discard block |
||
| 2746 | 2746 | |
| 2747 | 2747 | public function setStreamId($streamId) |
| 2748 | 2748 | { |
| 2749 | - $this->streamId = $streamId; |
|
| 2749 | + $this->streamId = $streamId; |
|
| 2750 | 2750 | } |
| 2751 | 2751 | public function getStreamId() |
| 2752 | 2752 | { |
| 2753 | - return $this->streamId; |
|
| 2753 | + return $this->streamId; |
|
| 2754 | 2754 | } |
| 2755 | 2755 | } |
| 2756 | 2756 | |
@@ -2783,155 +2783,155 @@ discard block |
||
| 2783 | 2783 | |
| 2784 | 2784 | public function setAlsologtostderr($alsologtostderr) |
| 2785 | 2785 | { |
| 2786 | - $this->alsologtostderr = $alsologtostderr; |
|
| 2786 | + $this->alsologtostderr = $alsologtostderr; |
|
| 2787 | 2787 | } |
| 2788 | 2788 | public function getAlsologtostderr() |
| 2789 | 2789 | { |
| 2790 | - return $this->alsologtostderr; |
|
| 2790 | + return $this->alsologtostderr; |
|
| 2791 | 2791 | } |
| 2792 | 2792 | public function setBaseTaskDir($baseTaskDir) |
| 2793 | 2793 | { |
| 2794 | - $this->baseTaskDir = $baseTaskDir; |
|
| 2794 | + $this->baseTaskDir = $baseTaskDir; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | public function getBaseTaskDir() |
| 2797 | 2797 | { |
| 2798 | - return $this->baseTaskDir; |
|
| 2798 | + return $this->baseTaskDir; |
|
| 2799 | 2799 | } |
| 2800 | 2800 | public function setBaseUrl($baseUrl) |
| 2801 | 2801 | { |
| 2802 | - $this->baseUrl = $baseUrl; |
|
| 2802 | + $this->baseUrl = $baseUrl; |
|
| 2803 | 2803 | } |
| 2804 | 2804 | public function getBaseUrl() |
| 2805 | 2805 | { |
| 2806 | - return $this->baseUrl; |
|
| 2806 | + return $this->baseUrl; |
|
| 2807 | 2807 | } |
| 2808 | 2808 | public function setCommandlinesFileName($commandlinesFileName) |
| 2809 | 2809 | { |
| 2810 | - $this->commandlinesFileName = $commandlinesFileName; |
|
| 2810 | + $this->commandlinesFileName = $commandlinesFileName; |
|
| 2811 | 2811 | } |
| 2812 | 2812 | public function getCommandlinesFileName() |
| 2813 | 2813 | { |
| 2814 | - return $this->commandlinesFileName; |
|
| 2814 | + return $this->commandlinesFileName; |
|
| 2815 | 2815 | } |
| 2816 | 2816 | public function setContinueOnException($continueOnException) |
| 2817 | 2817 | { |
| 2818 | - $this->continueOnException = $continueOnException; |
|
| 2818 | + $this->continueOnException = $continueOnException; |
|
| 2819 | 2819 | } |
| 2820 | 2820 | public function getContinueOnException() |
| 2821 | 2821 | { |
| 2822 | - return $this->continueOnException; |
|
| 2822 | + return $this->continueOnException; |
|
| 2823 | 2823 | } |
| 2824 | 2824 | public function setDataflowApiVersion($dataflowApiVersion) |
| 2825 | 2825 | { |
| 2826 | - $this->dataflowApiVersion = $dataflowApiVersion; |
|
| 2826 | + $this->dataflowApiVersion = $dataflowApiVersion; |
|
| 2827 | 2827 | } |
| 2828 | 2828 | public function getDataflowApiVersion() |
| 2829 | 2829 | { |
| 2830 | - return $this->dataflowApiVersion; |
|
| 2830 | + return $this->dataflowApiVersion; |
|
| 2831 | 2831 | } |
| 2832 | 2832 | public function setHarnessCommand($harnessCommand) |
| 2833 | 2833 | { |
| 2834 | - $this->harnessCommand = $harnessCommand; |
|
| 2834 | + $this->harnessCommand = $harnessCommand; |
|
| 2835 | 2835 | } |
| 2836 | 2836 | public function getHarnessCommand() |
| 2837 | 2837 | { |
| 2838 | - return $this->harnessCommand; |
|
| 2838 | + return $this->harnessCommand; |
|
| 2839 | 2839 | } |
| 2840 | 2840 | public function setLanguageHint($languageHint) |
| 2841 | 2841 | { |
| 2842 | - $this->languageHint = $languageHint; |
|
| 2842 | + $this->languageHint = $languageHint; |
|
| 2843 | 2843 | } |
| 2844 | 2844 | public function getLanguageHint() |
| 2845 | 2845 | { |
| 2846 | - return $this->languageHint; |
|
| 2846 | + return $this->languageHint; |
|
| 2847 | 2847 | } |
| 2848 | 2848 | public function setLogDir($logDir) |
| 2849 | 2849 | { |
| 2850 | - $this->logDir = $logDir; |
|
| 2850 | + $this->logDir = $logDir; |
|
| 2851 | 2851 | } |
| 2852 | 2852 | public function getLogDir() |
| 2853 | 2853 | { |
| 2854 | - return $this->logDir; |
|
| 2854 | + return $this->logDir; |
|
| 2855 | 2855 | } |
| 2856 | 2856 | public function setLogToSerialconsole($logToSerialconsole) |
| 2857 | 2857 | { |
| 2858 | - $this->logToSerialconsole = $logToSerialconsole; |
|
| 2858 | + $this->logToSerialconsole = $logToSerialconsole; |
|
| 2859 | 2859 | } |
| 2860 | 2860 | public function getLogToSerialconsole() |
| 2861 | 2861 | { |
| 2862 | - return $this->logToSerialconsole; |
|
| 2862 | + return $this->logToSerialconsole; |
|
| 2863 | 2863 | } |
| 2864 | 2864 | public function setLogUploadLocation($logUploadLocation) |
| 2865 | 2865 | { |
| 2866 | - $this->logUploadLocation = $logUploadLocation; |
|
| 2866 | + $this->logUploadLocation = $logUploadLocation; |
|
| 2867 | 2867 | } |
| 2868 | 2868 | public function getLogUploadLocation() |
| 2869 | 2869 | { |
| 2870 | - return $this->logUploadLocation; |
|
| 2870 | + return $this->logUploadLocation; |
|
| 2871 | 2871 | } |
| 2872 | 2872 | public function setOauthScopes($oauthScopes) |
| 2873 | 2873 | { |
| 2874 | - $this->oauthScopes = $oauthScopes; |
|
| 2874 | + $this->oauthScopes = $oauthScopes; |
|
| 2875 | 2875 | } |
| 2876 | 2876 | public function getOauthScopes() |
| 2877 | 2877 | { |
| 2878 | - return $this->oauthScopes; |
|
| 2878 | + return $this->oauthScopes; |
|
| 2879 | 2879 | } |
| 2880 | 2880 | public function setParallelWorkerSettings(Google_Service_Dataflow_WorkerSettings $parallelWorkerSettings) |
| 2881 | 2881 | { |
| 2882 | - $this->parallelWorkerSettings = $parallelWorkerSettings; |
|
| 2882 | + $this->parallelWorkerSettings = $parallelWorkerSettings; |
|
| 2883 | 2883 | } |
| 2884 | 2884 | public function getParallelWorkerSettings() |
| 2885 | 2885 | { |
| 2886 | - return $this->parallelWorkerSettings; |
|
| 2886 | + return $this->parallelWorkerSettings; |
|
| 2887 | 2887 | } |
| 2888 | 2888 | public function setStreamingWorkerMainClass($streamingWorkerMainClass) |
| 2889 | 2889 | { |
| 2890 | - $this->streamingWorkerMainClass = $streamingWorkerMainClass; |
|
| 2890 | + $this->streamingWorkerMainClass = $streamingWorkerMainClass; |
|
| 2891 | 2891 | } |
| 2892 | 2892 | public function getStreamingWorkerMainClass() |
| 2893 | 2893 | { |
| 2894 | - return $this->streamingWorkerMainClass; |
|
| 2894 | + return $this->streamingWorkerMainClass; |
|
| 2895 | 2895 | } |
| 2896 | 2896 | public function setTaskGroup($taskGroup) |
| 2897 | 2897 | { |
| 2898 | - $this->taskGroup = $taskGroup; |
|
| 2898 | + $this->taskGroup = $taskGroup; |
|
| 2899 | 2899 | } |
| 2900 | 2900 | public function getTaskGroup() |
| 2901 | 2901 | { |
| 2902 | - return $this->taskGroup; |
|
| 2902 | + return $this->taskGroup; |
|
| 2903 | 2903 | } |
| 2904 | 2904 | public function setTaskUser($taskUser) |
| 2905 | 2905 | { |
| 2906 | - $this->taskUser = $taskUser; |
|
| 2906 | + $this->taskUser = $taskUser; |
|
| 2907 | 2907 | } |
| 2908 | 2908 | public function getTaskUser() |
| 2909 | 2909 | { |
| 2910 | - return $this->taskUser; |
|
| 2910 | + return $this->taskUser; |
|
| 2911 | 2911 | } |
| 2912 | 2912 | public function setTempStoragePrefix($tempStoragePrefix) |
| 2913 | 2913 | { |
| 2914 | - $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 2914 | + $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 2915 | 2915 | } |
| 2916 | 2916 | public function getTempStoragePrefix() |
| 2917 | 2917 | { |
| 2918 | - return $this->tempStoragePrefix; |
|
| 2918 | + return $this->tempStoragePrefix; |
|
| 2919 | 2919 | } |
| 2920 | 2920 | public function setVmId($vmId) |
| 2921 | 2921 | { |
| 2922 | - $this->vmId = $vmId; |
|
| 2922 | + $this->vmId = $vmId; |
|
| 2923 | 2923 | } |
| 2924 | 2924 | public function getVmId() |
| 2925 | 2925 | { |
| 2926 | - return $this->vmId; |
|
| 2926 | + return $this->vmId; |
|
| 2927 | 2927 | } |
| 2928 | 2928 | public function setWorkflowFileName($workflowFileName) |
| 2929 | 2929 | { |
| 2930 | - $this->workflowFileName = $workflowFileName; |
|
| 2930 | + $this->workflowFileName = $workflowFileName; |
|
| 2931 | 2931 | } |
| 2932 | 2932 | public function getWorkflowFileName() |
| 2933 | 2933 | { |
| 2934 | - return $this->workflowFileName; |
|
| 2934 | + return $this->workflowFileName; |
|
| 2935 | 2935 | } |
| 2936 | 2936 | } |
| 2937 | 2937 | |
@@ -2948,19 +2948,19 @@ discard block |
||
| 2948 | 2948 | |
| 2949 | 2949 | public function setComputations($computations) |
| 2950 | 2950 | { |
| 2951 | - $this->computations = $computations; |
|
| 2951 | + $this->computations = $computations; |
|
| 2952 | 2952 | } |
| 2953 | 2953 | public function getComputations() |
| 2954 | 2954 | { |
| 2955 | - return $this->computations; |
|
| 2955 | + return $this->computations; |
|
| 2956 | 2956 | } |
| 2957 | 2957 | public function setDataDiskAssignments($dataDiskAssignments) |
| 2958 | 2958 | { |
| 2959 | - $this->dataDiskAssignments = $dataDiskAssignments; |
|
| 2959 | + $this->dataDiskAssignments = $dataDiskAssignments; |
|
| 2960 | 2960 | } |
| 2961 | 2961 | public function getDataDiskAssignments() |
| 2962 | 2962 | { |
| 2963 | - return $this->dataDiskAssignments; |
|
| 2963 | + return $this->dataDiskAssignments; |
|
| 2964 | 2964 | } |
| 2965 | 2965 | } |
| 2966 | 2966 | |
@@ -2994,115 +2994,115 @@ discard block |
||
| 2994 | 2994 | |
| 2995 | 2995 | public function setConfiguration($configuration) |
| 2996 | 2996 | { |
| 2997 | - $this->configuration = $configuration; |
|
| 2997 | + $this->configuration = $configuration; |
|
| 2998 | 2998 | } |
| 2999 | 2999 | public function getConfiguration() |
| 3000 | 3000 | { |
| 3001 | - return $this->configuration; |
|
| 3001 | + return $this->configuration; |
|
| 3002 | 3002 | } |
| 3003 | 3003 | public function setId($id) |
| 3004 | 3004 | { |
| 3005 | - $this->id = $id; |
|
| 3005 | + $this->id = $id; |
|
| 3006 | 3006 | } |
| 3007 | 3007 | public function getId() |
| 3008 | 3008 | { |
| 3009 | - return $this->id; |
|
| 3009 | + return $this->id; |
|
| 3010 | 3010 | } |
| 3011 | 3011 | public function setInitialReportIndex($initialReportIndex) |
| 3012 | 3012 | { |
| 3013 | - $this->initialReportIndex = $initialReportIndex; |
|
| 3013 | + $this->initialReportIndex = $initialReportIndex; |
|
| 3014 | 3014 | } |
| 3015 | 3015 | public function getInitialReportIndex() |
| 3016 | 3016 | { |
| 3017 | - return $this->initialReportIndex; |
|
| 3017 | + return $this->initialReportIndex; |
|
| 3018 | 3018 | } |
| 3019 | 3019 | public function setJobId($jobId) |
| 3020 | 3020 | { |
| 3021 | - $this->jobId = $jobId; |
|
| 3021 | + $this->jobId = $jobId; |
|
| 3022 | 3022 | } |
| 3023 | 3023 | public function getJobId() |
| 3024 | 3024 | { |
| 3025 | - return $this->jobId; |
|
| 3025 | + return $this->jobId; |
|
| 3026 | 3026 | } |
| 3027 | 3027 | public function setLeaseExpireTime($leaseExpireTime) |
| 3028 | 3028 | { |
| 3029 | - $this->leaseExpireTime = $leaseExpireTime; |
|
| 3029 | + $this->leaseExpireTime = $leaseExpireTime; |
|
| 3030 | 3030 | } |
| 3031 | 3031 | public function getLeaseExpireTime() |
| 3032 | 3032 | { |
| 3033 | - return $this->leaseExpireTime; |
|
| 3033 | + return $this->leaseExpireTime; |
|
| 3034 | 3034 | } |
| 3035 | 3035 | public function setMapTask(Google_Service_Dataflow_MapTask $mapTask) |
| 3036 | 3036 | { |
| 3037 | - $this->mapTask = $mapTask; |
|
| 3037 | + $this->mapTask = $mapTask; |
|
| 3038 | 3038 | } |
| 3039 | 3039 | public function getMapTask() |
| 3040 | 3040 | { |
| 3041 | - return $this->mapTask; |
|
| 3041 | + return $this->mapTask; |
|
| 3042 | 3042 | } |
| 3043 | 3043 | public function setPackages($packages) |
| 3044 | 3044 | { |
| 3045 | - $this->packages = $packages; |
|
| 3045 | + $this->packages = $packages; |
|
| 3046 | 3046 | } |
| 3047 | 3047 | public function getPackages() |
| 3048 | 3048 | { |
| 3049 | - return $this->packages; |
|
| 3049 | + return $this->packages; |
|
| 3050 | 3050 | } |
| 3051 | 3051 | public function setProjectId($projectId) |
| 3052 | 3052 | { |
| 3053 | - $this->projectId = $projectId; |
|
| 3053 | + $this->projectId = $projectId; |
|
| 3054 | 3054 | } |
| 3055 | 3055 | public function getProjectId() |
| 3056 | 3056 | { |
| 3057 | - return $this->projectId; |
|
| 3057 | + return $this->projectId; |
|
| 3058 | 3058 | } |
| 3059 | 3059 | public function setReportStatusInterval($reportStatusInterval) |
| 3060 | 3060 | { |
| 3061 | - $this->reportStatusInterval = $reportStatusInterval; |
|
| 3061 | + $this->reportStatusInterval = $reportStatusInterval; |
|
| 3062 | 3062 | } |
| 3063 | 3063 | public function getReportStatusInterval() |
| 3064 | 3064 | { |
| 3065 | - return $this->reportStatusInterval; |
|
| 3065 | + return $this->reportStatusInterval; |
|
| 3066 | 3066 | } |
| 3067 | 3067 | public function setSeqMapTask(Google_Service_Dataflow_SeqMapTask $seqMapTask) |
| 3068 | 3068 | { |
| 3069 | - $this->seqMapTask = $seqMapTask; |
|
| 3069 | + $this->seqMapTask = $seqMapTask; |
|
| 3070 | 3070 | } |
| 3071 | 3071 | public function getSeqMapTask() |
| 3072 | 3072 | { |
| 3073 | - return $this->seqMapTask; |
|
| 3073 | + return $this->seqMapTask; |
|
| 3074 | 3074 | } |
| 3075 | 3075 | public function setShellTask(Google_Service_Dataflow_ShellTask $shellTask) |
| 3076 | 3076 | { |
| 3077 | - $this->shellTask = $shellTask; |
|
| 3077 | + $this->shellTask = $shellTask; |
|
| 3078 | 3078 | } |
| 3079 | 3079 | public function getShellTask() |
| 3080 | 3080 | { |
| 3081 | - return $this->shellTask; |
|
| 3081 | + return $this->shellTask; |
|
| 3082 | 3082 | } |
| 3083 | 3083 | public function setSourceOperationTask(Google_Service_Dataflow_SourceOperationRequest $sourceOperationTask) |
| 3084 | 3084 | { |
| 3085 | - $this->sourceOperationTask = $sourceOperationTask; |
|
| 3085 | + $this->sourceOperationTask = $sourceOperationTask; |
|
| 3086 | 3086 | } |
| 3087 | 3087 | public function getSourceOperationTask() |
| 3088 | 3088 | { |
| 3089 | - return $this->sourceOperationTask; |
|
| 3089 | + return $this->sourceOperationTask; |
|
| 3090 | 3090 | } |
| 3091 | 3091 | public function setStreamingComputationTask(Google_Service_Dataflow_StreamingComputationTask $streamingComputationTask) |
| 3092 | 3092 | { |
| 3093 | - $this->streamingComputationTask = $streamingComputationTask; |
|
| 3093 | + $this->streamingComputationTask = $streamingComputationTask; |
|
| 3094 | 3094 | } |
| 3095 | 3095 | public function getStreamingComputationTask() |
| 3096 | 3096 | { |
| 3097 | - return $this->streamingComputationTask; |
|
| 3097 | + return $this->streamingComputationTask; |
|
| 3098 | 3098 | } |
| 3099 | 3099 | public function setStreamingSetupTask(Google_Service_Dataflow_StreamingSetupTask $streamingSetupTask) |
| 3100 | 3100 | { |
| 3101 | - $this->streamingSetupTask = $streamingSetupTask; |
|
| 3101 | + $this->streamingSetupTask = $streamingSetupTask; |
|
| 3102 | 3102 | } |
| 3103 | 3103 | public function getStreamingSetupTask() |
| 3104 | 3104 | { |
| 3105 | - return $this->streamingSetupTask; |
|
| 3105 | + return $this->streamingSetupTask; |
|
| 3106 | 3106 | } |
| 3107 | 3107 | } |
| 3108 | 3108 | |
@@ -3122,51 +3122,51 @@ discard block |
||
| 3122 | 3122 | |
| 3123 | 3123 | public function setHarnessData($harnessData) |
| 3124 | 3124 | { |
| 3125 | - $this->harnessData = $harnessData; |
|
| 3125 | + $this->harnessData = $harnessData; |
|
| 3126 | 3126 | } |
| 3127 | 3127 | public function getHarnessData() |
| 3128 | 3128 | { |
| 3129 | - return $this->harnessData; |
|
| 3129 | + return $this->harnessData; |
|
| 3130 | 3130 | } |
| 3131 | 3131 | public function setLeaseExpireTime($leaseExpireTime) |
| 3132 | 3132 | { |
| 3133 | - $this->leaseExpireTime = $leaseExpireTime; |
|
| 3133 | + $this->leaseExpireTime = $leaseExpireTime; |
|
| 3134 | 3134 | } |
| 3135 | 3135 | public function getLeaseExpireTime() |
| 3136 | 3136 | { |
| 3137 | - return $this->leaseExpireTime; |
|
| 3137 | + return $this->leaseExpireTime; |
|
| 3138 | 3138 | } |
| 3139 | 3139 | public function setNextReportIndex($nextReportIndex) |
| 3140 | 3140 | { |
| 3141 | - $this->nextReportIndex = $nextReportIndex; |
|
| 3141 | + $this->nextReportIndex = $nextReportIndex; |
|
| 3142 | 3142 | } |
| 3143 | 3143 | public function getNextReportIndex() |
| 3144 | 3144 | { |
| 3145 | - return $this->nextReportIndex; |
|
| 3145 | + return $this->nextReportIndex; |
|
| 3146 | 3146 | } |
| 3147 | 3147 | public function setReportStatusInterval($reportStatusInterval) |
| 3148 | 3148 | { |
| 3149 | - $this->reportStatusInterval = $reportStatusInterval; |
|
| 3149 | + $this->reportStatusInterval = $reportStatusInterval; |
|
| 3150 | 3150 | } |
| 3151 | 3151 | public function getReportStatusInterval() |
| 3152 | 3152 | { |
| 3153 | - return $this->reportStatusInterval; |
|
| 3153 | + return $this->reportStatusInterval; |
|
| 3154 | 3154 | } |
| 3155 | 3155 | public function setSuggestedStopPoint(Google_Service_Dataflow_ApproximateProgress $suggestedStopPoint) |
| 3156 | 3156 | { |
| 3157 | - $this->suggestedStopPoint = $suggestedStopPoint; |
|
| 3157 | + $this->suggestedStopPoint = $suggestedStopPoint; |
|
| 3158 | 3158 | } |
| 3159 | 3159 | public function getSuggestedStopPoint() |
| 3160 | 3160 | { |
| 3161 | - return $this->suggestedStopPoint; |
|
| 3161 | + return $this->suggestedStopPoint; |
|
| 3162 | 3162 | } |
| 3163 | 3163 | public function setSuggestedStopPosition(Google_Service_Dataflow_Position $suggestedStopPosition) |
| 3164 | 3164 | { |
| 3165 | - $this->suggestedStopPosition = $suggestedStopPosition; |
|
| 3165 | + $this->suggestedStopPosition = $suggestedStopPosition; |
|
| 3166 | 3166 | } |
| 3167 | 3167 | public function getSuggestedStopPosition() |
| 3168 | 3168 | { |
| 3169 | - return $this->suggestedStopPosition; |
|
| 3169 | + return $this->suggestedStopPosition; |
|
| 3170 | 3170 | } |
| 3171 | 3171 | } |
| 3172 | 3172 | |
@@ -3201,91 +3201,91 @@ discard block |
||
| 3201 | 3201 | |
| 3202 | 3202 | public function setCompleted($completed) |
| 3203 | 3203 | { |
| 3204 | - $this->completed = $completed; |
|
| 3204 | + $this->completed = $completed; |
|
| 3205 | 3205 | } |
| 3206 | 3206 | public function getCompleted() |
| 3207 | 3207 | { |
| 3208 | - return $this->completed; |
|
| 3208 | + return $this->completed; |
|
| 3209 | 3209 | } |
| 3210 | 3210 | public function setDynamicSourceSplit(Google_Service_Dataflow_DynamicSourceSplit $dynamicSourceSplit) |
| 3211 | 3211 | { |
| 3212 | - $this->dynamicSourceSplit = $dynamicSourceSplit; |
|
| 3212 | + $this->dynamicSourceSplit = $dynamicSourceSplit; |
|
| 3213 | 3213 | } |
| 3214 | 3214 | public function getDynamicSourceSplit() |
| 3215 | 3215 | { |
| 3216 | - return $this->dynamicSourceSplit; |
|
| 3216 | + return $this->dynamicSourceSplit; |
|
| 3217 | 3217 | } |
| 3218 | 3218 | public function setErrors($errors) |
| 3219 | 3219 | { |
| 3220 | - $this->errors = $errors; |
|
| 3220 | + $this->errors = $errors; |
|
| 3221 | 3221 | } |
| 3222 | 3222 | public function getErrors() |
| 3223 | 3223 | { |
| 3224 | - return $this->errors; |
|
| 3224 | + return $this->errors; |
|
| 3225 | 3225 | } |
| 3226 | 3226 | public function setMetricUpdates($metricUpdates) |
| 3227 | 3227 | { |
| 3228 | - $this->metricUpdates = $metricUpdates; |
|
| 3228 | + $this->metricUpdates = $metricUpdates; |
|
| 3229 | 3229 | } |
| 3230 | 3230 | public function getMetricUpdates() |
| 3231 | 3231 | { |
| 3232 | - return $this->metricUpdates; |
|
| 3232 | + return $this->metricUpdates; |
|
| 3233 | 3233 | } |
| 3234 | 3234 | public function setProgress(Google_Service_Dataflow_ApproximateProgress $progress) |
| 3235 | 3235 | { |
| 3236 | - $this->progress = $progress; |
|
| 3236 | + $this->progress = $progress; |
|
| 3237 | 3237 | } |
| 3238 | 3238 | public function getProgress() |
| 3239 | 3239 | { |
| 3240 | - return $this->progress; |
|
| 3240 | + return $this->progress; |
|
| 3241 | 3241 | } |
| 3242 | 3242 | public function setReportIndex($reportIndex) |
| 3243 | 3243 | { |
| 3244 | - $this->reportIndex = $reportIndex; |
|
| 3244 | + $this->reportIndex = $reportIndex; |
|
| 3245 | 3245 | } |
| 3246 | 3246 | public function getReportIndex() |
| 3247 | 3247 | { |
| 3248 | - return $this->reportIndex; |
|
| 3248 | + return $this->reportIndex; |
|
| 3249 | 3249 | } |
| 3250 | 3250 | public function setRequestedLeaseDuration($requestedLeaseDuration) |
| 3251 | 3251 | { |
| 3252 | - $this->requestedLeaseDuration = $requestedLeaseDuration; |
|
| 3252 | + $this->requestedLeaseDuration = $requestedLeaseDuration; |
|
| 3253 | 3253 | } |
| 3254 | 3254 | public function getRequestedLeaseDuration() |
| 3255 | 3255 | { |
| 3256 | - return $this->requestedLeaseDuration; |
|
| 3256 | + return $this->requestedLeaseDuration; |
|
| 3257 | 3257 | } |
| 3258 | 3258 | public function setSourceFork(Google_Service_Dataflow_SourceFork $sourceFork) |
| 3259 | 3259 | { |
| 3260 | - $this->sourceFork = $sourceFork; |
|
| 3260 | + $this->sourceFork = $sourceFork; |
|
| 3261 | 3261 | } |
| 3262 | 3262 | public function getSourceFork() |
| 3263 | 3263 | { |
| 3264 | - return $this->sourceFork; |
|
| 3264 | + return $this->sourceFork; |
|
| 3265 | 3265 | } |
| 3266 | 3266 | public function setSourceOperationResponse(Google_Service_Dataflow_SourceOperationResponse $sourceOperationResponse) |
| 3267 | 3267 | { |
| 3268 | - $this->sourceOperationResponse = $sourceOperationResponse; |
|
| 3268 | + $this->sourceOperationResponse = $sourceOperationResponse; |
|
| 3269 | 3269 | } |
| 3270 | 3270 | public function getSourceOperationResponse() |
| 3271 | 3271 | { |
| 3272 | - return $this->sourceOperationResponse; |
|
| 3272 | + return $this->sourceOperationResponse; |
|
| 3273 | 3273 | } |
| 3274 | 3274 | public function setStopPosition(Google_Service_Dataflow_Position $stopPosition) |
| 3275 | 3275 | { |
| 3276 | - $this->stopPosition = $stopPosition; |
|
| 3276 | + $this->stopPosition = $stopPosition; |
|
| 3277 | 3277 | } |
| 3278 | 3278 | public function getStopPosition() |
| 3279 | 3279 | { |
| 3280 | - return $this->stopPosition; |
|
| 3280 | + return $this->stopPosition; |
|
| 3281 | 3281 | } |
| 3282 | 3282 | public function setWorkItemId($workItemId) |
| 3283 | 3283 | { |
| 3284 | - $this->workItemId = $workItemId; |
|
| 3284 | + $this->workItemId = $workItemId; |
|
| 3285 | 3285 | } |
| 3286 | 3286 | public function getWorkItemId() |
| 3287 | 3287 | { |
| 3288 | - return $this->workItemId; |
|
| 3288 | + return $this->workItemId; |
|
| 3289 | 3289 | } |
| 3290 | 3290 | } |
| 3291 | 3291 | |
@@ -3319,139 +3319,139 @@ discard block |
||
| 3319 | 3319 | |
| 3320 | 3320 | public function setAutoscalingSettings(Google_Service_Dataflow_AutoscalingSettings $autoscalingSettings) |
| 3321 | 3321 | { |
| 3322 | - $this->autoscalingSettings = $autoscalingSettings; |
|
| 3322 | + $this->autoscalingSettings = $autoscalingSettings; |
|
| 3323 | 3323 | } |
| 3324 | 3324 | public function getAutoscalingSettings() |
| 3325 | 3325 | { |
| 3326 | - return $this->autoscalingSettings; |
|
| 3326 | + return $this->autoscalingSettings; |
|
| 3327 | 3327 | } |
| 3328 | 3328 | public function setDataDisks($dataDisks) |
| 3329 | 3329 | { |
| 3330 | - $this->dataDisks = $dataDisks; |
|
| 3330 | + $this->dataDisks = $dataDisks; |
|
| 3331 | 3331 | } |
| 3332 | 3332 | public function getDataDisks() |
| 3333 | 3333 | { |
| 3334 | - return $this->dataDisks; |
|
| 3334 | + return $this->dataDisks; |
|
| 3335 | 3335 | } |
| 3336 | 3336 | public function setDefaultPackageSet($defaultPackageSet) |
| 3337 | 3337 | { |
| 3338 | - $this->defaultPackageSet = $defaultPackageSet; |
|
| 3338 | + $this->defaultPackageSet = $defaultPackageSet; |
|
| 3339 | 3339 | } |
| 3340 | 3340 | public function getDefaultPackageSet() |
| 3341 | 3341 | { |
| 3342 | - return $this->defaultPackageSet; |
|
| 3342 | + return $this->defaultPackageSet; |
|
| 3343 | 3343 | } |
| 3344 | 3344 | public function setDiskSizeGb($diskSizeGb) |
| 3345 | 3345 | { |
| 3346 | - $this->diskSizeGb = $diskSizeGb; |
|
| 3346 | + $this->diskSizeGb = $diskSizeGb; |
|
| 3347 | 3347 | } |
| 3348 | 3348 | public function getDiskSizeGb() |
| 3349 | 3349 | { |
| 3350 | - return $this->diskSizeGb; |
|
| 3350 | + return $this->diskSizeGb; |
|
| 3351 | 3351 | } |
| 3352 | 3352 | public function setDiskSourceImage($diskSourceImage) |
| 3353 | 3353 | { |
| 3354 | - $this->diskSourceImage = $diskSourceImage; |
|
| 3354 | + $this->diskSourceImage = $diskSourceImage; |
|
| 3355 | 3355 | } |
| 3356 | 3356 | public function getDiskSourceImage() |
| 3357 | 3357 | { |
| 3358 | - return $this->diskSourceImage; |
|
| 3358 | + return $this->diskSourceImage; |
|
| 3359 | 3359 | } |
| 3360 | 3360 | public function setDiskType($diskType) |
| 3361 | 3361 | { |
| 3362 | - $this->diskType = $diskType; |
|
| 3362 | + $this->diskType = $diskType; |
|
| 3363 | 3363 | } |
| 3364 | 3364 | public function getDiskType() |
| 3365 | 3365 | { |
| 3366 | - return $this->diskType; |
|
| 3366 | + return $this->diskType; |
|
| 3367 | 3367 | } |
| 3368 | 3368 | public function setKind($kind) |
| 3369 | 3369 | { |
| 3370 | - $this->kind = $kind; |
|
| 3370 | + $this->kind = $kind; |
|
| 3371 | 3371 | } |
| 3372 | 3372 | public function getKind() |
| 3373 | 3373 | { |
| 3374 | - return $this->kind; |
|
| 3374 | + return $this->kind; |
|
| 3375 | 3375 | } |
| 3376 | 3376 | public function setMachineType($machineType) |
| 3377 | 3377 | { |
| 3378 | - $this->machineType = $machineType; |
|
| 3378 | + $this->machineType = $machineType; |
|
| 3379 | 3379 | } |
| 3380 | 3380 | public function getMachineType() |
| 3381 | 3381 | { |
| 3382 | - return $this->machineType; |
|
| 3382 | + return $this->machineType; |
|
| 3383 | 3383 | } |
| 3384 | 3384 | public function setMetadata($metadata) |
| 3385 | 3385 | { |
| 3386 | - $this->metadata = $metadata; |
|
| 3386 | + $this->metadata = $metadata; |
|
| 3387 | 3387 | } |
| 3388 | 3388 | public function getMetadata() |
| 3389 | 3389 | { |
| 3390 | - return $this->metadata; |
|
| 3390 | + return $this->metadata; |
|
| 3391 | 3391 | } |
| 3392 | 3392 | public function setNetwork($network) |
| 3393 | 3393 | { |
| 3394 | - $this->network = $network; |
|
| 3394 | + $this->network = $network; |
|
| 3395 | 3395 | } |
| 3396 | 3396 | public function getNetwork() |
| 3397 | 3397 | { |
| 3398 | - return $this->network; |
|
| 3398 | + return $this->network; |
|
| 3399 | 3399 | } |
| 3400 | 3400 | public function setNumWorkers($numWorkers) |
| 3401 | 3401 | { |
| 3402 | - $this->numWorkers = $numWorkers; |
|
| 3402 | + $this->numWorkers = $numWorkers; |
|
| 3403 | 3403 | } |
| 3404 | 3404 | public function getNumWorkers() |
| 3405 | 3405 | { |
| 3406 | - return $this->numWorkers; |
|
| 3406 | + return $this->numWorkers; |
|
| 3407 | 3407 | } |
| 3408 | 3408 | public function setOnHostMaintenance($onHostMaintenance) |
| 3409 | 3409 | { |
| 3410 | - $this->onHostMaintenance = $onHostMaintenance; |
|
| 3410 | + $this->onHostMaintenance = $onHostMaintenance; |
|
| 3411 | 3411 | } |
| 3412 | 3412 | public function getOnHostMaintenance() |
| 3413 | 3413 | { |
| 3414 | - return $this->onHostMaintenance; |
|
| 3414 | + return $this->onHostMaintenance; |
|
| 3415 | 3415 | } |
| 3416 | 3416 | public function setPackages($packages) |
| 3417 | 3417 | { |
| 3418 | - $this->packages = $packages; |
|
| 3418 | + $this->packages = $packages; |
|
| 3419 | 3419 | } |
| 3420 | 3420 | public function getPackages() |
| 3421 | 3421 | { |
| 3422 | - return $this->packages; |
|
| 3422 | + return $this->packages; |
|
| 3423 | 3423 | } |
| 3424 | 3424 | public function setPoolArgs($poolArgs) |
| 3425 | 3425 | { |
| 3426 | - $this->poolArgs = $poolArgs; |
|
| 3426 | + $this->poolArgs = $poolArgs; |
|
| 3427 | 3427 | } |
| 3428 | 3428 | public function getPoolArgs() |
| 3429 | 3429 | { |
| 3430 | - return $this->poolArgs; |
|
| 3430 | + return $this->poolArgs; |
|
| 3431 | 3431 | } |
| 3432 | 3432 | public function setTaskrunnerSettings(Google_Service_Dataflow_TaskRunnerSettings $taskrunnerSettings) |
| 3433 | 3433 | { |
| 3434 | - $this->taskrunnerSettings = $taskrunnerSettings; |
|
| 3434 | + $this->taskrunnerSettings = $taskrunnerSettings; |
|
| 3435 | 3435 | } |
| 3436 | 3436 | public function getTaskrunnerSettings() |
| 3437 | 3437 | { |
| 3438 | - return $this->taskrunnerSettings; |
|
| 3438 | + return $this->taskrunnerSettings; |
|
| 3439 | 3439 | } |
| 3440 | 3440 | public function setTeardownPolicy($teardownPolicy) |
| 3441 | 3441 | { |
| 3442 | - $this->teardownPolicy = $teardownPolicy; |
|
| 3442 | + $this->teardownPolicy = $teardownPolicy; |
|
| 3443 | 3443 | } |
| 3444 | 3444 | public function getTeardownPolicy() |
| 3445 | 3445 | { |
| 3446 | - return $this->teardownPolicy; |
|
| 3446 | + return $this->teardownPolicy; |
|
| 3447 | 3447 | } |
| 3448 | 3448 | public function setZone($zone) |
| 3449 | 3449 | { |
| 3450 | - $this->zone = $zone; |
|
| 3450 | + $this->zone = $zone; |
|
| 3451 | 3451 | } |
| 3452 | 3452 | public function getZone() |
| 3453 | 3453 | { |
| 3454 | - return $this->zone; |
|
| 3454 | + return $this->zone; |
|
| 3455 | 3455 | } |
| 3456 | 3456 | } |
| 3457 | 3457 | |
@@ -3477,51 +3477,51 @@ discard block |
||
| 3477 | 3477 | |
| 3478 | 3478 | public function setBaseUrl($baseUrl) |
| 3479 | 3479 | { |
| 3480 | - $this->baseUrl = $baseUrl; |
|
| 3480 | + $this->baseUrl = $baseUrl; |
|
| 3481 | 3481 | } |
| 3482 | 3482 | public function getBaseUrl() |
| 3483 | 3483 | { |
| 3484 | - return $this->baseUrl; |
|
| 3484 | + return $this->baseUrl; |
|
| 3485 | 3485 | } |
| 3486 | 3486 | public function setReportingEnabled($reportingEnabled) |
| 3487 | 3487 | { |
| 3488 | - $this->reportingEnabled = $reportingEnabled; |
|
| 3488 | + $this->reportingEnabled = $reportingEnabled; |
|
| 3489 | 3489 | } |
| 3490 | 3490 | public function getReportingEnabled() |
| 3491 | 3491 | { |
| 3492 | - return $this->reportingEnabled; |
|
| 3492 | + return $this->reportingEnabled; |
|
| 3493 | 3493 | } |
| 3494 | 3494 | public function setServicePath($servicePath) |
| 3495 | 3495 | { |
| 3496 | - $this->servicePath = $servicePath; |
|
| 3496 | + $this->servicePath = $servicePath; |
|
| 3497 | 3497 | } |
| 3498 | 3498 | public function getServicePath() |
| 3499 | 3499 | { |
| 3500 | - return $this->servicePath; |
|
| 3500 | + return $this->servicePath; |
|
| 3501 | 3501 | } |
| 3502 | 3502 | public function setShuffleServicePath($shuffleServicePath) |
| 3503 | 3503 | { |
| 3504 | - $this->shuffleServicePath = $shuffleServicePath; |
|
| 3504 | + $this->shuffleServicePath = $shuffleServicePath; |
|
| 3505 | 3505 | } |
| 3506 | 3506 | public function getShuffleServicePath() |
| 3507 | 3507 | { |
| 3508 | - return $this->shuffleServicePath; |
|
| 3508 | + return $this->shuffleServicePath; |
|
| 3509 | 3509 | } |
| 3510 | 3510 | public function setTempStoragePrefix($tempStoragePrefix) |
| 3511 | 3511 | { |
| 3512 | - $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 3512 | + $this->tempStoragePrefix = $tempStoragePrefix; |
|
| 3513 | 3513 | } |
| 3514 | 3514 | public function getTempStoragePrefix() |
| 3515 | 3515 | { |
| 3516 | - return $this->tempStoragePrefix; |
|
| 3516 | + return $this->tempStoragePrefix; |
|
| 3517 | 3517 | } |
| 3518 | 3518 | public function setWorkerId($workerId) |
| 3519 | 3519 | { |
| 3520 | - $this->workerId = $workerId; |
|
| 3520 | + $this->workerId = $workerId; |
|
| 3521 | 3521 | } |
| 3522 | 3522 | public function getWorkerId() |
| 3523 | 3523 | { |
| 3524 | - return $this->workerId; |
|
| 3524 | + return $this->workerId; |
|
| 3525 | 3525 | } |
| 3526 | 3526 | } |
| 3527 | 3527 | |
@@ -3537,18 +3537,18 @@ discard block |
||
| 3537 | 3537 | |
| 3538 | 3538 | public function setInput(Google_Service_Dataflow_InstructionInput $input) |
| 3539 | 3539 | { |
| 3540 | - $this->input = $input; |
|
| 3540 | + $this->input = $input; |
|
| 3541 | 3541 | } |
| 3542 | 3542 | public function getInput() |
| 3543 | 3543 | { |
| 3544 | - return $this->input; |
|
| 3544 | + return $this->input; |
|
| 3545 | 3545 | } |
| 3546 | 3546 | public function setSink(Google_Service_Dataflow_Sink $sink) |
| 3547 | 3547 | { |
| 3548 | - $this->sink = $sink; |
|
| 3548 | + $this->sink = $sink; |
|
| 3549 | 3549 | } |
| 3550 | 3550 | public function getSink() |
| 3551 | 3551 | { |
| 3552 | - return $this->sink; |
|
| 3552 | + return $this->sink; |
|
| 3553 | 3553 | } |
| 3554 | 3554 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | 'type' => 'string', |
| 80 | 80 | ), |
| 81 | 81 | ), |
| 82 | - ),'get' => array( |
|
| 82 | + ), 'get' => array( |
|
| 83 | 83 | 'path' => '{projectId}/jobs/{jobId}', |
| 84 | 84 | 'httpMethod' => 'GET', |
| 85 | 85 | 'parameters' => array( |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | 'type' => 'string', |
| 99 | 99 | ), |
| 100 | 100 | ), |
| 101 | - ),'getMetrics' => array( |
|
| 101 | + ), 'getMetrics' => array( |
|
| 102 | 102 | 'path' => '{projectId}/jobs/{jobId}/metrics', |
| 103 | 103 | 'httpMethod' => 'GET', |
| 104 | 104 | 'parameters' => array( |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | 'type' => 'string', |
| 118 | 118 | ), |
| 119 | 119 | ), |
| 120 | - ),'list' => array( |
|
| 120 | + ), 'list' => array( |
|
| 121 | 121 | 'path' => '{projectId}/jobs', |
| 122 | 122 | 'httpMethod' => 'GET', |
| 123 | 123 | 'parameters' => array( |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | 'type' => 'integer', |
| 140 | 140 | ), |
| 141 | 141 | ), |
| 142 | - ),'patch' => array( |
|
| 142 | + ), 'patch' => array( |
|
| 143 | 143 | 'path' => '{projectId}/jobs/{jobId}', |
| 144 | 144 | 'httpMethod' => 'PATCH', |
| 145 | 145 | 'parameters' => array( |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | 'required' => true, |
| 155 | 155 | ), |
| 156 | 156 | ), |
| 157 | - ),'update' => array( |
|
| 157 | + ), 'update' => array( |
|
| 158 | 158 | 'path' => '{projectId}/jobs/{jobId}', |
| 159 | 159 | 'httpMethod' => 'PUT', |
| 160 | 160 | 'parameters' => array( |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | 'required' => true, |
| 240 | 240 | ), |
| 241 | 241 | ), |
| 242 | - ),'reportStatus' => array( |
|
| 242 | + ), 'reportStatus' => array( |
|
| 243 | 243 | 'path' => '{projectId}/jobs/{jobId}/workItems:reportStatus', |
| 244 | 244 | 'httpMethod' => 'POST', |
| 245 | 245 | 'parameters' => array( |
@@ -43,72 +43,72 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function __construct(Google_Client $client) |
| 45 | 45 | { |
| 46 | - parent::__construct($client); |
|
| 47 | - $this->servicePath = 'apps/reporting/audit/v1/'; |
|
| 48 | - $this->version = 'v1'; |
|
| 49 | - $this->serviceName = 'audit'; |
|
| 46 | + parent::__construct($client); |
|
| 47 | + $this->servicePath = 'apps/reporting/audit/v1/'; |
|
| 48 | + $this->version = 'v1'; |
|
| 49 | + $this->serviceName = 'audit'; |
|
| 50 | 50 | |
| 51 | - $this->activities = new Google_Service_Audit_Activities_Resource( |
|
| 52 | - $this, |
|
| 53 | - $this->serviceName, |
|
| 54 | - 'activities', |
|
| 55 | - array( |
|
| 56 | - 'methods' => array( |
|
| 57 | - 'list' => array( |
|
| 58 | - 'path' => '{customerId}/{applicationId}', |
|
| 59 | - 'httpMethod' => 'GET', |
|
| 60 | - 'parameters' => array( |
|
| 61 | - 'customerId' => array( |
|
| 62 | - 'location' => 'path', |
|
| 63 | - 'type' => 'string', |
|
| 64 | - 'required' => true, |
|
| 65 | - ), |
|
| 66 | - 'applicationId' => array( |
|
| 67 | - 'location' => 'path', |
|
| 68 | - 'type' => 'string', |
|
| 69 | - 'required' => true, |
|
| 70 | - ), |
|
| 71 | - 'actorEmail' => array( |
|
| 72 | - 'location' => 'query', |
|
| 73 | - 'type' => 'string', |
|
| 74 | - ), |
|
| 75 | - 'actorApplicationId' => array( |
|
| 76 | - 'location' => 'query', |
|
| 77 | - 'type' => 'string', |
|
| 78 | - ), |
|
| 79 | - 'actorIpAddress' => array( |
|
| 80 | - 'location' => 'query', |
|
| 81 | - 'type' => 'string', |
|
| 82 | - ), |
|
| 83 | - 'caller' => array( |
|
| 84 | - 'location' => 'query', |
|
| 85 | - 'type' => 'string', |
|
| 86 | - ), |
|
| 87 | - 'maxResults' => array( |
|
| 88 | - 'location' => 'query', |
|
| 89 | - 'type' => 'integer', |
|
| 90 | - ), |
|
| 91 | - 'eventName' => array( |
|
| 92 | - 'location' => 'query', |
|
| 93 | - 'type' => 'string', |
|
| 94 | - ), |
|
| 95 | - 'startTime' => array( |
|
| 96 | - 'location' => 'query', |
|
| 97 | - 'type' => 'string', |
|
| 98 | - ), |
|
| 99 | - 'endTime' => array( |
|
| 100 | - 'location' => 'query', |
|
| 101 | - 'type' => 'string', |
|
| 102 | - ), |
|
| 103 | - 'continuationToken' => array( |
|
| 104 | - 'location' => 'query', |
|
| 105 | - 'type' => 'string', |
|
| 106 | - ), |
|
| 107 | - ), |
|
| 108 | - ), |
|
| 109 | - ) |
|
| 110 | - ) |
|
| 111 | - ); |
|
| 51 | + $this->activities = new Google_Service_Audit_Activities_Resource( |
|
| 52 | + $this, |
|
| 53 | + $this->serviceName, |
|
| 54 | + 'activities', |
|
| 55 | + array( |
|
| 56 | + 'methods' => array( |
|
| 57 | + 'list' => array( |
|
| 58 | + 'path' => '{customerId}/{applicationId}', |
|
| 59 | + 'httpMethod' => 'GET', |
|
| 60 | + 'parameters' => array( |
|
| 61 | + 'customerId' => array( |
|
| 62 | + 'location' => 'path', |
|
| 63 | + 'type' => 'string', |
|
| 64 | + 'required' => true, |
|
| 65 | + ), |
|
| 66 | + 'applicationId' => array( |
|
| 67 | + 'location' => 'path', |
|
| 68 | + 'type' => 'string', |
|
| 69 | + 'required' => true, |
|
| 70 | + ), |
|
| 71 | + 'actorEmail' => array( |
|
| 72 | + 'location' => 'query', |
|
| 73 | + 'type' => 'string', |
|
| 74 | + ), |
|
| 75 | + 'actorApplicationId' => array( |
|
| 76 | + 'location' => 'query', |
|
| 77 | + 'type' => 'string', |
|
| 78 | + ), |
|
| 79 | + 'actorIpAddress' => array( |
|
| 80 | + 'location' => 'query', |
|
| 81 | + 'type' => 'string', |
|
| 82 | + ), |
|
| 83 | + 'caller' => array( |
|
| 84 | + 'location' => 'query', |
|
| 85 | + 'type' => 'string', |
|
| 86 | + ), |
|
| 87 | + 'maxResults' => array( |
|
| 88 | + 'location' => 'query', |
|
| 89 | + 'type' => 'integer', |
|
| 90 | + ), |
|
| 91 | + 'eventName' => array( |
|
| 92 | + 'location' => 'query', |
|
| 93 | + 'type' => 'string', |
|
| 94 | + ), |
|
| 95 | + 'startTime' => array( |
|
| 96 | + 'location' => 'query', |
|
| 97 | + 'type' => 'string', |
|
| 98 | + ), |
|
| 99 | + 'endTime' => array( |
|
| 100 | + 'location' => 'query', |
|
| 101 | + 'type' => 'string', |
|
| 102 | + ), |
|
| 103 | + 'continuationToken' => array( |
|
| 104 | + 'location' => 'query', |
|
| 105 | + 'type' => 'string', |
|
| 106 | + ), |
|
| 107 | + ), |
|
| 108 | + ), |
|
| 109 | + ) |
|
| 110 | + ) |
|
| 111 | + ); |
|
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | |
@@ -152,9 +152,9 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | public function listActivities($customerId, $applicationId, $optParams = array()) |
| 154 | 154 | { |
| 155 | - $params = array('customerId' => $customerId, 'applicationId' => $applicationId); |
|
| 156 | - $params = array_merge($params, $optParams); |
|
| 157 | - return $this->call('list', array($params), "Google_Service_Audit_Activities"); |
|
| 155 | + $params = array('customerId' => $customerId, 'applicationId' => $applicationId); |
|
| 156 | + $params = array_merge($params, $optParams); |
|
| 157 | + return $this->call('list', array($params), "Google_Service_Audit_Activities"); |
|
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | |
@@ -174,27 +174,27 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | public function setItems($items) |
| 176 | 176 | { |
| 177 | - $this->items = $items; |
|
| 177 | + $this->items = $items; |
|
| 178 | 178 | } |
| 179 | 179 | public function getItems() |
| 180 | 180 | { |
| 181 | - return $this->items; |
|
| 181 | + return $this->items; |
|
| 182 | 182 | } |
| 183 | 183 | public function setKind($kind) |
| 184 | 184 | { |
| 185 | - $this->kind = $kind; |
|
| 185 | + $this->kind = $kind; |
|
| 186 | 186 | } |
| 187 | 187 | public function getKind() |
| 188 | 188 | { |
| 189 | - return $this->kind; |
|
| 189 | + return $this->kind; |
|
| 190 | 190 | } |
| 191 | 191 | public function setNext($next) |
| 192 | 192 | { |
| 193 | - $this->next = $next; |
|
| 193 | + $this->next = $next; |
|
| 194 | 194 | } |
| 195 | 195 | public function getNext() |
| 196 | 196 | { |
| 197 | - return $this->next; |
|
| 197 | + return $this->next; |
|
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | 200 | |
@@ -216,51 +216,51 @@ discard block |
||
| 216 | 216 | |
| 217 | 217 | public function setActor(Google_Service_Audit_ActivityActor $actor) |
| 218 | 218 | { |
| 219 | - $this->actor = $actor; |
|
| 219 | + $this->actor = $actor; |
|
| 220 | 220 | } |
| 221 | 221 | public function getActor() |
| 222 | 222 | { |
| 223 | - return $this->actor; |
|
| 223 | + return $this->actor; |
|
| 224 | 224 | } |
| 225 | 225 | public function setEvents($events) |
| 226 | 226 | { |
| 227 | - $this->events = $events; |
|
| 227 | + $this->events = $events; |
|
| 228 | 228 | } |
| 229 | 229 | public function getEvents() |
| 230 | 230 | { |
| 231 | - return $this->events; |
|
| 231 | + return $this->events; |
|
| 232 | 232 | } |
| 233 | 233 | public function setId(Google_Service_Audit_ActivityId $id) |
| 234 | 234 | { |
| 235 | - $this->id = $id; |
|
| 235 | + $this->id = $id; |
|
| 236 | 236 | } |
| 237 | 237 | public function getId() |
| 238 | 238 | { |
| 239 | - return $this->id; |
|
| 239 | + return $this->id; |
|
| 240 | 240 | } |
| 241 | 241 | public function setIpAddress($ipAddress) |
| 242 | 242 | { |
| 243 | - $this->ipAddress = $ipAddress; |
|
| 243 | + $this->ipAddress = $ipAddress; |
|
| 244 | 244 | } |
| 245 | 245 | public function getIpAddress() |
| 246 | 246 | { |
| 247 | - return $this->ipAddress; |
|
| 247 | + return $this->ipAddress; |
|
| 248 | 248 | } |
| 249 | 249 | public function setKind($kind) |
| 250 | 250 | { |
| 251 | - $this->kind = $kind; |
|
| 251 | + $this->kind = $kind; |
|
| 252 | 252 | } |
| 253 | 253 | public function getKind() |
| 254 | 254 | { |
| 255 | - return $this->kind; |
|
| 255 | + return $this->kind; |
|
| 256 | 256 | } |
| 257 | 257 | public function setOwnerDomain($ownerDomain) |
| 258 | 258 | { |
| 259 | - $this->ownerDomain = $ownerDomain; |
|
| 259 | + $this->ownerDomain = $ownerDomain; |
|
| 260 | 260 | } |
| 261 | 261 | public function getOwnerDomain() |
| 262 | 262 | { |
| 263 | - return $this->ownerDomain; |
|
| 263 | + return $this->ownerDomain; |
|
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | |
@@ -276,35 +276,35 @@ discard block |
||
| 276 | 276 | |
| 277 | 277 | public function setApplicationId($applicationId) |
| 278 | 278 | { |
| 279 | - $this->applicationId = $applicationId; |
|
| 279 | + $this->applicationId = $applicationId; |
|
| 280 | 280 | } |
| 281 | 281 | public function getApplicationId() |
| 282 | 282 | { |
| 283 | - return $this->applicationId; |
|
| 283 | + return $this->applicationId; |
|
| 284 | 284 | } |
| 285 | 285 | public function setCallerType($callerType) |
| 286 | 286 | { |
| 287 | - $this->callerType = $callerType; |
|
| 287 | + $this->callerType = $callerType; |
|
| 288 | 288 | } |
| 289 | 289 | public function getCallerType() |
| 290 | 290 | { |
| 291 | - return $this->callerType; |
|
| 291 | + return $this->callerType; |
|
| 292 | 292 | } |
| 293 | 293 | public function setEmail($email) |
| 294 | 294 | { |
| 295 | - $this->email = $email; |
|
| 295 | + $this->email = $email; |
|
| 296 | 296 | } |
| 297 | 297 | public function getEmail() |
| 298 | 298 | { |
| 299 | - return $this->email; |
|
| 299 | + return $this->email; |
|
| 300 | 300 | } |
| 301 | 301 | public function setKey($key) |
| 302 | 302 | { |
| 303 | - $this->key = $key; |
|
| 303 | + $this->key = $key; |
|
| 304 | 304 | } |
| 305 | 305 | public function getKey() |
| 306 | 306 | { |
| 307 | - return $this->key; |
|
| 307 | + return $this->key; |
|
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | 310 | |
@@ -321,27 +321,27 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | public function setEventType($eventType) |
| 323 | 323 | { |
| 324 | - $this->eventType = $eventType; |
|
| 324 | + $this->eventType = $eventType; |
|
| 325 | 325 | } |
| 326 | 326 | public function getEventType() |
| 327 | 327 | { |
| 328 | - return $this->eventType; |
|
| 328 | + return $this->eventType; |
|
| 329 | 329 | } |
| 330 | 330 | public function setName($name) |
| 331 | 331 | { |
| 332 | - $this->name = $name; |
|
| 332 | + $this->name = $name; |
|
| 333 | 333 | } |
| 334 | 334 | public function getName() |
| 335 | 335 | { |
| 336 | - return $this->name; |
|
| 336 | + return $this->name; |
|
| 337 | 337 | } |
| 338 | 338 | public function setParameters($parameters) |
| 339 | 339 | { |
| 340 | - $this->parameters = $parameters; |
|
| 340 | + $this->parameters = $parameters; |
|
| 341 | 341 | } |
| 342 | 342 | public function getParameters() |
| 343 | 343 | { |
| 344 | - return $this->parameters; |
|
| 344 | + return $this->parameters; |
|
| 345 | 345 | } |
| 346 | 346 | } |
| 347 | 347 | |
@@ -355,19 +355,19 @@ discard block |
||
| 355 | 355 | |
| 356 | 356 | public function setName($name) |
| 357 | 357 | { |
| 358 | - $this->name = $name; |
|
| 358 | + $this->name = $name; |
|
| 359 | 359 | } |
| 360 | 360 | public function getName() |
| 361 | 361 | { |
| 362 | - return $this->name; |
|
| 362 | + return $this->name; |
|
| 363 | 363 | } |
| 364 | 364 | public function setValue($value) |
| 365 | 365 | { |
| 366 | - $this->value = $value; |
|
| 366 | + $this->value = $value; |
|
| 367 | 367 | } |
| 368 | 368 | public function getValue() |
| 369 | 369 | { |
| 370 | - return $this->value; |
|
| 370 | + return $this->value; |
|
| 371 | 371 | } |
| 372 | 372 | } |
| 373 | 373 | |
@@ -383,34 +383,34 @@ discard block |
||
| 383 | 383 | |
| 384 | 384 | public function setApplicationId($applicationId) |
| 385 | 385 | { |
| 386 | - $this->applicationId = $applicationId; |
|
| 386 | + $this->applicationId = $applicationId; |
|
| 387 | 387 | } |
| 388 | 388 | public function getApplicationId() |
| 389 | 389 | { |
| 390 | - return $this->applicationId; |
|
| 390 | + return $this->applicationId; |
|
| 391 | 391 | } |
| 392 | 392 | public function setCustomerId($customerId) |
| 393 | 393 | { |
| 394 | - $this->customerId = $customerId; |
|
| 394 | + $this->customerId = $customerId; |
|
| 395 | 395 | } |
| 396 | 396 | public function getCustomerId() |
| 397 | 397 | { |
| 398 | - return $this->customerId; |
|
| 398 | + return $this->customerId; |
|
| 399 | 399 | } |
| 400 | 400 | public function setTime($time) |
| 401 | 401 | { |
| 402 | - $this->time = $time; |
|
| 402 | + $this->time = $time; |
|
| 403 | 403 | } |
| 404 | 404 | public function getTime() |
| 405 | 405 | { |
| 406 | - return $this->time; |
|
| 406 | + return $this->time; |
|
| 407 | 407 | } |
| 408 | 408 | public function setUniqQualifier($uniqQualifier) |
| 409 | 409 | { |
| 410 | - $this->uniqQualifier = $uniqQualifier; |
|
| 410 | + $this->uniqQualifier = $uniqQualifier; |
|
| 411 | 411 | } |
| 412 | 412 | public function getUniqQualifier() |
| 413 | 413 | { |
| 414 | - return $this->uniqQualifier; |
|
| 414 | + return $this->uniqQualifier; |
|
| 415 | 415 | } |
| 416 | 416 | } |
@@ -32,22 +32,22 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Manage your Google Classroom classes. */ |
| 34 | 34 | const CLASSROOM_COURSES = |
| 35 | - "https://www.googleapis.com/auth/classroom.courses"; |
|
| 35 | + "https://www.googleapis.com/auth/classroom.courses"; |
|
| 36 | 36 | /** View your Google Classroom classes. */ |
| 37 | 37 | const CLASSROOM_COURSES_READONLY = |
| 38 | - "https://www.googleapis.com/auth/classroom.courses.readonly"; |
|
| 38 | + "https://www.googleapis.com/auth/classroom.courses.readonly"; |
|
| 39 | 39 | /** View the email addresses of people in your classes. */ |
| 40 | 40 | const CLASSROOM_PROFILE_EMAILS = |
| 41 | - "https://www.googleapis.com/auth/classroom.profile.emails"; |
|
| 41 | + "https://www.googleapis.com/auth/classroom.profile.emails"; |
|
| 42 | 42 | /** View the profile photos of people in your classes. */ |
| 43 | 43 | const CLASSROOM_PROFILE_PHOTOS = |
| 44 | - "https://www.googleapis.com/auth/classroom.profile.photos"; |
|
| 44 | + "https://www.googleapis.com/auth/classroom.profile.photos"; |
|
| 45 | 45 | /** Manage your Google Classroom class rosters. */ |
| 46 | 46 | const CLASSROOM_ROSTERS = |
| 47 | - "https://www.googleapis.com/auth/classroom.rosters"; |
|
| 47 | + "https://www.googleapis.com/auth/classroom.rosters"; |
|
| 48 | 48 | /** View your Google Classroom class rosters. */ |
| 49 | 49 | const CLASSROOM_ROSTERS_READONLY = |
| 50 | - "https://www.googleapis.com/auth/classroom.rosters.readonly"; |
|
| 50 | + "https://www.googleapis.com/auth/classroom.rosters.readonly"; |
|
| 51 | 51 | |
| 52 | 52 | public $courses; |
| 53 | 53 | public $courses_aliases; |
@@ -64,369 +64,369 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | public function __construct(Google_Client $client) |
| 66 | 66 | { |
| 67 | - parent::__construct($client); |
|
| 68 | - $this->rootUrl = 'https://classroom.googleapis.com/'; |
|
| 69 | - $this->servicePath = ''; |
|
| 70 | - $this->version = 'v1'; |
|
| 71 | - $this->serviceName = 'classroom'; |
|
| 72 | - |
|
| 73 | - $this->courses = new Google_Service_Classroom_Courses_Resource( |
|
| 74 | - $this, |
|
| 75 | - $this->serviceName, |
|
| 76 | - 'courses', |
|
| 77 | - array( |
|
| 78 | - 'methods' => array( |
|
| 79 | - 'create' => array( |
|
| 80 | - 'path' => 'v1/courses', |
|
| 81 | - 'httpMethod' => 'POST', |
|
| 82 | - 'parameters' => array(), |
|
| 83 | - ),'delete' => array( |
|
| 84 | - 'path' => 'v1/courses/{id}', |
|
| 85 | - 'httpMethod' => 'DELETE', |
|
| 86 | - 'parameters' => array( |
|
| 87 | - 'id' => array( |
|
| 88 | - 'location' => 'path', |
|
| 89 | - 'type' => 'string', |
|
| 90 | - 'required' => true, |
|
| 91 | - ), |
|
| 92 | - ), |
|
| 93 | - ),'get' => array( |
|
| 94 | - 'path' => 'v1/courses/{id}', |
|
| 95 | - 'httpMethod' => 'GET', |
|
| 96 | - 'parameters' => array( |
|
| 97 | - 'id' => array( |
|
| 98 | - 'location' => 'path', |
|
| 99 | - 'type' => 'string', |
|
| 100 | - 'required' => true, |
|
| 101 | - ), |
|
| 102 | - ), |
|
| 103 | - ),'list' => array( |
|
| 104 | - 'path' => 'v1/courses', |
|
| 105 | - 'httpMethod' => 'GET', |
|
| 106 | - 'parameters' => array( |
|
| 107 | - 'teacherId' => array( |
|
| 108 | - 'location' => 'query', |
|
| 109 | - 'type' => 'string', |
|
| 110 | - ), |
|
| 111 | - 'pageToken' => array( |
|
| 112 | - 'location' => 'query', |
|
| 113 | - 'type' => 'string', |
|
| 114 | - ), |
|
| 115 | - 'studentId' => array( |
|
| 116 | - 'location' => 'query', |
|
| 117 | - 'type' => 'string', |
|
| 118 | - ), |
|
| 119 | - 'pageSize' => array( |
|
| 120 | - 'location' => 'query', |
|
| 121 | - 'type' => 'integer', |
|
| 122 | - ), |
|
| 123 | - ), |
|
| 124 | - ),'patch' => array( |
|
| 125 | - 'path' => 'v1/courses/{id}', |
|
| 126 | - 'httpMethod' => 'PATCH', |
|
| 127 | - 'parameters' => array( |
|
| 128 | - 'id' => array( |
|
| 129 | - 'location' => 'path', |
|
| 130 | - 'type' => 'string', |
|
| 131 | - 'required' => true, |
|
| 132 | - ), |
|
| 133 | - 'updateMask' => array( |
|
| 134 | - 'location' => 'query', |
|
| 135 | - 'type' => 'string', |
|
| 136 | - ), |
|
| 137 | - ), |
|
| 138 | - ),'update' => array( |
|
| 139 | - 'path' => 'v1/courses/{id}', |
|
| 140 | - 'httpMethod' => 'PUT', |
|
| 141 | - 'parameters' => array( |
|
| 142 | - 'id' => array( |
|
| 143 | - 'location' => 'path', |
|
| 144 | - 'type' => 'string', |
|
| 145 | - 'required' => true, |
|
| 146 | - ), |
|
| 147 | - ), |
|
| 148 | - ), |
|
| 149 | - ) |
|
| 150 | - ) |
|
| 151 | - ); |
|
| 152 | - $this->courses_aliases = new Google_Service_Classroom_CoursesAliases_Resource( |
|
| 153 | - $this, |
|
| 154 | - $this->serviceName, |
|
| 155 | - 'aliases', |
|
| 156 | - array( |
|
| 157 | - 'methods' => array( |
|
| 158 | - 'create' => array( |
|
| 159 | - 'path' => 'v1/courses/{courseId}/aliases', |
|
| 160 | - 'httpMethod' => 'POST', |
|
| 161 | - 'parameters' => array( |
|
| 162 | - 'courseId' => array( |
|
| 163 | - 'location' => 'path', |
|
| 164 | - 'type' => 'string', |
|
| 165 | - 'required' => true, |
|
| 166 | - ), |
|
| 167 | - ), |
|
| 168 | - ),'delete' => array( |
|
| 169 | - 'path' => 'v1/courses/{courseId}/aliases/{alias}', |
|
| 170 | - 'httpMethod' => 'DELETE', |
|
| 171 | - 'parameters' => array( |
|
| 172 | - 'courseId' => array( |
|
| 173 | - 'location' => 'path', |
|
| 174 | - 'type' => 'string', |
|
| 175 | - 'required' => true, |
|
| 176 | - ), |
|
| 177 | - 'alias' => array( |
|
| 178 | - 'location' => 'path', |
|
| 179 | - 'type' => 'string', |
|
| 180 | - 'required' => true, |
|
| 181 | - ), |
|
| 182 | - ), |
|
| 183 | - ),'list' => array( |
|
| 184 | - 'path' => 'v1/courses/{courseId}/aliases', |
|
| 185 | - 'httpMethod' => 'GET', |
|
| 186 | - 'parameters' => array( |
|
| 187 | - 'courseId' => array( |
|
| 188 | - 'location' => 'path', |
|
| 189 | - 'type' => 'string', |
|
| 190 | - 'required' => true, |
|
| 191 | - ), |
|
| 192 | - 'pageToken' => array( |
|
| 193 | - 'location' => 'query', |
|
| 194 | - 'type' => 'string', |
|
| 195 | - ), |
|
| 196 | - 'pageSize' => array( |
|
| 197 | - 'location' => 'query', |
|
| 198 | - 'type' => 'integer', |
|
| 199 | - ), |
|
| 200 | - ), |
|
| 201 | - ), |
|
| 202 | - ) |
|
| 203 | - ) |
|
| 204 | - ); |
|
| 205 | - $this->courses_students = new Google_Service_Classroom_CoursesStudents_Resource( |
|
| 206 | - $this, |
|
| 207 | - $this->serviceName, |
|
| 208 | - 'students', |
|
| 209 | - array( |
|
| 210 | - 'methods' => array( |
|
| 211 | - 'create' => array( |
|
| 212 | - 'path' => 'v1/courses/{courseId}/students', |
|
| 213 | - 'httpMethod' => 'POST', |
|
| 214 | - 'parameters' => array( |
|
| 215 | - 'courseId' => array( |
|
| 216 | - 'location' => 'path', |
|
| 217 | - 'type' => 'string', |
|
| 218 | - 'required' => true, |
|
| 219 | - ), |
|
| 220 | - 'enrollmentCode' => array( |
|
| 221 | - 'location' => 'query', |
|
| 222 | - 'type' => 'string', |
|
| 223 | - ), |
|
| 224 | - ), |
|
| 225 | - ),'delete' => array( |
|
| 226 | - 'path' => 'v1/courses/{courseId}/students/{userId}', |
|
| 227 | - 'httpMethod' => 'DELETE', |
|
| 228 | - 'parameters' => array( |
|
| 229 | - 'courseId' => array( |
|
| 230 | - 'location' => 'path', |
|
| 231 | - 'type' => 'string', |
|
| 232 | - 'required' => true, |
|
| 233 | - ), |
|
| 234 | - 'userId' => array( |
|
| 235 | - 'location' => 'path', |
|
| 236 | - 'type' => 'string', |
|
| 237 | - 'required' => true, |
|
| 238 | - ), |
|
| 239 | - ), |
|
| 240 | - ),'get' => array( |
|
| 241 | - 'path' => 'v1/courses/{courseId}/students/{userId}', |
|
| 242 | - 'httpMethod' => 'GET', |
|
| 243 | - 'parameters' => array( |
|
| 244 | - 'courseId' => array( |
|
| 245 | - 'location' => 'path', |
|
| 246 | - 'type' => 'string', |
|
| 247 | - 'required' => true, |
|
| 248 | - ), |
|
| 249 | - 'userId' => array( |
|
| 250 | - 'location' => 'path', |
|
| 251 | - 'type' => 'string', |
|
| 252 | - 'required' => true, |
|
| 253 | - ), |
|
| 254 | - ), |
|
| 255 | - ),'list' => array( |
|
| 256 | - 'path' => 'v1/courses/{courseId}/students', |
|
| 257 | - 'httpMethod' => 'GET', |
|
| 258 | - 'parameters' => array( |
|
| 259 | - 'courseId' => array( |
|
| 260 | - 'location' => 'path', |
|
| 261 | - 'type' => 'string', |
|
| 262 | - 'required' => true, |
|
| 263 | - ), |
|
| 264 | - 'pageToken' => array( |
|
| 265 | - 'location' => 'query', |
|
| 266 | - 'type' => 'string', |
|
| 267 | - ), |
|
| 268 | - 'pageSize' => array( |
|
| 269 | - 'location' => 'query', |
|
| 270 | - 'type' => 'integer', |
|
| 271 | - ), |
|
| 272 | - ), |
|
| 273 | - ), |
|
| 274 | - ) |
|
| 275 | - ) |
|
| 276 | - ); |
|
| 277 | - $this->courses_teachers = new Google_Service_Classroom_CoursesTeachers_Resource( |
|
| 278 | - $this, |
|
| 279 | - $this->serviceName, |
|
| 280 | - 'teachers', |
|
| 281 | - array( |
|
| 282 | - 'methods' => array( |
|
| 283 | - 'create' => array( |
|
| 284 | - 'path' => 'v1/courses/{courseId}/teachers', |
|
| 285 | - 'httpMethod' => 'POST', |
|
| 286 | - 'parameters' => array( |
|
| 287 | - 'courseId' => array( |
|
| 288 | - 'location' => 'path', |
|
| 289 | - 'type' => 'string', |
|
| 290 | - 'required' => true, |
|
| 291 | - ), |
|
| 292 | - ), |
|
| 293 | - ),'delete' => array( |
|
| 294 | - 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
|
| 295 | - 'httpMethod' => 'DELETE', |
|
| 296 | - 'parameters' => array( |
|
| 297 | - 'courseId' => array( |
|
| 298 | - 'location' => 'path', |
|
| 299 | - 'type' => 'string', |
|
| 300 | - 'required' => true, |
|
| 301 | - ), |
|
| 302 | - 'userId' => array( |
|
| 303 | - 'location' => 'path', |
|
| 304 | - 'type' => 'string', |
|
| 305 | - 'required' => true, |
|
| 306 | - ), |
|
| 307 | - ), |
|
| 308 | - ),'get' => array( |
|
| 309 | - 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
|
| 310 | - 'httpMethod' => 'GET', |
|
| 311 | - 'parameters' => array( |
|
| 312 | - 'courseId' => array( |
|
| 313 | - 'location' => 'path', |
|
| 314 | - 'type' => 'string', |
|
| 315 | - 'required' => true, |
|
| 316 | - ), |
|
| 317 | - 'userId' => array( |
|
| 318 | - 'location' => 'path', |
|
| 319 | - 'type' => 'string', |
|
| 320 | - 'required' => true, |
|
| 321 | - ), |
|
| 322 | - ), |
|
| 323 | - ),'list' => array( |
|
| 324 | - 'path' => 'v1/courses/{courseId}/teachers', |
|
| 325 | - 'httpMethod' => 'GET', |
|
| 326 | - 'parameters' => array( |
|
| 327 | - 'courseId' => array( |
|
| 328 | - 'location' => 'path', |
|
| 329 | - 'type' => 'string', |
|
| 330 | - 'required' => true, |
|
| 331 | - ), |
|
| 332 | - 'pageToken' => array( |
|
| 333 | - 'location' => 'query', |
|
| 334 | - 'type' => 'string', |
|
| 335 | - ), |
|
| 336 | - 'pageSize' => array( |
|
| 337 | - 'location' => 'query', |
|
| 338 | - 'type' => 'integer', |
|
| 339 | - ), |
|
| 340 | - ), |
|
| 341 | - ), |
|
| 342 | - ) |
|
| 343 | - ) |
|
| 344 | - ); |
|
| 345 | - $this->invitations = new Google_Service_Classroom_Invitations_Resource( |
|
| 346 | - $this, |
|
| 347 | - $this->serviceName, |
|
| 348 | - 'invitations', |
|
| 349 | - array( |
|
| 350 | - 'methods' => array( |
|
| 351 | - 'accept' => array( |
|
| 352 | - 'path' => 'v1/invitations/{id}:accept', |
|
| 353 | - 'httpMethod' => 'POST', |
|
| 354 | - 'parameters' => array( |
|
| 355 | - 'id' => array( |
|
| 356 | - 'location' => 'path', |
|
| 357 | - 'type' => 'string', |
|
| 358 | - 'required' => true, |
|
| 359 | - ), |
|
| 360 | - ), |
|
| 361 | - ),'create' => array( |
|
| 362 | - 'path' => 'v1/invitations', |
|
| 363 | - 'httpMethod' => 'POST', |
|
| 364 | - 'parameters' => array(), |
|
| 365 | - ),'delete' => array( |
|
| 366 | - 'path' => 'v1/invitations/{id}', |
|
| 367 | - 'httpMethod' => 'DELETE', |
|
| 368 | - 'parameters' => array( |
|
| 369 | - 'id' => array( |
|
| 370 | - 'location' => 'path', |
|
| 371 | - 'type' => 'string', |
|
| 372 | - 'required' => true, |
|
| 373 | - ), |
|
| 374 | - ), |
|
| 375 | - ),'get' => array( |
|
| 376 | - 'path' => 'v1/invitations/{id}', |
|
| 377 | - 'httpMethod' => 'GET', |
|
| 378 | - 'parameters' => array( |
|
| 379 | - 'id' => array( |
|
| 380 | - 'location' => 'path', |
|
| 381 | - 'type' => 'string', |
|
| 382 | - 'required' => true, |
|
| 383 | - ), |
|
| 384 | - ), |
|
| 385 | - ),'list' => array( |
|
| 386 | - 'path' => 'v1/invitations', |
|
| 387 | - 'httpMethod' => 'GET', |
|
| 388 | - 'parameters' => array( |
|
| 389 | - 'courseId' => array( |
|
| 390 | - 'location' => 'query', |
|
| 391 | - 'type' => 'string', |
|
| 392 | - ), |
|
| 393 | - 'pageToken' => array( |
|
| 394 | - 'location' => 'query', |
|
| 395 | - 'type' => 'string', |
|
| 396 | - ), |
|
| 397 | - 'userId' => array( |
|
| 398 | - 'location' => 'query', |
|
| 399 | - 'type' => 'string', |
|
| 400 | - ), |
|
| 401 | - 'pageSize' => array( |
|
| 402 | - 'location' => 'query', |
|
| 403 | - 'type' => 'integer', |
|
| 404 | - ), |
|
| 405 | - ), |
|
| 406 | - ), |
|
| 407 | - ) |
|
| 408 | - ) |
|
| 409 | - ); |
|
| 410 | - $this->userProfiles = new Google_Service_Classroom_UserProfiles_Resource( |
|
| 411 | - $this, |
|
| 412 | - $this->serviceName, |
|
| 413 | - 'userProfiles', |
|
| 414 | - array( |
|
| 415 | - 'methods' => array( |
|
| 416 | - 'get' => array( |
|
| 417 | - 'path' => 'v1/userProfiles/{userId}', |
|
| 418 | - 'httpMethod' => 'GET', |
|
| 419 | - 'parameters' => array( |
|
| 420 | - 'userId' => array( |
|
| 421 | - 'location' => 'path', |
|
| 422 | - 'type' => 'string', |
|
| 423 | - 'required' => true, |
|
| 424 | - ), |
|
| 425 | - ), |
|
| 426 | - ), |
|
| 427 | - ) |
|
| 428 | - ) |
|
| 429 | - ); |
|
| 67 | + parent::__construct($client); |
|
| 68 | + $this->rootUrl = 'https://classroom.googleapis.com/'; |
|
| 69 | + $this->servicePath = ''; |
|
| 70 | + $this->version = 'v1'; |
|
| 71 | + $this->serviceName = 'classroom'; |
|
| 72 | + |
|
| 73 | + $this->courses = new Google_Service_Classroom_Courses_Resource( |
|
| 74 | + $this, |
|
| 75 | + $this->serviceName, |
|
| 76 | + 'courses', |
|
| 77 | + array( |
|
| 78 | + 'methods' => array( |
|
| 79 | + 'create' => array( |
|
| 80 | + 'path' => 'v1/courses', |
|
| 81 | + 'httpMethod' => 'POST', |
|
| 82 | + 'parameters' => array(), |
|
| 83 | + ),'delete' => array( |
|
| 84 | + 'path' => 'v1/courses/{id}', |
|
| 85 | + 'httpMethod' => 'DELETE', |
|
| 86 | + 'parameters' => array( |
|
| 87 | + 'id' => array( |
|
| 88 | + 'location' => 'path', |
|
| 89 | + 'type' => 'string', |
|
| 90 | + 'required' => true, |
|
| 91 | + ), |
|
| 92 | + ), |
|
| 93 | + ),'get' => array( |
|
| 94 | + 'path' => 'v1/courses/{id}', |
|
| 95 | + 'httpMethod' => 'GET', |
|
| 96 | + 'parameters' => array( |
|
| 97 | + 'id' => array( |
|
| 98 | + 'location' => 'path', |
|
| 99 | + 'type' => 'string', |
|
| 100 | + 'required' => true, |
|
| 101 | + ), |
|
| 102 | + ), |
|
| 103 | + ),'list' => array( |
|
| 104 | + 'path' => 'v1/courses', |
|
| 105 | + 'httpMethod' => 'GET', |
|
| 106 | + 'parameters' => array( |
|
| 107 | + 'teacherId' => array( |
|
| 108 | + 'location' => 'query', |
|
| 109 | + 'type' => 'string', |
|
| 110 | + ), |
|
| 111 | + 'pageToken' => array( |
|
| 112 | + 'location' => 'query', |
|
| 113 | + 'type' => 'string', |
|
| 114 | + ), |
|
| 115 | + 'studentId' => array( |
|
| 116 | + 'location' => 'query', |
|
| 117 | + 'type' => 'string', |
|
| 118 | + ), |
|
| 119 | + 'pageSize' => array( |
|
| 120 | + 'location' => 'query', |
|
| 121 | + 'type' => 'integer', |
|
| 122 | + ), |
|
| 123 | + ), |
|
| 124 | + ),'patch' => array( |
|
| 125 | + 'path' => 'v1/courses/{id}', |
|
| 126 | + 'httpMethod' => 'PATCH', |
|
| 127 | + 'parameters' => array( |
|
| 128 | + 'id' => array( |
|
| 129 | + 'location' => 'path', |
|
| 130 | + 'type' => 'string', |
|
| 131 | + 'required' => true, |
|
| 132 | + ), |
|
| 133 | + 'updateMask' => array( |
|
| 134 | + 'location' => 'query', |
|
| 135 | + 'type' => 'string', |
|
| 136 | + ), |
|
| 137 | + ), |
|
| 138 | + ),'update' => array( |
|
| 139 | + 'path' => 'v1/courses/{id}', |
|
| 140 | + 'httpMethod' => 'PUT', |
|
| 141 | + 'parameters' => array( |
|
| 142 | + 'id' => array( |
|
| 143 | + 'location' => 'path', |
|
| 144 | + 'type' => 'string', |
|
| 145 | + 'required' => true, |
|
| 146 | + ), |
|
| 147 | + ), |
|
| 148 | + ), |
|
| 149 | + ) |
|
| 150 | + ) |
|
| 151 | + ); |
|
| 152 | + $this->courses_aliases = new Google_Service_Classroom_CoursesAliases_Resource( |
|
| 153 | + $this, |
|
| 154 | + $this->serviceName, |
|
| 155 | + 'aliases', |
|
| 156 | + array( |
|
| 157 | + 'methods' => array( |
|
| 158 | + 'create' => array( |
|
| 159 | + 'path' => 'v1/courses/{courseId}/aliases', |
|
| 160 | + 'httpMethod' => 'POST', |
|
| 161 | + 'parameters' => array( |
|
| 162 | + 'courseId' => array( |
|
| 163 | + 'location' => 'path', |
|
| 164 | + 'type' => 'string', |
|
| 165 | + 'required' => true, |
|
| 166 | + ), |
|
| 167 | + ), |
|
| 168 | + ),'delete' => array( |
|
| 169 | + 'path' => 'v1/courses/{courseId}/aliases/{alias}', |
|
| 170 | + 'httpMethod' => 'DELETE', |
|
| 171 | + 'parameters' => array( |
|
| 172 | + 'courseId' => array( |
|
| 173 | + 'location' => 'path', |
|
| 174 | + 'type' => 'string', |
|
| 175 | + 'required' => true, |
|
| 176 | + ), |
|
| 177 | + 'alias' => array( |
|
| 178 | + 'location' => 'path', |
|
| 179 | + 'type' => 'string', |
|
| 180 | + 'required' => true, |
|
| 181 | + ), |
|
| 182 | + ), |
|
| 183 | + ),'list' => array( |
|
| 184 | + 'path' => 'v1/courses/{courseId}/aliases', |
|
| 185 | + 'httpMethod' => 'GET', |
|
| 186 | + 'parameters' => array( |
|
| 187 | + 'courseId' => array( |
|
| 188 | + 'location' => 'path', |
|
| 189 | + 'type' => 'string', |
|
| 190 | + 'required' => true, |
|
| 191 | + ), |
|
| 192 | + 'pageToken' => array( |
|
| 193 | + 'location' => 'query', |
|
| 194 | + 'type' => 'string', |
|
| 195 | + ), |
|
| 196 | + 'pageSize' => array( |
|
| 197 | + 'location' => 'query', |
|
| 198 | + 'type' => 'integer', |
|
| 199 | + ), |
|
| 200 | + ), |
|
| 201 | + ), |
|
| 202 | + ) |
|
| 203 | + ) |
|
| 204 | + ); |
|
| 205 | + $this->courses_students = new Google_Service_Classroom_CoursesStudents_Resource( |
|
| 206 | + $this, |
|
| 207 | + $this->serviceName, |
|
| 208 | + 'students', |
|
| 209 | + array( |
|
| 210 | + 'methods' => array( |
|
| 211 | + 'create' => array( |
|
| 212 | + 'path' => 'v1/courses/{courseId}/students', |
|
| 213 | + 'httpMethod' => 'POST', |
|
| 214 | + 'parameters' => array( |
|
| 215 | + 'courseId' => array( |
|
| 216 | + 'location' => 'path', |
|
| 217 | + 'type' => 'string', |
|
| 218 | + 'required' => true, |
|
| 219 | + ), |
|
| 220 | + 'enrollmentCode' => array( |
|
| 221 | + 'location' => 'query', |
|
| 222 | + 'type' => 'string', |
|
| 223 | + ), |
|
| 224 | + ), |
|
| 225 | + ),'delete' => array( |
|
| 226 | + 'path' => 'v1/courses/{courseId}/students/{userId}', |
|
| 227 | + 'httpMethod' => 'DELETE', |
|
| 228 | + 'parameters' => array( |
|
| 229 | + 'courseId' => array( |
|
| 230 | + 'location' => 'path', |
|
| 231 | + 'type' => 'string', |
|
| 232 | + 'required' => true, |
|
| 233 | + ), |
|
| 234 | + 'userId' => array( |
|
| 235 | + 'location' => 'path', |
|
| 236 | + 'type' => 'string', |
|
| 237 | + 'required' => true, |
|
| 238 | + ), |
|
| 239 | + ), |
|
| 240 | + ),'get' => array( |
|
| 241 | + 'path' => 'v1/courses/{courseId}/students/{userId}', |
|
| 242 | + 'httpMethod' => 'GET', |
|
| 243 | + 'parameters' => array( |
|
| 244 | + 'courseId' => array( |
|
| 245 | + 'location' => 'path', |
|
| 246 | + 'type' => 'string', |
|
| 247 | + 'required' => true, |
|
| 248 | + ), |
|
| 249 | + 'userId' => array( |
|
| 250 | + 'location' => 'path', |
|
| 251 | + 'type' => 'string', |
|
| 252 | + 'required' => true, |
|
| 253 | + ), |
|
| 254 | + ), |
|
| 255 | + ),'list' => array( |
|
| 256 | + 'path' => 'v1/courses/{courseId}/students', |
|
| 257 | + 'httpMethod' => 'GET', |
|
| 258 | + 'parameters' => array( |
|
| 259 | + 'courseId' => array( |
|
| 260 | + 'location' => 'path', |
|
| 261 | + 'type' => 'string', |
|
| 262 | + 'required' => true, |
|
| 263 | + ), |
|
| 264 | + 'pageToken' => array( |
|
| 265 | + 'location' => 'query', |
|
| 266 | + 'type' => 'string', |
|
| 267 | + ), |
|
| 268 | + 'pageSize' => array( |
|
| 269 | + 'location' => 'query', |
|
| 270 | + 'type' => 'integer', |
|
| 271 | + ), |
|
| 272 | + ), |
|
| 273 | + ), |
|
| 274 | + ) |
|
| 275 | + ) |
|
| 276 | + ); |
|
| 277 | + $this->courses_teachers = new Google_Service_Classroom_CoursesTeachers_Resource( |
|
| 278 | + $this, |
|
| 279 | + $this->serviceName, |
|
| 280 | + 'teachers', |
|
| 281 | + array( |
|
| 282 | + 'methods' => array( |
|
| 283 | + 'create' => array( |
|
| 284 | + 'path' => 'v1/courses/{courseId}/teachers', |
|
| 285 | + 'httpMethod' => 'POST', |
|
| 286 | + 'parameters' => array( |
|
| 287 | + 'courseId' => array( |
|
| 288 | + 'location' => 'path', |
|
| 289 | + 'type' => 'string', |
|
| 290 | + 'required' => true, |
|
| 291 | + ), |
|
| 292 | + ), |
|
| 293 | + ),'delete' => array( |
|
| 294 | + 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
|
| 295 | + 'httpMethod' => 'DELETE', |
|
| 296 | + 'parameters' => array( |
|
| 297 | + 'courseId' => array( |
|
| 298 | + 'location' => 'path', |
|
| 299 | + 'type' => 'string', |
|
| 300 | + 'required' => true, |
|
| 301 | + ), |
|
| 302 | + 'userId' => array( |
|
| 303 | + 'location' => 'path', |
|
| 304 | + 'type' => 'string', |
|
| 305 | + 'required' => true, |
|
| 306 | + ), |
|
| 307 | + ), |
|
| 308 | + ),'get' => array( |
|
| 309 | + 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
|
| 310 | + 'httpMethod' => 'GET', |
|
| 311 | + 'parameters' => array( |
|
| 312 | + 'courseId' => array( |
|
| 313 | + 'location' => 'path', |
|
| 314 | + 'type' => 'string', |
|
| 315 | + 'required' => true, |
|
| 316 | + ), |
|
| 317 | + 'userId' => array( |
|
| 318 | + 'location' => 'path', |
|
| 319 | + 'type' => 'string', |
|
| 320 | + 'required' => true, |
|
| 321 | + ), |
|
| 322 | + ), |
|
| 323 | + ),'list' => array( |
|
| 324 | + 'path' => 'v1/courses/{courseId}/teachers', |
|
| 325 | + 'httpMethod' => 'GET', |
|
| 326 | + 'parameters' => array( |
|
| 327 | + 'courseId' => array( |
|
| 328 | + 'location' => 'path', |
|
| 329 | + 'type' => 'string', |
|
| 330 | + 'required' => true, |
|
| 331 | + ), |
|
| 332 | + 'pageToken' => array( |
|
| 333 | + 'location' => 'query', |
|
| 334 | + 'type' => 'string', |
|
| 335 | + ), |
|
| 336 | + 'pageSize' => array( |
|
| 337 | + 'location' => 'query', |
|
| 338 | + 'type' => 'integer', |
|
| 339 | + ), |
|
| 340 | + ), |
|
| 341 | + ), |
|
| 342 | + ) |
|
| 343 | + ) |
|
| 344 | + ); |
|
| 345 | + $this->invitations = new Google_Service_Classroom_Invitations_Resource( |
|
| 346 | + $this, |
|
| 347 | + $this->serviceName, |
|
| 348 | + 'invitations', |
|
| 349 | + array( |
|
| 350 | + 'methods' => array( |
|
| 351 | + 'accept' => array( |
|
| 352 | + 'path' => 'v1/invitations/{id}:accept', |
|
| 353 | + 'httpMethod' => 'POST', |
|
| 354 | + 'parameters' => array( |
|
| 355 | + 'id' => array( |
|
| 356 | + 'location' => 'path', |
|
| 357 | + 'type' => 'string', |
|
| 358 | + 'required' => true, |
|
| 359 | + ), |
|
| 360 | + ), |
|
| 361 | + ),'create' => array( |
|
| 362 | + 'path' => 'v1/invitations', |
|
| 363 | + 'httpMethod' => 'POST', |
|
| 364 | + 'parameters' => array(), |
|
| 365 | + ),'delete' => array( |
|
| 366 | + 'path' => 'v1/invitations/{id}', |
|
| 367 | + 'httpMethod' => 'DELETE', |
|
| 368 | + 'parameters' => array( |
|
| 369 | + 'id' => array( |
|
| 370 | + 'location' => 'path', |
|
| 371 | + 'type' => 'string', |
|
| 372 | + 'required' => true, |
|
| 373 | + ), |
|
| 374 | + ), |
|
| 375 | + ),'get' => array( |
|
| 376 | + 'path' => 'v1/invitations/{id}', |
|
| 377 | + 'httpMethod' => 'GET', |
|
| 378 | + 'parameters' => array( |
|
| 379 | + 'id' => array( |
|
| 380 | + 'location' => 'path', |
|
| 381 | + 'type' => 'string', |
|
| 382 | + 'required' => true, |
|
| 383 | + ), |
|
| 384 | + ), |
|
| 385 | + ),'list' => array( |
|
| 386 | + 'path' => 'v1/invitations', |
|
| 387 | + 'httpMethod' => 'GET', |
|
| 388 | + 'parameters' => array( |
|
| 389 | + 'courseId' => array( |
|
| 390 | + 'location' => 'query', |
|
| 391 | + 'type' => 'string', |
|
| 392 | + ), |
|
| 393 | + 'pageToken' => array( |
|
| 394 | + 'location' => 'query', |
|
| 395 | + 'type' => 'string', |
|
| 396 | + ), |
|
| 397 | + 'userId' => array( |
|
| 398 | + 'location' => 'query', |
|
| 399 | + 'type' => 'string', |
|
| 400 | + ), |
|
| 401 | + 'pageSize' => array( |
|
| 402 | + 'location' => 'query', |
|
| 403 | + 'type' => 'integer', |
|
| 404 | + ), |
|
| 405 | + ), |
|
| 406 | + ), |
|
| 407 | + ) |
|
| 408 | + ) |
|
| 409 | + ); |
|
| 410 | + $this->userProfiles = new Google_Service_Classroom_UserProfiles_Resource( |
|
| 411 | + $this, |
|
| 412 | + $this->serviceName, |
|
| 413 | + 'userProfiles', |
|
| 414 | + array( |
|
| 415 | + 'methods' => array( |
|
| 416 | + 'get' => array( |
|
| 417 | + 'path' => 'v1/userProfiles/{userId}', |
|
| 418 | + 'httpMethod' => 'GET', |
|
| 419 | + 'parameters' => array( |
|
| 420 | + 'userId' => array( |
|
| 421 | + 'location' => 'path', |
|
| 422 | + 'type' => 'string', |
|
| 423 | + 'required' => true, |
|
| 424 | + ), |
|
| 425 | + ), |
|
| 426 | + ), |
|
| 427 | + ) |
|
| 428 | + ) |
|
| 429 | + ); |
|
| 430 | 430 | } |
| 431 | 431 | } |
| 432 | 432 | |
@@ -456,9 +456,9 @@ discard block |
||
| 456 | 456 | */ |
| 457 | 457 | public function create(Google_Service_Classroom_Course $postBody, $optParams = array()) |
| 458 | 458 | { |
| 459 | - $params = array('postBody' => $postBody); |
|
| 460 | - $params = array_merge($params, $optParams); |
|
| 461 | - return $this->call('create', array($params), "Google_Service_Classroom_Course"); |
|
| 459 | + $params = array('postBody' => $postBody); |
|
| 460 | + $params = array_merge($params, $optParams); |
|
| 461 | + return $this->call('create', array($params), "Google_Service_Classroom_Course"); |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | /** |
@@ -474,9 +474,9 @@ discard block |
||
| 474 | 474 | */ |
| 475 | 475 | public function delete($id, $optParams = array()) |
| 476 | 476 | { |
| 477 | - $params = array('id' => $id); |
|
| 478 | - $params = array_merge($params, $optParams); |
|
| 479 | - return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 477 | + $params = array('id' => $id); |
|
| 478 | + $params = array_merge($params, $optParams); |
|
| 479 | + return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 480 | 480 | } |
| 481 | 481 | |
| 482 | 482 | /** |
@@ -492,9 +492,9 @@ discard block |
||
| 492 | 492 | */ |
| 493 | 493 | public function get($id, $optParams = array()) |
| 494 | 494 | { |
| 495 | - $params = array('id' => $id); |
|
| 496 | - $params = array_merge($params, $optParams); |
|
| 497 | - return $this->call('get', array($params), "Google_Service_Classroom_Course"); |
|
| 495 | + $params = array('id' => $id); |
|
| 496 | + $params = array_merge($params, $optParams); |
|
| 497 | + return $this->call('get', array($params), "Google_Service_Classroom_Course"); |
|
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | /** |
@@ -528,9 +528,9 @@ discard block |
||
| 528 | 528 | */ |
| 529 | 529 | public function listCourses($optParams = array()) |
| 530 | 530 | { |
| 531 | - $params = array(); |
|
| 532 | - $params = array_merge($params, $optParams); |
|
| 533 | - return $this->call('list', array($params), "Google_Service_Classroom_ListCoursesResponse"); |
|
| 531 | + $params = array(); |
|
| 532 | + $params = array_merge($params, $optParams); |
|
| 533 | + return $this->call('list', array($params), "Google_Service_Classroom_ListCoursesResponse"); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | /** |
@@ -554,9 +554,9 @@ discard block |
||
| 554 | 554 | */ |
| 555 | 555 | public function patch($id, Google_Service_Classroom_Course $postBody, $optParams = array()) |
| 556 | 556 | { |
| 557 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 558 | - $params = array_merge($params, $optParams); |
|
| 559 | - return $this->call('patch', array($params), "Google_Service_Classroom_Course"); |
|
| 557 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 558 | + $params = array_merge($params, $optParams); |
|
| 559 | + return $this->call('patch', array($params), "Google_Service_Classroom_Course"); |
|
| 560 | 560 | } |
| 561 | 561 | |
| 562 | 562 | /** |
@@ -573,9 +573,9 @@ discard block |
||
| 573 | 573 | */ |
| 574 | 574 | public function update($id, Google_Service_Classroom_Course $postBody, $optParams = array()) |
| 575 | 575 | { |
| 576 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 577 | - $params = array_merge($params, $optParams); |
|
| 578 | - return $this->call('update', array($params), "Google_Service_Classroom_Course"); |
|
| 576 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 577 | + $params = array_merge($params, $optParams); |
|
| 578 | + return $this->call('update', array($params), "Google_Service_Classroom_Course"); |
|
| 579 | 579 | } |
| 580 | 580 | } |
| 581 | 581 | |
@@ -605,9 +605,9 @@ discard block |
||
| 605 | 605 | */ |
| 606 | 606 | public function create($courseId, Google_Service_Classroom_CourseAlias $postBody, $optParams = array()) |
| 607 | 607 | { |
| 608 | - $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 609 | - $params = array_merge($params, $optParams); |
|
| 610 | - return $this->call('create', array($params), "Google_Service_Classroom_CourseAlias"); |
|
| 608 | + $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 609 | + $params = array_merge($params, $optParams); |
|
| 610 | + return $this->call('create', array($params), "Google_Service_Classroom_CourseAlias"); |
|
| 611 | 611 | } |
| 612 | 612 | |
| 613 | 613 | /** |
@@ -625,9 +625,9 @@ discard block |
||
| 625 | 625 | */ |
| 626 | 626 | public function delete($courseId, $alias, $optParams = array()) |
| 627 | 627 | { |
| 628 | - $params = array('courseId' => $courseId, 'alias' => $alias); |
|
| 629 | - $params = array_merge($params, $optParams); |
|
| 630 | - return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 628 | + $params = array('courseId' => $courseId, 'alias' => $alias); |
|
| 629 | + $params = array_merge($params, $optParams); |
|
| 630 | + return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | /** |
@@ -653,9 +653,9 @@ discard block |
||
| 653 | 653 | */ |
| 654 | 654 | public function listCoursesAliases($courseId, $optParams = array()) |
| 655 | 655 | { |
| 656 | - $params = array('courseId' => $courseId); |
|
| 657 | - $params = array_merge($params, $optParams); |
|
| 658 | - return $this->call('list', array($params), "Google_Service_Classroom_ListCourseAliasesResponse"); |
|
| 656 | + $params = array('courseId' => $courseId); |
|
| 657 | + $params = array_merge($params, $optParams); |
|
| 658 | + return $this->call('list', array($params), "Google_Service_Classroom_ListCourseAliasesResponse"); |
|
| 659 | 659 | } |
| 660 | 660 | } |
| 661 | 661 | /** |
@@ -689,9 +689,9 @@ discard block |
||
| 689 | 689 | */ |
| 690 | 690 | public function create($courseId, Google_Service_Classroom_Student $postBody, $optParams = array()) |
| 691 | 691 | { |
| 692 | - $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 693 | - $params = array_merge($params, $optParams); |
|
| 694 | - return $this->call('create', array($params), "Google_Service_Classroom_Student"); |
|
| 692 | + $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 693 | + $params = array_merge($params, $optParams); |
|
| 694 | + return $this->call('create', array($params), "Google_Service_Classroom_Student"); |
|
| 695 | 695 | } |
| 696 | 696 | |
| 697 | 697 | /** |
@@ -711,9 +711,9 @@ discard block |
||
| 711 | 711 | */ |
| 712 | 712 | public function delete($courseId, $userId, $optParams = array()) |
| 713 | 713 | { |
| 714 | - $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 715 | - $params = array_merge($params, $optParams); |
|
| 716 | - return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 714 | + $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 715 | + $params = array_merge($params, $optParams); |
|
| 716 | + return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 717 | 717 | } |
| 718 | 718 | |
| 719 | 719 | /** |
@@ -733,9 +733,9 @@ discard block |
||
| 733 | 733 | */ |
| 734 | 734 | public function get($courseId, $userId, $optParams = array()) |
| 735 | 735 | { |
| 736 | - $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 737 | - $params = array_merge($params, $optParams); |
|
| 738 | - return $this->call('get', array($params), "Google_Service_Classroom_Student"); |
|
| 736 | + $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 737 | + $params = array_merge($params, $optParams); |
|
| 738 | + return $this->call('get', array($params), "Google_Service_Classroom_Student"); |
|
| 739 | 739 | } |
| 740 | 740 | |
| 741 | 741 | /** |
@@ -759,9 +759,9 @@ discard block |
||
| 759 | 759 | */ |
| 760 | 760 | public function listCoursesStudents($courseId, $optParams = array()) |
| 761 | 761 | { |
| 762 | - $params = array('courseId' => $courseId); |
|
| 763 | - $params = array_merge($params, $optParams); |
|
| 764 | - return $this->call('list', array($params), "Google_Service_Classroom_ListStudentsResponse"); |
|
| 762 | + $params = array('courseId' => $courseId); |
|
| 763 | + $params = array_merge($params, $optParams); |
|
| 764 | + return $this->call('list', array($params), "Google_Service_Classroom_ListStudentsResponse"); |
|
| 765 | 765 | } |
| 766 | 766 | } |
| 767 | 767 | /** |
@@ -790,9 +790,9 @@ discard block |
||
| 790 | 790 | */ |
| 791 | 791 | public function create($courseId, Google_Service_Classroom_Teacher $postBody, $optParams = array()) |
| 792 | 792 | { |
| 793 | - $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 794 | - $params = array_merge($params, $optParams); |
|
| 795 | - return $this->call('create', array($params), "Google_Service_Classroom_Teacher"); |
|
| 793 | + $params = array('courseId' => $courseId, 'postBody' => $postBody); |
|
| 794 | + $params = array_merge($params, $optParams); |
|
| 795 | + return $this->call('create', array($params), "Google_Service_Classroom_Teacher"); |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | /** |
@@ -813,9 +813,9 @@ discard block |
||
| 813 | 813 | */ |
| 814 | 814 | public function delete($courseId, $userId, $optParams = array()) |
| 815 | 815 | { |
| 816 | - $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 817 | - $params = array_merge($params, $optParams); |
|
| 818 | - return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 816 | + $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 817 | + $params = array_merge($params, $optParams); |
|
| 818 | + return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 819 | 819 | } |
| 820 | 820 | |
| 821 | 821 | /** |
@@ -835,9 +835,9 @@ discard block |
||
| 835 | 835 | */ |
| 836 | 836 | public function get($courseId, $userId, $optParams = array()) |
| 837 | 837 | { |
| 838 | - $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 839 | - $params = array_merge($params, $optParams); |
|
| 840 | - return $this->call('get', array($params), "Google_Service_Classroom_Teacher"); |
|
| 838 | + $params = array('courseId' => $courseId, 'userId' => $userId); |
|
| 839 | + $params = array_merge($params, $optParams); |
|
| 840 | + return $this->call('get', array($params), "Google_Service_Classroom_Teacher"); |
|
| 841 | 841 | } |
| 842 | 842 | |
| 843 | 843 | /** |
@@ -861,9 +861,9 @@ discard block |
||
| 861 | 861 | */ |
| 862 | 862 | public function listCoursesTeachers($courseId, $optParams = array()) |
| 863 | 863 | { |
| 864 | - $params = array('courseId' => $courseId); |
|
| 865 | - $params = array_merge($params, $optParams); |
|
| 866 | - return $this->call('list', array($params), "Google_Service_Classroom_ListTeachersResponse"); |
|
| 864 | + $params = array('courseId' => $courseId); |
|
| 865 | + $params = array_merge($params, $optParams); |
|
| 866 | + return $this->call('list', array($params), "Google_Service_Classroom_ListTeachersResponse"); |
|
| 867 | 867 | } |
| 868 | 868 | } |
| 869 | 869 | |
@@ -892,9 +892,9 @@ discard block |
||
| 892 | 892 | */ |
| 893 | 893 | public function accept($id, $optParams = array()) |
| 894 | 894 | { |
| 895 | - $params = array('id' => $id); |
|
| 896 | - $params = array_merge($params, $optParams); |
|
| 897 | - return $this->call('accept', array($params), "Google_Service_Classroom_Empty"); |
|
| 895 | + $params = array('id' => $id); |
|
| 896 | + $params = array_merge($params, $optParams); |
|
| 897 | + return $this->call('accept', array($params), "Google_Service_Classroom_Empty"); |
|
| 898 | 898 | } |
| 899 | 899 | |
| 900 | 900 | /** |
@@ -911,9 +911,9 @@ discard block |
||
| 911 | 911 | */ |
| 912 | 912 | public function create(Google_Service_Classroom_Invitation $postBody, $optParams = array()) |
| 913 | 913 | { |
| 914 | - $params = array('postBody' => $postBody); |
|
| 915 | - $params = array_merge($params, $optParams); |
|
| 916 | - return $this->call('create', array($params), "Google_Service_Classroom_Invitation"); |
|
| 914 | + $params = array('postBody' => $postBody); |
|
| 915 | + $params = array_merge($params, $optParams); |
|
| 916 | + return $this->call('create', array($params), "Google_Service_Classroom_Invitation"); |
|
| 917 | 917 | } |
| 918 | 918 | |
| 919 | 919 | /** |
@@ -928,9 +928,9 @@ discard block |
||
| 928 | 928 | */ |
| 929 | 929 | public function delete($id, $optParams = array()) |
| 930 | 930 | { |
| 931 | - $params = array('id' => $id); |
|
| 932 | - $params = array_merge($params, $optParams); |
|
| 933 | - return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 931 | + $params = array('id' => $id); |
|
| 932 | + $params = array_merge($params, $optParams); |
|
| 933 | + return $this->call('delete', array($params), "Google_Service_Classroom_Empty"); |
|
| 934 | 934 | } |
| 935 | 935 | |
| 936 | 936 | /** |
@@ -945,9 +945,9 @@ discard block |
||
| 945 | 945 | */ |
| 946 | 946 | public function get($id, $optParams = array()) |
| 947 | 947 | { |
| 948 | - $params = array('id' => $id); |
|
| 949 | - $params = array_merge($params, $optParams); |
|
| 950 | - return $this->call('get', array($params), "Google_Service_Classroom_Invitation"); |
|
| 948 | + $params = array('id' => $id); |
|
| 949 | + $params = array_merge($params, $optParams); |
|
| 950 | + return $this->call('get', array($params), "Google_Service_Classroom_Invitation"); |
|
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | /** |
@@ -976,9 +976,9 @@ discard block |
||
| 976 | 976 | */ |
| 977 | 977 | public function listInvitations($optParams = array()) |
| 978 | 978 | { |
| 979 | - $params = array(); |
|
| 980 | - $params = array_merge($params, $optParams); |
|
| 981 | - return $this->call('list', array($params), "Google_Service_Classroom_ListInvitationsResponse"); |
|
| 979 | + $params = array(); |
|
| 980 | + $params = array_merge($params, $optParams); |
|
| 981 | + return $this->call('list', array($params), "Google_Service_Classroom_ListInvitationsResponse"); |
|
| 982 | 982 | } |
| 983 | 983 | } |
| 984 | 984 | |
@@ -1007,9 +1007,9 @@ discard block |
||
| 1007 | 1007 | */ |
| 1008 | 1008 | public function get($userId, $optParams = array()) |
| 1009 | 1009 | { |
| 1010 | - $params = array('userId' => $userId); |
|
| 1011 | - $params = array_merge($params, $optParams); |
|
| 1012 | - return $this->call('get', array($params), "Google_Service_Classroom_UserProfile"); |
|
| 1010 | + $params = array('userId' => $userId); |
|
| 1011 | + $params = array_merge($params, $optParams); |
|
| 1012 | + return $this->call('get', array($params), "Google_Service_Classroom_UserProfile"); |
|
| 1013 | 1013 | } |
| 1014 | 1014 | } |
| 1015 | 1015 | |
@@ -1036,99 +1036,99 @@ discard block |
||
| 1036 | 1036 | |
| 1037 | 1037 | public function setAlternateLink($alternateLink) |
| 1038 | 1038 | { |
| 1039 | - $this->alternateLink = $alternateLink; |
|
| 1039 | + $this->alternateLink = $alternateLink; |
|
| 1040 | 1040 | } |
| 1041 | 1041 | public function getAlternateLink() |
| 1042 | 1042 | { |
| 1043 | - return $this->alternateLink; |
|
| 1043 | + return $this->alternateLink; |
|
| 1044 | 1044 | } |
| 1045 | 1045 | public function setCourseState($courseState) |
| 1046 | 1046 | { |
| 1047 | - $this->courseState = $courseState; |
|
| 1047 | + $this->courseState = $courseState; |
|
| 1048 | 1048 | } |
| 1049 | 1049 | public function getCourseState() |
| 1050 | 1050 | { |
| 1051 | - return $this->courseState; |
|
| 1051 | + return $this->courseState; |
|
| 1052 | 1052 | } |
| 1053 | 1053 | public function setCreationTime($creationTime) |
| 1054 | 1054 | { |
| 1055 | - $this->creationTime = $creationTime; |
|
| 1055 | + $this->creationTime = $creationTime; |
|
| 1056 | 1056 | } |
| 1057 | 1057 | public function getCreationTime() |
| 1058 | 1058 | { |
| 1059 | - return $this->creationTime; |
|
| 1059 | + return $this->creationTime; |
|
| 1060 | 1060 | } |
| 1061 | 1061 | public function setDescription($description) |
| 1062 | 1062 | { |
| 1063 | - $this->description = $description; |
|
| 1063 | + $this->description = $description; |
|
| 1064 | 1064 | } |
| 1065 | 1065 | public function getDescription() |
| 1066 | 1066 | { |
| 1067 | - return $this->description; |
|
| 1067 | + return $this->description; |
|
| 1068 | 1068 | } |
| 1069 | 1069 | public function setDescriptionHeading($descriptionHeading) |
| 1070 | 1070 | { |
| 1071 | - $this->descriptionHeading = $descriptionHeading; |
|
| 1071 | + $this->descriptionHeading = $descriptionHeading; |
|
| 1072 | 1072 | } |
| 1073 | 1073 | public function getDescriptionHeading() |
| 1074 | 1074 | { |
| 1075 | - return $this->descriptionHeading; |
|
| 1075 | + return $this->descriptionHeading; |
|
| 1076 | 1076 | } |
| 1077 | 1077 | public function setEnrollmentCode($enrollmentCode) |
| 1078 | 1078 | { |
| 1079 | - $this->enrollmentCode = $enrollmentCode; |
|
| 1079 | + $this->enrollmentCode = $enrollmentCode; |
|
| 1080 | 1080 | } |
| 1081 | 1081 | public function getEnrollmentCode() |
| 1082 | 1082 | { |
| 1083 | - return $this->enrollmentCode; |
|
| 1083 | + return $this->enrollmentCode; |
|
| 1084 | 1084 | } |
| 1085 | 1085 | public function setId($id) |
| 1086 | 1086 | { |
| 1087 | - $this->id = $id; |
|
| 1087 | + $this->id = $id; |
|
| 1088 | 1088 | } |
| 1089 | 1089 | public function getId() |
| 1090 | 1090 | { |
| 1091 | - return $this->id; |
|
| 1091 | + return $this->id; |
|
| 1092 | 1092 | } |
| 1093 | 1093 | public function setName($name) |
| 1094 | 1094 | { |
| 1095 | - $this->name = $name; |
|
| 1095 | + $this->name = $name; |
|
| 1096 | 1096 | } |
| 1097 | 1097 | public function getName() |
| 1098 | 1098 | { |
| 1099 | - return $this->name; |
|
| 1099 | + return $this->name; |
|
| 1100 | 1100 | } |
| 1101 | 1101 | public function setOwnerId($ownerId) |
| 1102 | 1102 | { |
| 1103 | - $this->ownerId = $ownerId; |
|
| 1103 | + $this->ownerId = $ownerId; |
|
| 1104 | 1104 | } |
| 1105 | 1105 | public function getOwnerId() |
| 1106 | 1106 | { |
| 1107 | - return $this->ownerId; |
|
| 1107 | + return $this->ownerId; |
|
| 1108 | 1108 | } |
| 1109 | 1109 | public function setRoom($room) |
| 1110 | 1110 | { |
| 1111 | - $this->room = $room; |
|
| 1111 | + $this->room = $room; |
|
| 1112 | 1112 | } |
| 1113 | 1113 | public function getRoom() |
| 1114 | 1114 | { |
| 1115 | - return $this->room; |
|
| 1115 | + return $this->room; |
|
| 1116 | 1116 | } |
| 1117 | 1117 | public function setSection($section) |
| 1118 | 1118 | { |
| 1119 | - $this->section = $section; |
|
| 1119 | + $this->section = $section; |
|
| 1120 | 1120 | } |
| 1121 | 1121 | public function getSection() |
| 1122 | 1122 | { |
| 1123 | - return $this->section; |
|
| 1123 | + return $this->section; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | public function setUpdateTime($updateTime) |
| 1126 | 1126 | { |
| 1127 | - $this->updateTime = $updateTime; |
|
| 1127 | + $this->updateTime = $updateTime; |
|
| 1128 | 1128 | } |
| 1129 | 1129 | public function getUpdateTime() |
| 1130 | 1130 | { |
| 1131 | - return $this->updateTime; |
|
| 1131 | + return $this->updateTime; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | } |
| 1134 | 1134 | |
@@ -1141,11 +1141,11 @@ discard block |
||
| 1141 | 1141 | |
| 1142 | 1142 | public function setAlias($alias) |
| 1143 | 1143 | { |
| 1144 | - $this->alias = $alias; |
|
| 1144 | + $this->alias = $alias; |
|
| 1145 | 1145 | } |
| 1146 | 1146 | public function getAlias() |
| 1147 | 1147 | { |
| 1148 | - return $this->alias; |
|
| 1148 | + return $this->alias; |
|
| 1149 | 1149 | } |
| 1150 | 1150 | } |
| 1151 | 1151 | |
@@ -1162,11 +1162,11 @@ discard block |
||
| 1162 | 1162 | |
| 1163 | 1163 | public function setPermission($permission) |
| 1164 | 1164 | { |
| 1165 | - $this->permission = $permission; |
|
| 1165 | + $this->permission = $permission; |
|
| 1166 | 1166 | } |
| 1167 | 1167 | public function getPermission() |
| 1168 | 1168 | { |
| 1169 | - return $this->permission; |
|
| 1169 | + return $this->permission; |
|
| 1170 | 1170 | } |
| 1171 | 1171 | } |
| 1172 | 1172 | |
@@ -1182,35 +1182,35 @@ discard block |
||
| 1182 | 1182 | |
| 1183 | 1183 | public function setCourseId($courseId) |
| 1184 | 1184 | { |
| 1185 | - $this->courseId = $courseId; |
|
| 1185 | + $this->courseId = $courseId; |
|
| 1186 | 1186 | } |
| 1187 | 1187 | public function getCourseId() |
| 1188 | 1188 | { |
| 1189 | - return $this->courseId; |
|
| 1189 | + return $this->courseId; |
|
| 1190 | 1190 | } |
| 1191 | 1191 | public function setId($id) |
| 1192 | 1192 | { |
| 1193 | - $this->id = $id; |
|
| 1193 | + $this->id = $id; |
|
| 1194 | 1194 | } |
| 1195 | 1195 | public function getId() |
| 1196 | 1196 | { |
| 1197 | - return $this->id; |
|
| 1197 | + return $this->id; |
|
| 1198 | 1198 | } |
| 1199 | 1199 | public function setRole($role) |
| 1200 | 1200 | { |
| 1201 | - $this->role = $role; |
|
| 1201 | + $this->role = $role; |
|
| 1202 | 1202 | } |
| 1203 | 1203 | public function getRole() |
| 1204 | 1204 | { |
| 1205 | - return $this->role; |
|
| 1205 | + return $this->role; |
|
| 1206 | 1206 | } |
| 1207 | 1207 | public function setUserId($userId) |
| 1208 | 1208 | { |
| 1209 | - $this->userId = $userId; |
|
| 1209 | + $this->userId = $userId; |
|
| 1210 | 1210 | } |
| 1211 | 1211 | public function getUserId() |
| 1212 | 1212 | { |
| 1213 | - return $this->userId; |
|
| 1213 | + return $this->userId; |
|
| 1214 | 1214 | } |
| 1215 | 1215 | } |
| 1216 | 1216 | |
@@ -1226,19 +1226,19 @@ discard block |
||
| 1226 | 1226 | |
| 1227 | 1227 | public function setAliases($aliases) |
| 1228 | 1228 | { |
| 1229 | - $this->aliases = $aliases; |
|
| 1229 | + $this->aliases = $aliases; |
|
| 1230 | 1230 | } |
| 1231 | 1231 | public function getAliases() |
| 1232 | 1232 | { |
| 1233 | - return $this->aliases; |
|
| 1233 | + return $this->aliases; |
|
| 1234 | 1234 | } |
| 1235 | 1235 | public function setNextPageToken($nextPageToken) |
| 1236 | 1236 | { |
| 1237 | - $this->nextPageToken = $nextPageToken; |
|
| 1237 | + $this->nextPageToken = $nextPageToken; |
|
| 1238 | 1238 | } |
| 1239 | 1239 | public function getNextPageToken() |
| 1240 | 1240 | { |
| 1241 | - return $this->nextPageToken; |
|
| 1241 | + return $this->nextPageToken; |
|
| 1242 | 1242 | } |
| 1243 | 1243 | } |
| 1244 | 1244 | |
@@ -1254,19 +1254,19 @@ discard block |
||
| 1254 | 1254 | |
| 1255 | 1255 | public function setCourses($courses) |
| 1256 | 1256 | { |
| 1257 | - $this->courses = $courses; |
|
| 1257 | + $this->courses = $courses; |
|
| 1258 | 1258 | } |
| 1259 | 1259 | public function getCourses() |
| 1260 | 1260 | { |
| 1261 | - return $this->courses; |
|
| 1261 | + return $this->courses; |
|
| 1262 | 1262 | } |
| 1263 | 1263 | public function setNextPageToken($nextPageToken) |
| 1264 | 1264 | { |
| 1265 | - $this->nextPageToken = $nextPageToken; |
|
| 1265 | + $this->nextPageToken = $nextPageToken; |
|
| 1266 | 1266 | } |
| 1267 | 1267 | public function getNextPageToken() |
| 1268 | 1268 | { |
| 1269 | - return $this->nextPageToken; |
|
| 1269 | + return $this->nextPageToken; |
|
| 1270 | 1270 | } |
| 1271 | 1271 | } |
| 1272 | 1272 | |
@@ -1282,19 +1282,19 @@ discard block |
||
| 1282 | 1282 | |
| 1283 | 1283 | public function setInvitations($invitations) |
| 1284 | 1284 | { |
| 1285 | - $this->invitations = $invitations; |
|
| 1285 | + $this->invitations = $invitations; |
|
| 1286 | 1286 | } |
| 1287 | 1287 | public function getInvitations() |
| 1288 | 1288 | { |
| 1289 | - return $this->invitations; |
|
| 1289 | + return $this->invitations; |
|
| 1290 | 1290 | } |
| 1291 | 1291 | public function setNextPageToken($nextPageToken) |
| 1292 | 1292 | { |
| 1293 | - $this->nextPageToken = $nextPageToken; |
|
| 1293 | + $this->nextPageToken = $nextPageToken; |
|
| 1294 | 1294 | } |
| 1295 | 1295 | public function getNextPageToken() |
| 1296 | 1296 | { |
| 1297 | - return $this->nextPageToken; |
|
| 1297 | + return $this->nextPageToken; |
|
| 1298 | 1298 | } |
| 1299 | 1299 | } |
| 1300 | 1300 | |
@@ -1310,19 +1310,19 @@ discard block |
||
| 1310 | 1310 | |
| 1311 | 1311 | public function setNextPageToken($nextPageToken) |
| 1312 | 1312 | { |
| 1313 | - $this->nextPageToken = $nextPageToken; |
|
| 1313 | + $this->nextPageToken = $nextPageToken; |
|
| 1314 | 1314 | } |
| 1315 | 1315 | public function getNextPageToken() |
| 1316 | 1316 | { |
| 1317 | - return $this->nextPageToken; |
|
| 1317 | + return $this->nextPageToken; |
|
| 1318 | 1318 | } |
| 1319 | 1319 | public function setStudents($students) |
| 1320 | 1320 | { |
| 1321 | - $this->students = $students; |
|
| 1321 | + $this->students = $students; |
|
| 1322 | 1322 | } |
| 1323 | 1323 | public function getStudents() |
| 1324 | 1324 | { |
| 1325 | - return $this->students; |
|
| 1325 | + return $this->students; |
|
| 1326 | 1326 | } |
| 1327 | 1327 | } |
| 1328 | 1328 | |
@@ -1338,19 +1338,19 @@ discard block |
||
| 1338 | 1338 | |
| 1339 | 1339 | public function setNextPageToken($nextPageToken) |
| 1340 | 1340 | { |
| 1341 | - $this->nextPageToken = $nextPageToken; |
|
| 1341 | + $this->nextPageToken = $nextPageToken; |
|
| 1342 | 1342 | } |
| 1343 | 1343 | public function getNextPageToken() |
| 1344 | 1344 | { |
| 1345 | - return $this->nextPageToken; |
|
| 1345 | + return $this->nextPageToken; |
|
| 1346 | 1346 | } |
| 1347 | 1347 | public function setTeachers($teachers) |
| 1348 | 1348 | { |
| 1349 | - $this->teachers = $teachers; |
|
| 1349 | + $this->teachers = $teachers; |
|
| 1350 | 1350 | } |
| 1351 | 1351 | public function getTeachers() |
| 1352 | 1352 | { |
| 1353 | - return $this->teachers; |
|
| 1353 | + return $this->teachers; |
|
| 1354 | 1354 | } |
| 1355 | 1355 | } |
| 1356 | 1356 | |
@@ -1365,27 +1365,27 @@ discard block |
||
| 1365 | 1365 | |
| 1366 | 1366 | public function setFamilyName($familyName) |
| 1367 | 1367 | { |
| 1368 | - $this->familyName = $familyName; |
|
| 1368 | + $this->familyName = $familyName; |
|
| 1369 | 1369 | } |
| 1370 | 1370 | public function getFamilyName() |
| 1371 | 1371 | { |
| 1372 | - return $this->familyName; |
|
| 1372 | + return $this->familyName; |
|
| 1373 | 1373 | } |
| 1374 | 1374 | public function setFullName($fullName) |
| 1375 | 1375 | { |
| 1376 | - $this->fullName = $fullName; |
|
| 1376 | + $this->fullName = $fullName; |
|
| 1377 | 1377 | } |
| 1378 | 1378 | public function getFullName() |
| 1379 | 1379 | { |
| 1380 | - return $this->fullName; |
|
| 1380 | + return $this->fullName; |
|
| 1381 | 1381 | } |
| 1382 | 1382 | public function setGivenName($givenName) |
| 1383 | 1383 | { |
| 1384 | - $this->givenName = $givenName; |
|
| 1384 | + $this->givenName = $givenName; |
|
| 1385 | 1385 | } |
| 1386 | 1386 | public function getGivenName() |
| 1387 | 1387 | { |
| 1388 | - return $this->givenName; |
|
| 1388 | + return $this->givenName; |
|
| 1389 | 1389 | } |
| 1390 | 1390 | } |
| 1391 | 1391 | |
@@ -1401,27 +1401,27 @@ discard block |
||
| 1401 | 1401 | |
| 1402 | 1402 | public function setCourseId($courseId) |
| 1403 | 1403 | { |
| 1404 | - $this->courseId = $courseId; |
|
| 1404 | + $this->courseId = $courseId; |
|
| 1405 | 1405 | } |
| 1406 | 1406 | public function getCourseId() |
| 1407 | 1407 | { |
| 1408 | - return $this->courseId; |
|
| 1408 | + return $this->courseId; |
|
| 1409 | 1409 | } |
| 1410 | 1410 | public function setProfile(Google_Service_Classroom_UserProfile $profile) |
| 1411 | 1411 | { |
| 1412 | - $this->profile = $profile; |
|
| 1412 | + $this->profile = $profile; |
|
| 1413 | 1413 | } |
| 1414 | 1414 | public function getProfile() |
| 1415 | 1415 | { |
| 1416 | - return $this->profile; |
|
| 1416 | + return $this->profile; |
|
| 1417 | 1417 | } |
| 1418 | 1418 | public function setUserId($userId) |
| 1419 | 1419 | { |
| 1420 | - $this->userId = $userId; |
|
| 1420 | + $this->userId = $userId; |
|
| 1421 | 1421 | } |
| 1422 | 1422 | public function getUserId() |
| 1423 | 1423 | { |
| 1424 | - return $this->userId; |
|
| 1424 | + return $this->userId; |
|
| 1425 | 1425 | } |
| 1426 | 1426 | } |
| 1427 | 1427 | |
@@ -1437,27 +1437,27 @@ discard block |
||
| 1437 | 1437 | |
| 1438 | 1438 | public function setCourseId($courseId) |
| 1439 | 1439 | { |
| 1440 | - $this->courseId = $courseId; |
|
| 1440 | + $this->courseId = $courseId; |
|
| 1441 | 1441 | } |
| 1442 | 1442 | public function getCourseId() |
| 1443 | 1443 | { |
| 1444 | - return $this->courseId; |
|
| 1444 | + return $this->courseId; |
|
| 1445 | 1445 | } |
| 1446 | 1446 | public function setProfile(Google_Service_Classroom_UserProfile $profile) |
| 1447 | 1447 | { |
| 1448 | - $this->profile = $profile; |
|
| 1448 | + $this->profile = $profile; |
|
| 1449 | 1449 | } |
| 1450 | 1450 | public function getProfile() |
| 1451 | 1451 | { |
| 1452 | - return $this->profile; |
|
| 1452 | + return $this->profile; |
|
| 1453 | 1453 | } |
| 1454 | 1454 | public function setUserId($userId) |
| 1455 | 1455 | { |
| 1456 | - $this->userId = $userId; |
|
| 1456 | + $this->userId = $userId; |
|
| 1457 | 1457 | } |
| 1458 | 1458 | public function getUserId() |
| 1459 | 1459 | { |
| 1460 | - return $this->userId; |
|
| 1460 | + return $this->userId; |
|
| 1461 | 1461 | } |
| 1462 | 1462 | } |
| 1463 | 1463 | |
@@ -1477,42 +1477,42 @@ discard block |
||
| 1477 | 1477 | |
| 1478 | 1478 | public function setEmailAddress($emailAddress) |
| 1479 | 1479 | { |
| 1480 | - $this->emailAddress = $emailAddress; |
|
| 1480 | + $this->emailAddress = $emailAddress; |
|
| 1481 | 1481 | } |
| 1482 | 1482 | public function getEmailAddress() |
| 1483 | 1483 | { |
| 1484 | - return $this->emailAddress; |
|
| 1484 | + return $this->emailAddress; |
|
| 1485 | 1485 | } |
| 1486 | 1486 | public function setId($id) |
| 1487 | 1487 | { |
| 1488 | - $this->id = $id; |
|
| 1488 | + $this->id = $id; |
|
| 1489 | 1489 | } |
| 1490 | 1490 | public function getId() |
| 1491 | 1491 | { |
| 1492 | - return $this->id; |
|
| 1492 | + return $this->id; |
|
| 1493 | 1493 | } |
| 1494 | 1494 | public function setName(Google_Service_Classroom_Name $name) |
| 1495 | 1495 | { |
| 1496 | - $this->name = $name; |
|
| 1496 | + $this->name = $name; |
|
| 1497 | 1497 | } |
| 1498 | 1498 | public function getName() |
| 1499 | 1499 | { |
| 1500 | - return $this->name; |
|
| 1500 | + return $this->name; |
|
| 1501 | 1501 | } |
| 1502 | 1502 | public function setPermissions($permissions) |
| 1503 | 1503 | { |
| 1504 | - $this->permissions = $permissions; |
|
| 1504 | + $this->permissions = $permissions; |
|
| 1505 | 1505 | } |
| 1506 | 1506 | public function getPermissions() |
| 1507 | 1507 | { |
| 1508 | - return $this->permissions; |
|
| 1508 | + return $this->permissions; |
|
| 1509 | 1509 | } |
| 1510 | 1510 | public function setPhotoUrl($photoUrl) |
| 1511 | 1511 | { |
| 1512 | - $this->photoUrl = $photoUrl; |
|
| 1512 | + $this->photoUrl = $photoUrl; |
|
| 1513 | 1513 | } |
| 1514 | 1514 | public function getPhotoUrl() |
| 1515 | 1515 | { |
| 1516 | - return $this->photoUrl; |
|
| 1516 | + return $this->photoUrl; |
|
| 1517 | 1517 | } |
| 1518 | 1518 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | 'path' => 'v1/courses', |
| 81 | 81 | 'httpMethod' => 'POST', |
| 82 | 82 | 'parameters' => array(), |
| 83 | - ),'delete' => array( |
|
| 83 | + ), 'delete' => array( |
|
| 84 | 84 | 'path' => 'v1/courses/{id}', |
| 85 | 85 | 'httpMethod' => 'DELETE', |
| 86 | 86 | 'parameters' => array( |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | 'required' => true, |
| 91 | 91 | ), |
| 92 | 92 | ), |
| 93 | - ),'get' => array( |
|
| 93 | + ), 'get' => array( |
|
| 94 | 94 | 'path' => 'v1/courses/{id}', |
| 95 | 95 | 'httpMethod' => 'GET', |
| 96 | 96 | 'parameters' => array( |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | 'required' => true, |
| 101 | 101 | ), |
| 102 | 102 | ), |
| 103 | - ),'list' => array( |
|
| 103 | + ), 'list' => array( |
|
| 104 | 104 | 'path' => 'v1/courses', |
| 105 | 105 | 'httpMethod' => 'GET', |
| 106 | 106 | 'parameters' => array( |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | 'type' => 'integer', |
| 122 | 122 | ), |
| 123 | 123 | ), |
| 124 | - ),'patch' => array( |
|
| 124 | + ), 'patch' => array( |
|
| 125 | 125 | 'path' => 'v1/courses/{id}', |
| 126 | 126 | 'httpMethod' => 'PATCH', |
| 127 | 127 | 'parameters' => array( |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | 'type' => 'string', |
| 136 | 136 | ), |
| 137 | 137 | ), |
| 138 | - ),'update' => array( |
|
| 138 | + ), 'update' => array( |
|
| 139 | 139 | 'path' => 'v1/courses/{id}', |
| 140 | 140 | 'httpMethod' => 'PUT', |
| 141 | 141 | 'parameters' => array( |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | 'required' => true, |
| 166 | 166 | ), |
| 167 | 167 | ), |
| 168 | - ),'delete' => array( |
|
| 168 | + ), 'delete' => array( |
|
| 169 | 169 | 'path' => 'v1/courses/{courseId}/aliases/{alias}', |
| 170 | 170 | 'httpMethod' => 'DELETE', |
| 171 | 171 | 'parameters' => array( |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | 'required' => true, |
| 181 | 181 | ), |
| 182 | 182 | ), |
| 183 | - ),'list' => array( |
|
| 183 | + ), 'list' => array( |
|
| 184 | 184 | 'path' => 'v1/courses/{courseId}/aliases', |
| 185 | 185 | 'httpMethod' => 'GET', |
| 186 | 186 | 'parameters' => array( |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | 'type' => 'string', |
| 223 | 223 | ), |
| 224 | 224 | ), |
| 225 | - ),'delete' => array( |
|
| 225 | + ), 'delete' => array( |
|
| 226 | 226 | 'path' => 'v1/courses/{courseId}/students/{userId}', |
| 227 | 227 | 'httpMethod' => 'DELETE', |
| 228 | 228 | 'parameters' => array( |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | 'required' => true, |
| 238 | 238 | ), |
| 239 | 239 | ), |
| 240 | - ),'get' => array( |
|
| 240 | + ), 'get' => array( |
|
| 241 | 241 | 'path' => 'v1/courses/{courseId}/students/{userId}', |
| 242 | 242 | 'httpMethod' => 'GET', |
| 243 | 243 | 'parameters' => array( |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | 'required' => true, |
| 253 | 253 | ), |
| 254 | 254 | ), |
| 255 | - ),'list' => array( |
|
| 255 | + ), 'list' => array( |
|
| 256 | 256 | 'path' => 'v1/courses/{courseId}/students', |
| 257 | 257 | 'httpMethod' => 'GET', |
| 258 | 258 | 'parameters' => array( |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | 'required' => true, |
| 291 | 291 | ), |
| 292 | 292 | ), |
| 293 | - ),'delete' => array( |
|
| 293 | + ), 'delete' => array( |
|
| 294 | 294 | 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
| 295 | 295 | 'httpMethod' => 'DELETE', |
| 296 | 296 | 'parameters' => array( |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | 'required' => true, |
| 306 | 306 | ), |
| 307 | 307 | ), |
| 308 | - ),'get' => array( |
|
| 308 | + ), 'get' => array( |
|
| 309 | 309 | 'path' => 'v1/courses/{courseId}/teachers/{userId}', |
| 310 | 310 | 'httpMethod' => 'GET', |
| 311 | 311 | 'parameters' => array( |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | 'required' => true, |
| 321 | 321 | ), |
| 322 | 322 | ), |
| 323 | - ),'list' => array( |
|
| 323 | + ), 'list' => array( |
|
| 324 | 324 | 'path' => 'v1/courses/{courseId}/teachers', |
| 325 | 325 | 'httpMethod' => 'GET', |
| 326 | 326 | 'parameters' => array( |
@@ -358,11 +358,11 @@ discard block |
||
| 358 | 358 | 'required' => true, |
| 359 | 359 | ), |
| 360 | 360 | ), |
| 361 | - ),'create' => array( |
|
| 361 | + ), 'create' => array( |
|
| 362 | 362 | 'path' => 'v1/invitations', |
| 363 | 363 | 'httpMethod' => 'POST', |
| 364 | 364 | 'parameters' => array(), |
| 365 | - ),'delete' => array( |
|
| 365 | + ), 'delete' => array( |
|
| 366 | 366 | 'path' => 'v1/invitations/{id}', |
| 367 | 367 | 'httpMethod' => 'DELETE', |
| 368 | 368 | 'parameters' => array( |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | 'required' => true, |
| 373 | 373 | ), |
| 374 | 374 | ), |
| 375 | - ),'get' => array( |
|
| 375 | + ), 'get' => array( |
|
| 376 | 376 | 'path' => 'v1/invitations/{id}', |
| 377 | 377 | 'httpMethod' => 'GET', |
| 378 | 378 | 'parameters' => array( |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | 'required' => true, |
| 383 | 383 | ), |
| 384 | 384 | ), |
| 385 | - ),'list' => array( |
|
| 385 | + ), 'list' => array( |
|
| 386 | 386 | 'path' => 'v1/invitations', |
| 387 | 387 | 'httpMethod' => 'GET', |
| 388 | 388 | 'parameters' => array( |
@@ -32,34 +32,34 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** View and manage your mail. */ |
| 34 | 34 | const MAIL_GOOGLE_COM = |
| 35 | - "https://mail.google.com/"; |
|
| 35 | + "https://mail.google.com/"; |
|
| 36 | 36 | /** Manage your calendars. */ |
| 37 | 37 | const WWW_GOOGLE_COM_CALENDAR_FEEDS = |
| 38 | - "https://www.google.com/calendar/feeds"; |
|
| 38 | + "https://www.google.com/calendar/feeds"; |
|
| 39 | 39 | /** Manage your contacts. */ |
| 40 | 40 | const WWW_GOOGLE_COM_M8_FEEDS = |
| 41 | - "https://www.google.com/m8/feeds"; |
|
| 41 | + "https://www.google.com/m8/feeds"; |
|
| 42 | 42 | /** View and manage the provisioning of groups on your domain. */ |
| 43 | 43 | const ADMIN_DIRECTORY_GROUP = |
| 44 | - "https://www.googleapis.com/auth/admin.directory.group"; |
|
| 44 | + "https://www.googleapis.com/auth/admin.directory.group"; |
|
| 45 | 45 | /** View and manage the provisioning of users on your domain. */ |
| 46 | 46 | const ADMIN_DIRECTORY_USER = |
| 47 | - "https://www.googleapis.com/auth/admin.directory.user"; |
|
| 47 | + "https://www.googleapis.com/auth/admin.directory.user"; |
|
| 48 | 48 | /** View and manage the files in your Google Drive. */ |
| 49 | 49 | const DRIVE = |
| 50 | - "https://www.googleapis.com/auth/drive"; |
|
| 50 | + "https://www.googleapis.com/auth/drive"; |
|
| 51 | 51 | /** View and manage your forms in Google Drive. */ |
| 52 | 52 | const FORMS = |
| 53 | - "https://www.googleapis.com/auth/forms"; |
|
| 53 | + "https://www.googleapis.com/auth/forms"; |
|
| 54 | 54 | /** View and manage forms that this application has been installed in. */ |
| 55 | 55 | const FORMS_CURRENTONLY = |
| 56 | - "https://www.googleapis.com/auth/forms.currentonly"; |
|
| 56 | + "https://www.googleapis.com/auth/forms.currentonly"; |
|
| 57 | 57 | /** View and manage your Google Groups. */ |
| 58 | 58 | const GROUPS = |
| 59 | - "https://www.googleapis.com/auth/groups"; |
|
| 59 | + "https://www.googleapis.com/auth/groups"; |
|
| 60 | 60 | /** View your email address. */ |
| 61 | 61 | const USERINFO_EMAIL = |
| 62 | - "https://www.googleapis.com/auth/userinfo.email"; |
|
| 62 | + "https://www.googleapis.com/auth/userinfo.email"; |
|
| 63 | 63 | |
| 64 | 64 | public $scripts; |
| 65 | 65 | |
@@ -71,32 +71,32 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | public function __construct(Google_Client $client) |
| 73 | 73 | { |
| 74 | - parent::__construct($client); |
|
| 75 | - $this->rootUrl = 'https://script.googleapis.com/'; |
|
| 76 | - $this->servicePath = ''; |
|
| 77 | - $this->version = 'v1'; |
|
| 78 | - $this->serviceName = 'script'; |
|
| 74 | + parent::__construct($client); |
|
| 75 | + $this->rootUrl = 'https://script.googleapis.com/'; |
|
| 76 | + $this->servicePath = ''; |
|
| 77 | + $this->version = 'v1'; |
|
| 78 | + $this->serviceName = 'script'; |
|
| 79 | 79 | |
| 80 | - $this->scripts = new Google_Service_Script_Scripts_Resource( |
|
| 81 | - $this, |
|
| 82 | - $this->serviceName, |
|
| 83 | - 'scripts', |
|
| 84 | - array( |
|
| 85 | - 'methods' => array( |
|
| 86 | - 'run' => array( |
|
| 87 | - 'path' => 'v1/scripts/{scriptId}:run', |
|
| 88 | - 'httpMethod' => 'POST', |
|
| 89 | - 'parameters' => array( |
|
| 90 | - 'scriptId' => array( |
|
| 91 | - 'location' => 'path', |
|
| 92 | - 'type' => 'string', |
|
| 93 | - 'required' => true, |
|
| 94 | - ), |
|
| 95 | - ), |
|
| 96 | - ), |
|
| 97 | - ) |
|
| 98 | - ) |
|
| 99 | - ); |
|
| 80 | + $this->scripts = new Google_Service_Script_Scripts_Resource( |
|
| 81 | + $this, |
|
| 82 | + $this->serviceName, |
|
| 83 | + 'scripts', |
|
| 84 | + array( |
|
| 85 | + 'methods' => array( |
|
| 86 | + 'run' => array( |
|
| 87 | + 'path' => 'v1/scripts/{scriptId}:run', |
|
| 88 | + 'httpMethod' => 'POST', |
|
| 89 | + 'parameters' => array( |
|
| 90 | + 'scriptId' => array( |
|
| 91 | + 'location' => 'path', |
|
| 92 | + 'type' => 'string', |
|
| 93 | + 'required' => true, |
|
| 94 | + ), |
|
| 95 | + ), |
|
| 96 | + ), |
|
| 97 | + ) |
|
| 98 | + ) |
|
| 99 | + ); |
|
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public function run($scriptId, Google_Service_Script_ExecutionRequest $postBody, $optParams = array()) |
| 133 | 133 | { |
| 134 | - $params = array('scriptId' => $scriptId, 'postBody' => $postBody); |
|
| 135 | - $params = array_merge($params, $optParams); |
|
| 136 | - return $this->call('run', array($params), "Google_Service_Script_Operation"); |
|
| 134 | + $params = array('scriptId' => $scriptId, 'postBody' => $postBody); |
|
| 135 | + $params = array_merge($params, $optParams); |
|
| 136 | + return $this->call('run', array($params), "Google_Service_Script_Operation"); |
|
| 137 | 137 | } |
| 138 | 138 | } |
| 139 | 139 | |
@@ -153,27 +153,27 @@ discard block |
||
| 153 | 153 | |
| 154 | 154 | public function setErrorMessage($errorMessage) |
| 155 | 155 | { |
| 156 | - $this->errorMessage = $errorMessage; |
|
| 156 | + $this->errorMessage = $errorMessage; |
|
| 157 | 157 | } |
| 158 | 158 | public function getErrorMessage() |
| 159 | 159 | { |
| 160 | - return $this->errorMessage; |
|
| 160 | + return $this->errorMessage; |
|
| 161 | 161 | } |
| 162 | 162 | public function setErrorType($errorType) |
| 163 | 163 | { |
| 164 | - $this->errorType = $errorType; |
|
| 164 | + $this->errorType = $errorType; |
|
| 165 | 165 | } |
| 166 | 166 | public function getErrorType() |
| 167 | 167 | { |
| 168 | - return $this->errorType; |
|
| 168 | + return $this->errorType; |
|
| 169 | 169 | } |
| 170 | 170 | public function setScriptStackTraceElements($scriptStackTraceElements) |
| 171 | 171 | { |
| 172 | - $this->scriptStackTraceElements = $scriptStackTraceElements; |
|
| 172 | + $this->scriptStackTraceElements = $scriptStackTraceElements; |
|
| 173 | 173 | } |
| 174 | 174 | public function getScriptStackTraceElements() |
| 175 | 175 | { |
| 176 | - return $this->scriptStackTraceElements; |
|
| 176 | + return $this->scriptStackTraceElements; |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | |
@@ -190,35 +190,35 @@ discard block |
||
| 190 | 190 | |
| 191 | 191 | public function setDevMode($devMode) |
| 192 | 192 | { |
| 193 | - $this->devMode = $devMode; |
|
| 193 | + $this->devMode = $devMode; |
|
| 194 | 194 | } |
| 195 | 195 | public function getDevMode() |
| 196 | 196 | { |
| 197 | - return $this->devMode; |
|
| 197 | + return $this->devMode; |
|
| 198 | 198 | } |
| 199 | 199 | public function setFunction($function) |
| 200 | 200 | { |
| 201 | - $this->function = $function; |
|
| 201 | + $this->function = $function; |
|
| 202 | 202 | } |
| 203 | 203 | public function getFunction() |
| 204 | 204 | { |
| 205 | - return $this->function; |
|
| 205 | + return $this->function; |
|
| 206 | 206 | } |
| 207 | 207 | public function setParameters($parameters) |
| 208 | 208 | { |
| 209 | - $this->parameters = $parameters; |
|
| 209 | + $this->parameters = $parameters; |
|
| 210 | 210 | } |
| 211 | 211 | public function getParameters() |
| 212 | 212 | { |
| 213 | - return $this->parameters; |
|
| 213 | + return $this->parameters; |
|
| 214 | 214 | } |
| 215 | 215 | public function setSessionState($sessionState) |
| 216 | 216 | { |
| 217 | - $this->sessionState = $sessionState; |
|
| 217 | + $this->sessionState = $sessionState; |
|
| 218 | 218 | } |
| 219 | 219 | public function getSessionState() |
| 220 | 220 | { |
| 221 | - return $this->sessionState; |
|
| 221 | + return $this->sessionState; |
|
| 222 | 222 | } |
| 223 | 223 | } |
| 224 | 224 | |
@@ -231,11 +231,11 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | public function setResult($result) |
| 233 | 233 | { |
| 234 | - $this->result = $result; |
|
| 234 | + $this->result = $result; |
|
| 235 | 235 | } |
| 236 | 236 | public function getResult() |
| 237 | 237 | { |
| 238 | - return $this->result; |
|
| 238 | + return $this->result; |
|
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | |
@@ -253,43 +253,43 @@ discard block |
||
| 253 | 253 | |
| 254 | 254 | public function setDone($done) |
| 255 | 255 | { |
| 256 | - $this->done = $done; |
|
| 256 | + $this->done = $done; |
|
| 257 | 257 | } |
| 258 | 258 | public function getDone() |
| 259 | 259 | { |
| 260 | - return $this->done; |
|
| 260 | + return $this->done; |
|
| 261 | 261 | } |
| 262 | 262 | public function setError(Google_Service_Script_Status $error) |
| 263 | 263 | { |
| 264 | - $this->error = $error; |
|
| 264 | + $this->error = $error; |
|
| 265 | 265 | } |
| 266 | 266 | public function getError() |
| 267 | 267 | { |
| 268 | - return $this->error; |
|
| 268 | + return $this->error; |
|
| 269 | 269 | } |
| 270 | 270 | public function setMetadata($metadata) |
| 271 | 271 | { |
| 272 | - $this->metadata = $metadata; |
|
| 272 | + $this->metadata = $metadata; |
|
| 273 | 273 | } |
| 274 | 274 | public function getMetadata() |
| 275 | 275 | { |
| 276 | - return $this->metadata; |
|
| 276 | + return $this->metadata; |
|
| 277 | 277 | } |
| 278 | 278 | public function setName($name) |
| 279 | 279 | { |
| 280 | - $this->name = $name; |
|
| 280 | + $this->name = $name; |
|
| 281 | 281 | } |
| 282 | 282 | public function getName() |
| 283 | 283 | { |
| 284 | - return $this->name; |
|
| 284 | + return $this->name; |
|
| 285 | 285 | } |
| 286 | 286 | public function setResponse($response) |
| 287 | 287 | { |
| 288 | - $this->response = $response; |
|
| 288 | + $this->response = $response; |
|
| 289 | 289 | } |
| 290 | 290 | public function getResponse() |
| 291 | 291 | { |
| 292 | - return $this->response; |
|
| 292 | + return $this->response; |
|
| 293 | 293 | } |
| 294 | 294 | } |
| 295 | 295 | |
@@ -311,19 +311,19 @@ discard block |
||
| 311 | 311 | |
| 312 | 312 | public function setFunction($function) |
| 313 | 313 | { |
| 314 | - $this->function = $function; |
|
| 314 | + $this->function = $function; |
|
| 315 | 315 | } |
| 316 | 316 | public function getFunction() |
| 317 | 317 | { |
| 318 | - return $this->function; |
|
| 318 | + return $this->function; |
|
| 319 | 319 | } |
| 320 | 320 | public function setLineNumber($lineNumber) |
| 321 | 321 | { |
| 322 | - $this->lineNumber = $lineNumber; |
|
| 322 | + $this->lineNumber = $lineNumber; |
|
| 323 | 323 | } |
| 324 | 324 | public function getLineNumber() |
| 325 | 325 | { |
| 326 | - return $this->lineNumber; |
|
| 326 | + return $this->lineNumber; |
|
| 327 | 327 | } |
| 328 | 328 | } |
| 329 | 329 | |
@@ -339,27 +339,27 @@ discard block |
||
| 339 | 339 | |
| 340 | 340 | public function setCode($code) |
| 341 | 341 | { |
| 342 | - $this->code = $code; |
|
| 342 | + $this->code = $code; |
|
| 343 | 343 | } |
| 344 | 344 | public function getCode() |
| 345 | 345 | { |
| 346 | - return $this->code; |
|
| 346 | + return $this->code; |
|
| 347 | 347 | } |
| 348 | 348 | public function setDetails($details) |
| 349 | 349 | { |
| 350 | - $this->details = $details; |
|
| 350 | + $this->details = $details; |
|
| 351 | 351 | } |
| 352 | 352 | public function getDetails() |
| 353 | 353 | { |
| 354 | - return $this->details; |
|
| 354 | + return $this->details; |
|
| 355 | 355 | } |
| 356 | 356 | public function setMessage($message) |
| 357 | 357 | { |
| 358 | - $this->message = $message; |
|
| 358 | + $this->message = $message; |
|
| 359 | 359 | } |
| 360 | 360 | public function getMessage() |
| 361 | 361 | { |
| 362 | - return $this->message; |
|
| 362 | + return $this->message; |
|
| 363 | 363 | } |
| 364 | 364 | } |
| 365 | 365 | |
@@ -33,13 +33,13 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | /** View and manage your data across Google Cloud Platform services. */ |
| 35 | 35 | const CLOUD_PLATFORM = |
| 36 | - "https://www.googleapis.com/auth/cloud-platform"; |
|
| 36 | + "https://www.googleapis.com/auth/cloud-platform"; |
|
| 37 | 37 | /** View your DNS records hosted by Google Cloud DNS. */ |
| 38 | 38 | const NDEV_CLOUDDNS_READONLY = |
| 39 | - "https://www.googleapis.com/auth/ndev.clouddns.readonly"; |
|
| 39 | + "https://www.googleapis.com/auth/ndev.clouddns.readonly"; |
|
| 40 | 40 | /** View and manage your DNS records hosted by Google Cloud DNS. */ |
| 41 | 41 | const NDEV_CLOUDDNS_READWRITE = |
| 42 | - "https://www.googleapis.com/auth/ndev.clouddns.readwrite"; |
|
| 42 | + "https://www.googleapis.com/auth/ndev.clouddns.readwrite"; |
|
| 43 | 43 | |
| 44 | 44 | public $changes; |
| 45 | 45 | public $managedZones; |
@@ -54,217 +54,217 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function __construct(Google_Client $client) |
| 56 | 56 | { |
| 57 | - parent::__construct($client); |
|
| 58 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 59 | - $this->servicePath = 'dns/v1/projects/'; |
|
| 60 | - $this->version = 'v1'; |
|
| 61 | - $this->serviceName = 'dns'; |
|
| 62 | - |
|
| 63 | - $this->changes = new Google_Service_Dns_Changes_Resource( |
|
| 64 | - $this, |
|
| 65 | - $this->serviceName, |
|
| 66 | - 'changes', |
|
| 67 | - array( |
|
| 68 | - 'methods' => array( |
|
| 69 | - 'create' => array( |
|
| 70 | - 'path' => '{project}/managedZones/{managedZone}/changes', |
|
| 71 | - 'httpMethod' => 'POST', |
|
| 72 | - 'parameters' => array( |
|
| 73 | - 'project' => array( |
|
| 74 | - 'location' => 'path', |
|
| 75 | - 'type' => 'string', |
|
| 76 | - 'required' => true, |
|
| 77 | - ), |
|
| 78 | - 'managedZone' => array( |
|
| 79 | - 'location' => 'path', |
|
| 80 | - 'type' => 'string', |
|
| 81 | - 'required' => true, |
|
| 82 | - ), |
|
| 83 | - ), |
|
| 84 | - ),'get' => array( |
|
| 85 | - 'path' => '{project}/managedZones/{managedZone}/changes/{changeId}', |
|
| 86 | - 'httpMethod' => 'GET', |
|
| 87 | - 'parameters' => array( |
|
| 88 | - 'project' => array( |
|
| 89 | - 'location' => 'path', |
|
| 90 | - 'type' => 'string', |
|
| 91 | - 'required' => true, |
|
| 92 | - ), |
|
| 93 | - 'managedZone' => array( |
|
| 94 | - 'location' => 'path', |
|
| 95 | - 'type' => 'string', |
|
| 96 | - 'required' => true, |
|
| 97 | - ), |
|
| 98 | - 'changeId' => array( |
|
| 99 | - 'location' => 'path', |
|
| 100 | - 'type' => 'string', |
|
| 101 | - 'required' => true, |
|
| 102 | - ), |
|
| 103 | - ), |
|
| 104 | - ),'list' => array( |
|
| 105 | - 'path' => '{project}/managedZones/{managedZone}/changes', |
|
| 106 | - 'httpMethod' => 'GET', |
|
| 107 | - 'parameters' => array( |
|
| 108 | - 'project' => array( |
|
| 109 | - 'location' => 'path', |
|
| 110 | - 'type' => 'string', |
|
| 111 | - 'required' => true, |
|
| 112 | - ), |
|
| 113 | - 'managedZone' => array( |
|
| 114 | - 'location' => 'path', |
|
| 115 | - 'type' => 'string', |
|
| 116 | - 'required' => true, |
|
| 117 | - ), |
|
| 118 | - 'maxResults' => array( |
|
| 119 | - 'location' => 'query', |
|
| 120 | - 'type' => 'integer', |
|
| 121 | - ), |
|
| 122 | - 'pageToken' => array( |
|
| 123 | - 'location' => 'query', |
|
| 124 | - 'type' => 'string', |
|
| 125 | - ), |
|
| 126 | - 'sortBy' => array( |
|
| 127 | - 'location' => 'query', |
|
| 128 | - 'type' => 'string', |
|
| 129 | - ), |
|
| 130 | - 'sortOrder' => array( |
|
| 131 | - 'location' => 'query', |
|
| 132 | - 'type' => 'string', |
|
| 133 | - ), |
|
| 134 | - ), |
|
| 135 | - ), |
|
| 136 | - ) |
|
| 137 | - ) |
|
| 138 | - ); |
|
| 139 | - $this->managedZones = new Google_Service_Dns_ManagedZones_Resource( |
|
| 140 | - $this, |
|
| 141 | - $this->serviceName, |
|
| 142 | - 'managedZones', |
|
| 143 | - array( |
|
| 144 | - 'methods' => array( |
|
| 145 | - 'create' => array( |
|
| 146 | - 'path' => '{project}/managedZones', |
|
| 147 | - 'httpMethod' => 'POST', |
|
| 148 | - 'parameters' => array( |
|
| 149 | - 'project' => array( |
|
| 150 | - 'location' => 'path', |
|
| 151 | - 'type' => 'string', |
|
| 152 | - 'required' => true, |
|
| 153 | - ), |
|
| 154 | - ), |
|
| 155 | - ),'delete' => array( |
|
| 156 | - 'path' => '{project}/managedZones/{managedZone}', |
|
| 157 | - 'httpMethod' => 'DELETE', |
|
| 158 | - 'parameters' => array( |
|
| 159 | - 'project' => array( |
|
| 160 | - 'location' => 'path', |
|
| 161 | - 'type' => 'string', |
|
| 162 | - 'required' => true, |
|
| 163 | - ), |
|
| 164 | - 'managedZone' => array( |
|
| 165 | - 'location' => 'path', |
|
| 166 | - 'type' => 'string', |
|
| 167 | - 'required' => true, |
|
| 168 | - ), |
|
| 169 | - ), |
|
| 170 | - ),'get' => array( |
|
| 171 | - 'path' => '{project}/managedZones/{managedZone}', |
|
| 172 | - 'httpMethod' => 'GET', |
|
| 173 | - 'parameters' => array( |
|
| 174 | - 'project' => array( |
|
| 175 | - 'location' => 'path', |
|
| 176 | - 'type' => 'string', |
|
| 177 | - 'required' => true, |
|
| 178 | - ), |
|
| 179 | - 'managedZone' => array( |
|
| 180 | - 'location' => 'path', |
|
| 181 | - 'type' => 'string', |
|
| 182 | - 'required' => true, |
|
| 183 | - ), |
|
| 184 | - ), |
|
| 185 | - ),'list' => array( |
|
| 186 | - 'path' => '{project}/managedZones', |
|
| 187 | - 'httpMethod' => 'GET', |
|
| 188 | - 'parameters' => array( |
|
| 189 | - 'project' => array( |
|
| 190 | - 'location' => 'path', |
|
| 191 | - 'type' => 'string', |
|
| 192 | - 'required' => true, |
|
| 193 | - ), |
|
| 194 | - 'pageToken' => array( |
|
| 195 | - 'location' => 'query', |
|
| 196 | - 'type' => 'string', |
|
| 197 | - ), |
|
| 198 | - 'maxResults' => array( |
|
| 199 | - 'location' => 'query', |
|
| 200 | - 'type' => 'integer', |
|
| 201 | - ), |
|
| 202 | - ), |
|
| 203 | - ), |
|
| 204 | - ) |
|
| 205 | - ) |
|
| 206 | - ); |
|
| 207 | - $this->projects = new Google_Service_Dns_Projects_Resource( |
|
| 208 | - $this, |
|
| 209 | - $this->serviceName, |
|
| 210 | - 'projects', |
|
| 211 | - array( |
|
| 212 | - 'methods' => array( |
|
| 213 | - 'get' => array( |
|
| 214 | - 'path' => '{project}', |
|
| 215 | - 'httpMethod' => 'GET', |
|
| 216 | - 'parameters' => array( |
|
| 217 | - 'project' => array( |
|
| 218 | - 'location' => 'path', |
|
| 219 | - 'type' => 'string', |
|
| 220 | - 'required' => true, |
|
| 221 | - ), |
|
| 222 | - ), |
|
| 223 | - ), |
|
| 224 | - ) |
|
| 225 | - ) |
|
| 226 | - ); |
|
| 227 | - $this->resourceRecordSets = new Google_Service_Dns_ResourceRecordSets_Resource( |
|
| 228 | - $this, |
|
| 229 | - $this->serviceName, |
|
| 230 | - 'resourceRecordSets', |
|
| 231 | - array( |
|
| 232 | - 'methods' => array( |
|
| 233 | - 'list' => array( |
|
| 234 | - 'path' => '{project}/managedZones/{managedZone}/rrsets', |
|
| 235 | - 'httpMethod' => 'GET', |
|
| 236 | - 'parameters' => array( |
|
| 237 | - 'project' => array( |
|
| 238 | - 'location' => 'path', |
|
| 239 | - 'type' => 'string', |
|
| 240 | - 'required' => true, |
|
| 241 | - ), |
|
| 242 | - 'managedZone' => array( |
|
| 243 | - 'location' => 'path', |
|
| 244 | - 'type' => 'string', |
|
| 245 | - 'required' => true, |
|
| 246 | - ), |
|
| 247 | - 'name' => array( |
|
| 248 | - 'location' => 'query', |
|
| 249 | - 'type' => 'string', |
|
| 250 | - ), |
|
| 251 | - 'maxResults' => array( |
|
| 252 | - 'location' => 'query', |
|
| 253 | - 'type' => 'integer', |
|
| 254 | - ), |
|
| 255 | - 'pageToken' => array( |
|
| 256 | - 'location' => 'query', |
|
| 257 | - 'type' => 'string', |
|
| 258 | - ), |
|
| 259 | - 'type' => array( |
|
| 260 | - 'location' => 'query', |
|
| 261 | - 'type' => 'string', |
|
| 262 | - ), |
|
| 263 | - ), |
|
| 264 | - ), |
|
| 265 | - ) |
|
| 266 | - ) |
|
| 267 | - ); |
|
| 57 | + parent::__construct($client); |
|
| 58 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 59 | + $this->servicePath = 'dns/v1/projects/'; |
|
| 60 | + $this->version = 'v1'; |
|
| 61 | + $this->serviceName = 'dns'; |
|
| 62 | + |
|
| 63 | + $this->changes = new Google_Service_Dns_Changes_Resource( |
|
| 64 | + $this, |
|
| 65 | + $this->serviceName, |
|
| 66 | + 'changes', |
|
| 67 | + array( |
|
| 68 | + 'methods' => array( |
|
| 69 | + 'create' => array( |
|
| 70 | + 'path' => '{project}/managedZones/{managedZone}/changes', |
|
| 71 | + 'httpMethod' => 'POST', |
|
| 72 | + 'parameters' => array( |
|
| 73 | + 'project' => array( |
|
| 74 | + 'location' => 'path', |
|
| 75 | + 'type' => 'string', |
|
| 76 | + 'required' => true, |
|
| 77 | + ), |
|
| 78 | + 'managedZone' => array( |
|
| 79 | + 'location' => 'path', |
|
| 80 | + 'type' => 'string', |
|
| 81 | + 'required' => true, |
|
| 82 | + ), |
|
| 83 | + ), |
|
| 84 | + ),'get' => array( |
|
| 85 | + 'path' => '{project}/managedZones/{managedZone}/changes/{changeId}', |
|
| 86 | + 'httpMethod' => 'GET', |
|
| 87 | + 'parameters' => array( |
|
| 88 | + 'project' => array( |
|
| 89 | + 'location' => 'path', |
|
| 90 | + 'type' => 'string', |
|
| 91 | + 'required' => true, |
|
| 92 | + ), |
|
| 93 | + 'managedZone' => array( |
|
| 94 | + 'location' => 'path', |
|
| 95 | + 'type' => 'string', |
|
| 96 | + 'required' => true, |
|
| 97 | + ), |
|
| 98 | + 'changeId' => array( |
|
| 99 | + 'location' => 'path', |
|
| 100 | + 'type' => 'string', |
|
| 101 | + 'required' => true, |
|
| 102 | + ), |
|
| 103 | + ), |
|
| 104 | + ),'list' => array( |
|
| 105 | + 'path' => '{project}/managedZones/{managedZone}/changes', |
|
| 106 | + 'httpMethod' => 'GET', |
|
| 107 | + 'parameters' => array( |
|
| 108 | + 'project' => array( |
|
| 109 | + 'location' => 'path', |
|
| 110 | + 'type' => 'string', |
|
| 111 | + 'required' => true, |
|
| 112 | + ), |
|
| 113 | + 'managedZone' => array( |
|
| 114 | + 'location' => 'path', |
|
| 115 | + 'type' => 'string', |
|
| 116 | + 'required' => true, |
|
| 117 | + ), |
|
| 118 | + 'maxResults' => array( |
|
| 119 | + 'location' => 'query', |
|
| 120 | + 'type' => 'integer', |
|
| 121 | + ), |
|
| 122 | + 'pageToken' => array( |
|
| 123 | + 'location' => 'query', |
|
| 124 | + 'type' => 'string', |
|
| 125 | + ), |
|
| 126 | + 'sortBy' => array( |
|
| 127 | + 'location' => 'query', |
|
| 128 | + 'type' => 'string', |
|
| 129 | + ), |
|
| 130 | + 'sortOrder' => array( |
|
| 131 | + 'location' => 'query', |
|
| 132 | + 'type' => 'string', |
|
| 133 | + ), |
|
| 134 | + ), |
|
| 135 | + ), |
|
| 136 | + ) |
|
| 137 | + ) |
|
| 138 | + ); |
|
| 139 | + $this->managedZones = new Google_Service_Dns_ManagedZones_Resource( |
|
| 140 | + $this, |
|
| 141 | + $this->serviceName, |
|
| 142 | + 'managedZones', |
|
| 143 | + array( |
|
| 144 | + 'methods' => array( |
|
| 145 | + 'create' => array( |
|
| 146 | + 'path' => '{project}/managedZones', |
|
| 147 | + 'httpMethod' => 'POST', |
|
| 148 | + 'parameters' => array( |
|
| 149 | + 'project' => array( |
|
| 150 | + 'location' => 'path', |
|
| 151 | + 'type' => 'string', |
|
| 152 | + 'required' => true, |
|
| 153 | + ), |
|
| 154 | + ), |
|
| 155 | + ),'delete' => array( |
|
| 156 | + 'path' => '{project}/managedZones/{managedZone}', |
|
| 157 | + 'httpMethod' => 'DELETE', |
|
| 158 | + 'parameters' => array( |
|
| 159 | + 'project' => array( |
|
| 160 | + 'location' => 'path', |
|
| 161 | + 'type' => 'string', |
|
| 162 | + 'required' => true, |
|
| 163 | + ), |
|
| 164 | + 'managedZone' => array( |
|
| 165 | + 'location' => 'path', |
|
| 166 | + 'type' => 'string', |
|
| 167 | + 'required' => true, |
|
| 168 | + ), |
|
| 169 | + ), |
|
| 170 | + ),'get' => array( |
|
| 171 | + 'path' => '{project}/managedZones/{managedZone}', |
|
| 172 | + 'httpMethod' => 'GET', |
|
| 173 | + 'parameters' => array( |
|
| 174 | + 'project' => array( |
|
| 175 | + 'location' => 'path', |
|
| 176 | + 'type' => 'string', |
|
| 177 | + 'required' => true, |
|
| 178 | + ), |
|
| 179 | + 'managedZone' => array( |
|
| 180 | + 'location' => 'path', |
|
| 181 | + 'type' => 'string', |
|
| 182 | + 'required' => true, |
|
| 183 | + ), |
|
| 184 | + ), |
|
| 185 | + ),'list' => array( |
|
| 186 | + 'path' => '{project}/managedZones', |
|
| 187 | + 'httpMethod' => 'GET', |
|
| 188 | + 'parameters' => array( |
|
| 189 | + 'project' => array( |
|
| 190 | + 'location' => 'path', |
|
| 191 | + 'type' => 'string', |
|
| 192 | + 'required' => true, |
|
| 193 | + ), |
|
| 194 | + 'pageToken' => array( |
|
| 195 | + 'location' => 'query', |
|
| 196 | + 'type' => 'string', |
|
| 197 | + ), |
|
| 198 | + 'maxResults' => array( |
|
| 199 | + 'location' => 'query', |
|
| 200 | + 'type' => 'integer', |
|
| 201 | + ), |
|
| 202 | + ), |
|
| 203 | + ), |
|
| 204 | + ) |
|
| 205 | + ) |
|
| 206 | + ); |
|
| 207 | + $this->projects = new Google_Service_Dns_Projects_Resource( |
|
| 208 | + $this, |
|
| 209 | + $this->serviceName, |
|
| 210 | + 'projects', |
|
| 211 | + array( |
|
| 212 | + 'methods' => array( |
|
| 213 | + 'get' => array( |
|
| 214 | + 'path' => '{project}', |
|
| 215 | + 'httpMethod' => 'GET', |
|
| 216 | + 'parameters' => array( |
|
| 217 | + 'project' => array( |
|
| 218 | + 'location' => 'path', |
|
| 219 | + 'type' => 'string', |
|
| 220 | + 'required' => true, |
|
| 221 | + ), |
|
| 222 | + ), |
|
| 223 | + ), |
|
| 224 | + ) |
|
| 225 | + ) |
|
| 226 | + ); |
|
| 227 | + $this->resourceRecordSets = new Google_Service_Dns_ResourceRecordSets_Resource( |
|
| 228 | + $this, |
|
| 229 | + $this->serviceName, |
|
| 230 | + 'resourceRecordSets', |
|
| 231 | + array( |
|
| 232 | + 'methods' => array( |
|
| 233 | + 'list' => array( |
|
| 234 | + 'path' => '{project}/managedZones/{managedZone}/rrsets', |
|
| 235 | + 'httpMethod' => 'GET', |
|
| 236 | + 'parameters' => array( |
|
| 237 | + 'project' => array( |
|
| 238 | + 'location' => 'path', |
|
| 239 | + 'type' => 'string', |
|
| 240 | + 'required' => true, |
|
| 241 | + ), |
|
| 242 | + 'managedZone' => array( |
|
| 243 | + 'location' => 'path', |
|
| 244 | + 'type' => 'string', |
|
| 245 | + 'required' => true, |
|
| 246 | + ), |
|
| 247 | + 'name' => array( |
|
| 248 | + 'location' => 'query', |
|
| 249 | + 'type' => 'string', |
|
| 250 | + ), |
|
| 251 | + 'maxResults' => array( |
|
| 252 | + 'location' => 'query', |
|
| 253 | + 'type' => 'integer', |
|
| 254 | + ), |
|
| 255 | + 'pageToken' => array( |
|
| 256 | + 'location' => 'query', |
|
| 257 | + 'type' => 'string', |
|
| 258 | + ), |
|
| 259 | + 'type' => array( |
|
| 260 | + 'location' => 'query', |
|
| 261 | + 'type' => 'string', |
|
| 262 | + ), |
|
| 263 | + ), |
|
| 264 | + ), |
|
| 265 | + ) |
|
| 266 | + ) |
|
| 267 | + ); |
|
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | 270 | |
@@ -292,9 +292,9 @@ discard block |
||
| 292 | 292 | */ |
| 293 | 293 | public function create($project, $managedZone, Google_Service_Dns_Change $postBody, $optParams = array()) |
| 294 | 294 | { |
| 295 | - $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody); |
|
| 296 | - $params = array_merge($params, $optParams); |
|
| 297 | - return $this->call('create', array($params), "Google_Service_Dns_Change"); |
|
| 295 | + $params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody); |
|
| 296 | + $params = array_merge($params, $optParams); |
|
| 297 | + return $this->call('create', array($params), "Google_Service_Dns_Change"); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** |
@@ -310,9 +310,9 @@ discard block |
||
| 310 | 310 | */ |
| 311 | 311 | public function get($project, $managedZone, $changeId, $optParams = array()) |
| 312 | 312 | { |
| 313 | - $params = array('project' => $project, 'managedZone' => $managedZone, 'changeId' => $changeId); |
|
| 314 | - $params = array_merge($params, $optParams); |
|
| 315 | - return $this->call('get', array($params), "Google_Service_Dns_Change"); |
|
| 313 | + $params = array('project' => $project, 'managedZone' => $managedZone, 'changeId' => $changeId); |
|
| 314 | + $params = array_merge($params, $optParams); |
|
| 315 | + return $this->call('get', array($params), "Google_Service_Dns_Change"); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | /** |
@@ -336,9 +336,9 @@ discard block |
||
| 336 | 336 | */ |
| 337 | 337 | public function listChanges($project, $managedZone, $optParams = array()) |
| 338 | 338 | { |
| 339 | - $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 340 | - $params = array_merge($params, $optParams); |
|
| 341 | - return $this->call('list', array($params), "Google_Service_Dns_ChangesListResponse"); |
|
| 339 | + $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 340 | + $params = array_merge($params, $optParams); |
|
| 341 | + return $this->call('list', array($params), "Google_Service_Dns_ChangesListResponse"); |
|
| 342 | 342 | } |
| 343 | 343 | } |
| 344 | 344 | |
@@ -363,9 +363,9 @@ discard block |
||
| 363 | 363 | */ |
| 364 | 364 | public function create($project, Google_Service_Dns_ManagedZone $postBody, $optParams = array()) |
| 365 | 365 | { |
| 366 | - $params = array('project' => $project, 'postBody' => $postBody); |
|
| 367 | - $params = array_merge($params, $optParams); |
|
| 368 | - return $this->call('create', array($params), "Google_Service_Dns_ManagedZone"); |
|
| 366 | + $params = array('project' => $project, 'postBody' => $postBody); |
|
| 367 | + $params = array_merge($params, $optParams); |
|
| 368 | + return $this->call('create', array($params), "Google_Service_Dns_ManagedZone"); |
|
| 369 | 369 | } |
| 370 | 370 | |
| 371 | 371 | /** |
@@ -378,9 +378,9 @@ discard block |
||
| 378 | 378 | */ |
| 379 | 379 | public function delete($project, $managedZone, $optParams = array()) |
| 380 | 380 | { |
| 381 | - $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 382 | - $params = array_merge($params, $optParams); |
|
| 383 | - return $this->call('delete', array($params)); |
|
| 381 | + $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 382 | + $params = array_merge($params, $optParams); |
|
| 383 | + return $this->call('delete', array($params)); |
|
| 384 | 384 | } |
| 385 | 385 | |
| 386 | 386 | /** |
@@ -394,9 +394,9 @@ discard block |
||
| 394 | 394 | */ |
| 395 | 395 | public function get($project, $managedZone, $optParams = array()) |
| 396 | 396 | { |
| 397 | - $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 398 | - $params = array_merge($params, $optParams); |
|
| 399 | - return $this->call('get', array($params), "Google_Service_Dns_ManagedZone"); |
|
| 397 | + $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 398 | + $params = array_merge($params, $optParams); |
|
| 399 | + return $this->call('get', array($params), "Google_Service_Dns_ManagedZone"); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | /** |
@@ -415,9 +415,9 @@ discard block |
||
| 415 | 415 | */ |
| 416 | 416 | public function listManagedZones($project, $optParams = array()) |
| 417 | 417 | { |
| 418 | - $params = array('project' => $project); |
|
| 419 | - $params = array_merge($params, $optParams); |
|
| 420 | - return $this->call('list', array($params), "Google_Service_Dns_ManagedZonesListResponse"); |
|
| 418 | + $params = array('project' => $project); |
|
| 419 | + $params = array_merge($params, $optParams); |
|
| 420 | + return $this->call('list', array($params), "Google_Service_Dns_ManagedZonesListResponse"); |
|
| 421 | 421 | } |
| 422 | 422 | } |
| 423 | 423 | |
@@ -441,9 +441,9 @@ discard block |
||
| 441 | 441 | */ |
| 442 | 442 | public function get($project, $optParams = array()) |
| 443 | 443 | { |
| 444 | - $params = array('project' => $project); |
|
| 445 | - $params = array_merge($params, $optParams); |
|
| 446 | - return $this->call('get', array($params), "Google_Service_Dns_Project"); |
|
| 444 | + $params = array('project' => $project); |
|
| 445 | + $params = array_merge($params, $optParams); |
|
| 446 | + return $this->call('get', array($params), "Google_Service_Dns_Project"); |
|
| 447 | 447 | } |
| 448 | 448 | } |
| 449 | 449 | |
@@ -480,9 +480,9 @@ discard block |
||
| 480 | 480 | */ |
| 481 | 481 | public function listResourceRecordSets($project, $managedZone, $optParams = array()) |
| 482 | 482 | { |
| 483 | - $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 484 | - $params = array_merge($params, $optParams); |
|
| 485 | - return $this->call('list', array($params), "Google_Service_Dns_ResourceRecordSetsListResponse"); |
|
| 483 | + $params = array('project' => $project, 'managedZone' => $managedZone); |
|
| 484 | + $params = array_merge($params, $optParams); |
|
| 485 | + return $this->call('list', array($params), "Google_Service_Dns_ResourceRecordSetsListResponse"); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | |
@@ -506,51 +506,51 @@ discard block |
||
| 506 | 506 | |
| 507 | 507 | public function setAdditions($additions) |
| 508 | 508 | { |
| 509 | - $this->additions = $additions; |
|
| 509 | + $this->additions = $additions; |
|
| 510 | 510 | } |
| 511 | 511 | public function getAdditions() |
| 512 | 512 | { |
| 513 | - return $this->additions; |
|
| 513 | + return $this->additions; |
|
| 514 | 514 | } |
| 515 | 515 | public function setDeletions($deletions) |
| 516 | 516 | { |
| 517 | - $this->deletions = $deletions; |
|
| 517 | + $this->deletions = $deletions; |
|
| 518 | 518 | } |
| 519 | 519 | public function getDeletions() |
| 520 | 520 | { |
| 521 | - return $this->deletions; |
|
| 521 | + return $this->deletions; |
|
| 522 | 522 | } |
| 523 | 523 | public function setId($id) |
| 524 | 524 | { |
| 525 | - $this->id = $id; |
|
| 525 | + $this->id = $id; |
|
| 526 | 526 | } |
| 527 | 527 | public function getId() |
| 528 | 528 | { |
| 529 | - return $this->id; |
|
| 529 | + return $this->id; |
|
| 530 | 530 | } |
| 531 | 531 | public function setKind($kind) |
| 532 | 532 | { |
| 533 | - $this->kind = $kind; |
|
| 533 | + $this->kind = $kind; |
|
| 534 | 534 | } |
| 535 | 535 | public function getKind() |
| 536 | 536 | { |
| 537 | - return $this->kind; |
|
| 537 | + return $this->kind; |
|
| 538 | 538 | } |
| 539 | 539 | public function setStartTime($startTime) |
| 540 | 540 | { |
| 541 | - $this->startTime = $startTime; |
|
| 541 | + $this->startTime = $startTime; |
|
| 542 | 542 | } |
| 543 | 543 | public function getStartTime() |
| 544 | 544 | { |
| 545 | - return $this->startTime; |
|
| 545 | + return $this->startTime; |
|
| 546 | 546 | } |
| 547 | 547 | public function setStatus($status) |
| 548 | 548 | { |
| 549 | - $this->status = $status; |
|
| 549 | + $this->status = $status; |
|
| 550 | 550 | } |
| 551 | 551 | public function getStatus() |
| 552 | 552 | { |
| 553 | - return $this->status; |
|
| 553 | + return $this->status; |
|
| 554 | 554 | } |
| 555 | 555 | } |
| 556 | 556 | |
@@ -567,27 +567,27 @@ discard block |
||
| 567 | 567 | |
| 568 | 568 | public function setChanges($changes) |
| 569 | 569 | { |
| 570 | - $this->changes = $changes; |
|
| 570 | + $this->changes = $changes; |
|
| 571 | 571 | } |
| 572 | 572 | public function getChanges() |
| 573 | 573 | { |
| 574 | - return $this->changes; |
|
| 574 | + return $this->changes; |
|
| 575 | 575 | } |
| 576 | 576 | public function setKind($kind) |
| 577 | 577 | { |
| 578 | - $this->kind = $kind; |
|
| 578 | + $this->kind = $kind; |
|
| 579 | 579 | } |
| 580 | 580 | public function getKind() |
| 581 | 581 | { |
| 582 | - return $this->kind; |
|
| 582 | + return $this->kind; |
|
| 583 | 583 | } |
| 584 | 584 | public function setNextPageToken($nextPageToken) |
| 585 | 585 | { |
| 586 | - $this->nextPageToken = $nextPageToken; |
|
| 586 | + $this->nextPageToken = $nextPageToken; |
|
| 587 | 587 | } |
| 588 | 588 | public function getNextPageToken() |
| 589 | 589 | { |
| 590 | - return $this->nextPageToken; |
|
| 590 | + return $this->nextPageToken; |
|
| 591 | 591 | } |
| 592 | 592 | } |
| 593 | 593 | |
@@ -608,67 +608,67 @@ discard block |
||
| 608 | 608 | |
| 609 | 609 | public function setCreationTime($creationTime) |
| 610 | 610 | { |
| 611 | - $this->creationTime = $creationTime; |
|
| 611 | + $this->creationTime = $creationTime; |
|
| 612 | 612 | } |
| 613 | 613 | public function getCreationTime() |
| 614 | 614 | { |
| 615 | - return $this->creationTime; |
|
| 615 | + return $this->creationTime; |
|
| 616 | 616 | } |
| 617 | 617 | public function setDescription($description) |
| 618 | 618 | { |
| 619 | - $this->description = $description; |
|
| 619 | + $this->description = $description; |
|
| 620 | 620 | } |
| 621 | 621 | public function getDescription() |
| 622 | 622 | { |
| 623 | - return $this->description; |
|
| 623 | + return $this->description; |
|
| 624 | 624 | } |
| 625 | 625 | public function setDnsName($dnsName) |
| 626 | 626 | { |
| 627 | - $this->dnsName = $dnsName; |
|
| 627 | + $this->dnsName = $dnsName; |
|
| 628 | 628 | } |
| 629 | 629 | public function getDnsName() |
| 630 | 630 | { |
| 631 | - return $this->dnsName; |
|
| 631 | + return $this->dnsName; |
|
| 632 | 632 | } |
| 633 | 633 | public function setId($id) |
| 634 | 634 | { |
| 635 | - $this->id = $id; |
|
| 635 | + $this->id = $id; |
|
| 636 | 636 | } |
| 637 | 637 | public function getId() |
| 638 | 638 | { |
| 639 | - return $this->id; |
|
| 639 | + return $this->id; |
|
| 640 | 640 | } |
| 641 | 641 | public function setKind($kind) |
| 642 | 642 | { |
| 643 | - $this->kind = $kind; |
|
| 643 | + $this->kind = $kind; |
|
| 644 | 644 | } |
| 645 | 645 | public function getKind() |
| 646 | 646 | { |
| 647 | - return $this->kind; |
|
| 647 | + return $this->kind; |
|
| 648 | 648 | } |
| 649 | 649 | public function setName($name) |
| 650 | 650 | { |
| 651 | - $this->name = $name; |
|
| 651 | + $this->name = $name; |
|
| 652 | 652 | } |
| 653 | 653 | public function getName() |
| 654 | 654 | { |
| 655 | - return $this->name; |
|
| 655 | + return $this->name; |
|
| 656 | 656 | } |
| 657 | 657 | public function setNameServerSet($nameServerSet) |
| 658 | 658 | { |
| 659 | - $this->nameServerSet = $nameServerSet; |
|
| 659 | + $this->nameServerSet = $nameServerSet; |
|
| 660 | 660 | } |
| 661 | 661 | public function getNameServerSet() |
| 662 | 662 | { |
| 663 | - return $this->nameServerSet; |
|
| 663 | + return $this->nameServerSet; |
|
| 664 | 664 | } |
| 665 | 665 | public function setNameServers($nameServers) |
| 666 | 666 | { |
| 667 | - $this->nameServers = $nameServers; |
|
| 667 | + $this->nameServers = $nameServers; |
|
| 668 | 668 | } |
| 669 | 669 | public function getNameServers() |
| 670 | 670 | { |
| 671 | - return $this->nameServers; |
|
| 671 | + return $this->nameServers; |
|
| 672 | 672 | } |
| 673 | 673 | } |
| 674 | 674 | |
@@ -685,27 +685,27 @@ discard block |
||
| 685 | 685 | |
| 686 | 686 | public function setKind($kind) |
| 687 | 687 | { |
| 688 | - $this->kind = $kind; |
|
| 688 | + $this->kind = $kind; |
|
| 689 | 689 | } |
| 690 | 690 | public function getKind() |
| 691 | 691 | { |
| 692 | - return $this->kind; |
|
| 692 | + return $this->kind; |
|
| 693 | 693 | } |
| 694 | 694 | public function setManagedZones($managedZones) |
| 695 | 695 | { |
| 696 | - $this->managedZones = $managedZones; |
|
| 696 | + $this->managedZones = $managedZones; |
|
| 697 | 697 | } |
| 698 | 698 | public function getManagedZones() |
| 699 | 699 | { |
| 700 | - return $this->managedZones; |
|
| 700 | + return $this->managedZones; |
|
| 701 | 701 | } |
| 702 | 702 | public function setNextPageToken($nextPageToken) |
| 703 | 703 | { |
| 704 | - $this->nextPageToken = $nextPageToken; |
|
| 704 | + $this->nextPageToken = $nextPageToken; |
|
| 705 | 705 | } |
| 706 | 706 | public function getNextPageToken() |
| 707 | 707 | { |
| 708 | - return $this->nextPageToken; |
|
| 708 | + return $this->nextPageToken; |
|
| 709 | 709 | } |
| 710 | 710 | } |
| 711 | 711 | |
@@ -722,35 +722,35 @@ discard block |
||
| 722 | 722 | |
| 723 | 723 | public function setId($id) |
| 724 | 724 | { |
| 725 | - $this->id = $id; |
|
| 725 | + $this->id = $id; |
|
| 726 | 726 | } |
| 727 | 727 | public function getId() |
| 728 | 728 | { |
| 729 | - return $this->id; |
|
| 729 | + return $this->id; |
|
| 730 | 730 | } |
| 731 | 731 | public function setKind($kind) |
| 732 | 732 | { |
| 733 | - $this->kind = $kind; |
|
| 733 | + $this->kind = $kind; |
|
| 734 | 734 | } |
| 735 | 735 | public function getKind() |
| 736 | 736 | { |
| 737 | - return $this->kind; |
|
| 737 | + return $this->kind; |
|
| 738 | 738 | } |
| 739 | 739 | public function setNumber($number) |
| 740 | 740 | { |
| 741 | - $this->number = $number; |
|
| 741 | + $this->number = $number; |
|
| 742 | 742 | } |
| 743 | 743 | public function getNumber() |
| 744 | 744 | { |
| 745 | - return $this->number; |
|
| 745 | + return $this->number; |
|
| 746 | 746 | } |
| 747 | 747 | public function setQuota(Google_Service_Dns_Quota $quota) |
| 748 | 748 | { |
| 749 | - $this->quota = $quota; |
|
| 749 | + $this->quota = $quota; |
|
| 750 | 750 | } |
| 751 | 751 | public function getQuota() |
| 752 | 752 | { |
| 753 | - return $this->quota; |
|
| 753 | + return $this->quota; |
|
| 754 | 754 | } |
| 755 | 755 | } |
| 756 | 756 | |
@@ -769,59 +769,59 @@ discard block |
||
| 769 | 769 | |
| 770 | 770 | public function setKind($kind) |
| 771 | 771 | { |
| 772 | - $this->kind = $kind; |
|
| 772 | + $this->kind = $kind; |
|
| 773 | 773 | } |
| 774 | 774 | public function getKind() |
| 775 | 775 | { |
| 776 | - return $this->kind; |
|
| 776 | + return $this->kind; |
|
| 777 | 777 | } |
| 778 | 778 | public function setManagedZones($managedZones) |
| 779 | 779 | { |
| 780 | - $this->managedZones = $managedZones; |
|
| 780 | + $this->managedZones = $managedZones; |
|
| 781 | 781 | } |
| 782 | 782 | public function getManagedZones() |
| 783 | 783 | { |
| 784 | - return $this->managedZones; |
|
| 784 | + return $this->managedZones; |
|
| 785 | 785 | } |
| 786 | 786 | public function setResourceRecordsPerRrset($resourceRecordsPerRrset) |
| 787 | 787 | { |
| 788 | - $this->resourceRecordsPerRrset = $resourceRecordsPerRrset; |
|
| 788 | + $this->resourceRecordsPerRrset = $resourceRecordsPerRrset; |
|
| 789 | 789 | } |
| 790 | 790 | public function getResourceRecordsPerRrset() |
| 791 | 791 | { |
| 792 | - return $this->resourceRecordsPerRrset; |
|
| 792 | + return $this->resourceRecordsPerRrset; |
|
| 793 | 793 | } |
| 794 | 794 | public function setRrsetAdditionsPerChange($rrsetAdditionsPerChange) |
| 795 | 795 | { |
| 796 | - $this->rrsetAdditionsPerChange = $rrsetAdditionsPerChange; |
|
| 796 | + $this->rrsetAdditionsPerChange = $rrsetAdditionsPerChange; |
|
| 797 | 797 | } |
| 798 | 798 | public function getRrsetAdditionsPerChange() |
| 799 | 799 | { |
| 800 | - return $this->rrsetAdditionsPerChange; |
|
| 800 | + return $this->rrsetAdditionsPerChange; |
|
| 801 | 801 | } |
| 802 | 802 | public function setRrsetDeletionsPerChange($rrsetDeletionsPerChange) |
| 803 | 803 | { |
| 804 | - $this->rrsetDeletionsPerChange = $rrsetDeletionsPerChange; |
|
| 804 | + $this->rrsetDeletionsPerChange = $rrsetDeletionsPerChange; |
|
| 805 | 805 | } |
| 806 | 806 | public function getRrsetDeletionsPerChange() |
| 807 | 807 | { |
| 808 | - return $this->rrsetDeletionsPerChange; |
|
| 808 | + return $this->rrsetDeletionsPerChange; |
|
| 809 | 809 | } |
| 810 | 810 | public function setRrsetsPerManagedZone($rrsetsPerManagedZone) |
| 811 | 811 | { |
| 812 | - $this->rrsetsPerManagedZone = $rrsetsPerManagedZone; |
|
| 812 | + $this->rrsetsPerManagedZone = $rrsetsPerManagedZone; |
|
| 813 | 813 | } |
| 814 | 814 | public function getRrsetsPerManagedZone() |
| 815 | 815 | { |
| 816 | - return $this->rrsetsPerManagedZone; |
|
| 816 | + return $this->rrsetsPerManagedZone; |
|
| 817 | 817 | } |
| 818 | 818 | public function setTotalRrdataSizePerChange($totalRrdataSizePerChange) |
| 819 | 819 | { |
| 820 | - $this->totalRrdataSizePerChange = $totalRrdataSizePerChange; |
|
| 820 | + $this->totalRrdataSizePerChange = $totalRrdataSizePerChange; |
|
| 821 | 821 | } |
| 822 | 822 | public function getTotalRrdataSizePerChange() |
| 823 | 823 | { |
| 824 | - return $this->totalRrdataSizePerChange; |
|
| 824 | + return $this->totalRrdataSizePerChange; |
|
| 825 | 825 | } |
| 826 | 826 | } |
| 827 | 827 | |
@@ -839,43 +839,43 @@ discard block |
||
| 839 | 839 | |
| 840 | 840 | public function setKind($kind) |
| 841 | 841 | { |
| 842 | - $this->kind = $kind; |
|
| 842 | + $this->kind = $kind; |
|
| 843 | 843 | } |
| 844 | 844 | public function getKind() |
| 845 | 845 | { |
| 846 | - return $this->kind; |
|
| 846 | + return $this->kind; |
|
| 847 | 847 | } |
| 848 | 848 | public function setName($name) |
| 849 | 849 | { |
| 850 | - $this->name = $name; |
|
| 850 | + $this->name = $name; |
|
| 851 | 851 | } |
| 852 | 852 | public function getName() |
| 853 | 853 | { |
| 854 | - return $this->name; |
|
| 854 | + return $this->name; |
|
| 855 | 855 | } |
| 856 | 856 | public function setRrdatas($rrdatas) |
| 857 | 857 | { |
| 858 | - $this->rrdatas = $rrdatas; |
|
| 858 | + $this->rrdatas = $rrdatas; |
|
| 859 | 859 | } |
| 860 | 860 | public function getRrdatas() |
| 861 | 861 | { |
| 862 | - return $this->rrdatas; |
|
| 862 | + return $this->rrdatas; |
|
| 863 | 863 | } |
| 864 | 864 | public function setTtl($ttl) |
| 865 | 865 | { |
| 866 | - $this->ttl = $ttl; |
|
| 866 | + $this->ttl = $ttl; |
|
| 867 | 867 | } |
| 868 | 868 | public function getTtl() |
| 869 | 869 | { |
| 870 | - return $this->ttl; |
|
| 870 | + return $this->ttl; |
|
| 871 | 871 | } |
| 872 | 872 | public function setType($type) |
| 873 | 873 | { |
| 874 | - $this->type = $type; |
|
| 874 | + $this->type = $type; |
|
| 875 | 875 | } |
| 876 | 876 | public function getType() |
| 877 | 877 | { |
| 878 | - return $this->type; |
|
| 878 | + return $this->type; |
|
| 879 | 879 | } |
| 880 | 880 | } |
| 881 | 881 | |
@@ -892,26 +892,26 @@ discard block |
||
| 892 | 892 | |
| 893 | 893 | public function setKind($kind) |
| 894 | 894 | { |
| 895 | - $this->kind = $kind; |
|
| 895 | + $this->kind = $kind; |
|
| 896 | 896 | } |
| 897 | 897 | public function getKind() |
| 898 | 898 | { |
| 899 | - return $this->kind; |
|
| 899 | + return $this->kind; |
|
| 900 | 900 | } |
| 901 | 901 | public function setNextPageToken($nextPageToken) |
| 902 | 902 | { |
| 903 | - $this->nextPageToken = $nextPageToken; |
|
| 903 | + $this->nextPageToken = $nextPageToken; |
|
| 904 | 904 | } |
| 905 | 905 | public function getNextPageToken() |
| 906 | 906 | { |
| 907 | - return $this->nextPageToken; |
|
| 907 | + return $this->nextPageToken; |
|
| 908 | 908 | } |
| 909 | 909 | public function setRrsets($rrsets) |
| 910 | 910 | { |
| 911 | - $this->rrsets = $rrsets; |
|
| 911 | + $this->rrsets = $rrsets; |
|
| 912 | 912 | } |
| 913 | 913 | public function getRrsets() |
| 914 | 914 | { |
| 915 | - return $this->rrsets; |
|
| 915 | + return $this->rrsets; |
|
| 916 | 916 | } |
| 917 | 917 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | 'required' => true, |
| 82 | 82 | ), |
| 83 | 83 | ), |
| 84 | - ),'get' => array( |
|
| 84 | + ), 'get' => array( |
|
| 85 | 85 | 'path' => '{project}/managedZones/{managedZone}/changes/{changeId}', |
| 86 | 86 | 'httpMethod' => 'GET', |
| 87 | 87 | 'parameters' => array( |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'required' => true, |
| 102 | 102 | ), |
| 103 | 103 | ), |
| 104 | - ),'list' => array( |
|
| 104 | + ), 'list' => array( |
|
| 105 | 105 | 'path' => '{project}/managedZones/{managedZone}/changes', |
| 106 | 106 | 'httpMethod' => 'GET', |
| 107 | 107 | 'parameters' => array( |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | 'required' => true, |
| 153 | 153 | ), |
| 154 | 154 | ), |
| 155 | - ),'delete' => array( |
|
| 155 | + ), 'delete' => array( |
|
| 156 | 156 | 'path' => '{project}/managedZones/{managedZone}', |
| 157 | 157 | 'httpMethod' => 'DELETE', |
| 158 | 158 | 'parameters' => array( |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | 'required' => true, |
| 168 | 168 | ), |
| 169 | 169 | ), |
| 170 | - ),'get' => array( |
|
| 170 | + ), 'get' => array( |
|
| 171 | 171 | 'path' => '{project}/managedZones/{managedZone}', |
| 172 | 172 | 'httpMethod' => 'GET', |
| 173 | 173 | 'parameters' => array( |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | 'required' => true, |
| 183 | 183 | ), |
| 184 | 184 | ), |
| 185 | - ),'list' => array( |
|
| 185 | + ), 'list' => array( |
|
| 186 | 186 | 'path' => '{project}/managedZones', |
| 187 | 187 | 'httpMethod' => 'GET', |
| 188 | 188 | 'parameters' => array( |
@@ -33,10 +33,10 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | /** View and manage your Ad Exchange data. */ |
| 35 | 35 | const ADEXCHANGE_SELLER = |
| 36 | - "https://www.googleapis.com/auth/adexchange.seller"; |
|
| 36 | + "https://www.googleapis.com/auth/adexchange.seller"; |
|
| 37 | 37 | /** View your Ad Exchange data. */ |
| 38 | 38 | const ADEXCHANGE_SELLER_READONLY = |
| 39 | - "https://www.googleapis.com/auth/adexchange.seller.readonly"; |
|
| 39 | + "https://www.googleapis.com/auth/adexchange.seller.readonly"; |
|
| 40 | 40 | |
| 41 | 41 | public $accounts; |
| 42 | 42 | public $accounts_adclients; |
@@ -57,375 +57,375 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function __construct(Google_Client $client) |
| 59 | 59 | { |
| 60 | - parent::__construct($client); |
|
| 61 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 62 | - $this->servicePath = 'adexchangeseller/v2.0/'; |
|
| 63 | - $this->version = 'v2.0'; |
|
| 64 | - $this->serviceName = 'adexchangeseller'; |
|
| 65 | - |
|
| 66 | - $this->accounts = new Google_Service_AdExchangeSeller_Accounts_Resource( |
|
| 67 | - $this, |
|
| 68 | - $this->serviceName, |
|
| 69 | - 'accounts', |
|
| 70 | - array( |
|
| 71 | - 'methods' => array( |
|
| 72 | - 'get' => array( |
|
| 73 | - 'path' => 'accounts/{accountId}', |
|
| 74 | - 'httpMethod' => 'GET', |
|
| 75 | - 'parameters' => array( |
|
| 76 | - 'accountId' => array( |
|
| 77 | - 'location' => 'path', |
|
| 78 | - 'type' => 'string', |
|
| 79 | - 'required' => true, |
|
| 80 | - ), |
|
| 81 | - ), |
|
| 82 | - ),'list' => array( |
|
| 83 | - 'path' => 'accounts', |
|
| 84 | - 'httpMethod' => 'GET', |
|
| 85 | - 'parameters' => array( |
|
| 86 | - 'pageToken' => array( |
|
| 87 | - 'location' => 'query', |
|
| 88 | - 'type' => 'string', |
|
| 89 | - ), |
|
| 90 | - 'maxResults' => array( |
|
| 91 | - 'location' => 'query', |
|
| 92 | - 'type' => 'integer', |
|
| 93 | - ), |
|
| 94 | - ), |
|
| 95 | - ), |
|
| 96 | - ) |
|
| 97 | - ) |
|
| 98 | - ); |
|
| 99 | - $this->accounts_adclients = new Google_Service_AdExchangeSeller_AccountsAdclients_Resource( |
|
| 100 | - $this, |
|
| 101 | - $this->serviceName, |
|
| 102 | - 'adclients', |
|
| 103 | - array( |
|
| 104 | - 'methods' => array( |
|
| 105 | - 'list' => array( |
|
| 106 | - 'path' => 'accounts/{accountId}/adclients', |
|
| 107 | - 'httpMethod' => 'GET', |
|
| 108 | - 'parameters' => array( |
|
| 109 | - 'accountId' => array( |
|
| 110 | - 'location' => 'path', |
|
| 111 | - 'type' => 'string', |
|
| 112 | - 'required' => true, |
|
| 113 | - ), |
|
| 114 | - 'pageToken' => array( |
|
| 115 | - 'location' => 'query', |
|
| 116 | - 'type' => 'string', |
|
| 117 | - ), |
|
| 118 | - 'maxResults' => array( |
|
| 119 | - 'location' => 'query', |
|
| 120 | - 'type' => 'integer', |
|
| 121 | - ), |
|
| 122 | - ), |
|
| 123 | - ), |
|
| 124 | - ) |
|
| 125 | - ) |
|
| 126 | - ); |
|
| 127 | - $this->accounts_alerts = new Google_Service_AdExchangeSeller_AccountsAlerts_Resource( |
|
| 128 | - $this, |
|
| 129 | - $this->serviceName, |
|
| 130 | - 'alerts', |
|
| 131 | - array( |
|
| 132 | - 'methods' => array( |
|
| 133 | - 'list' => array( |
|
| 134 | - 'path' => 'accounts/{accountId}/alerts', |
|
| 135 | - 'httpMethod' => 'GET', |
|
| 136 | - 'parameters' => array( |
|
| 137 | - 'accountId' => array( |
|
| 138 | - 'location' => 'path', |
|
| 139 | - 'type' => 'string', |
|
| 140 | - 'required' => true, |
|
| 141 | - ), |
|
| 142 | - 'locale' => array( |
|
| 143 | - 'location' => 'query', |
|
| 144 | - 'type' => 'string', |
|
| 145 | - ), |
|
| 146 | - ), |
|
| 147 | - ), |
|
| 148 | - ) |
|
| 149 | - ) |
|
| 150 | - ); |
|
| 151 | - $this->accounts_customchannels = new Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource( |
|
| 152 | - $this, |
|
| 153 | - $this->serviceName, |
|
| 154 | - 'customchannels', |
|
| 155 | - array( |
|
| 156 | - 'methods' => array( |
|
| 157 | - 'get' => array( |
|
| 158 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 159 | - 'httpMethod' => 'GET', |
|
| 160 | - 'parameters' => array( |
|
| 161 | - 'accountId' => array( |
|
| 162 | - 'location' => 'path', |
|
| 163 | - 'type' => 'string', |
|
| 164 | - 'required' => true, |
|
| 165 | - ), |
|
| 166 | - 'adClientId' => array( |
|
| 167 | - 'location' => 'path', |
|
| 168 | - 'type' => 'string', |
|
| 169 | - 'required' => true, |
|
| 170 | - ), |
|
| 171 | - 'customChannelId' => array( |
|
| 172 | - 'location' => 'path', |
|
| 173 | - 'type' => 'string', |
|
| 174 | - 'required' => true, |
|
| 175 | - ), |
|
| 176 | - ), |
|
| 177 | - ),'list' => array( |
|
| 178 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', |
|
| 179 | - 'httpMethod' => 'GET', |
|
| 180 | - 'parameters' => array( |
|
| 181 | - 'accountId' => array( |
|
| 182 | - 'location' => 'path', |
|
| 183 | - 'type' => 'string', |
|
| 184 | - 'required' => true, |
|
| 185 | - ), |
|
| 186 | - 'adClientId' => array( |
|
| 187 | - 'location' => 'path', |
|
| 188 | - 'type' => 'string', |
|
| 189 | - 'required' => true, |
|
| 190 | - ), |
|
| 191 | - 'pageToken' => array( |
|
| 192 | - 'location' => 'query', |
|
| 193 | - 'type' => 'string', |
|
| 194 | - ), |
|
| 195 | - 'maxResults' => array( |
|
| 196 | - 'location' => 'query', |
|
| 197 | - 'type' => 'integer', |
|
| 198 | - ), |
|
| 199 | - ), |
|
| 200 | - ), |
|
| 201 | - ) |
|
| 202 | - ) |
|
| 203 | - ); |
|
| 204 | - $this->accounts_metadata_dimensions = new Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource( |
|
| 205 | - $this, |
|
| 206 | - $this->serviceName, |
|
| 207 | - 'dimensions', |
|
| 208 | - array( |
|
| 209 | - 'methods' => array( |
|
| 210 | - 'list' => array( |
|
| 211 | - 'path' => 'accounts/{accountId}/metadata/dimensions', |
|
| 212 | - 'httpMethod' => 'GET', |
|
| 213 | - 'parameters' => array( |
|
| 214 | - 'accountId' => array( |
|
| 215 | - 'location' => 'path', |
|
| 216 | - 'type' => 'string', |
|
| 217 | - 'required' => true, |
|
| 218 | - ), |
|
| 219 | - ), |
|
| 220 | - ), |
|
| 221 | - ) |
|
| 222 | - ) |
|
| 223 | - ); |
|
| 224 | - $this->accounts_metadata_metrics = new Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource( |
|
| 225 | - $this, |
|
| 226 | - $this->serviceName, |
|
| 227 | - 'metrics', |
|
| 228 | - array( |
|
| 229 | - 'methods' => array( |
|
| 230 | - 'list' => array( |
|
| 231 | - 'path' => 'accounts/{accountId}/metadata/metrics', |
|
| 232 | - 'httpMethod' => 'GET', |
|
| 233 | - 'parameters' => array( |
|
| 234 | - 'accountId' => array( |
|
| 235 | - 'location' => 'path', |
|
| 236 | - 'type' => 'string', |
|
| 237 | - 'required' => true, |
|
| 238 | - ), |
|
| 239 | - ), |
|
| 240 | - ), |
|
| 241 | - ) |
|
| 242 | - ) |
|
| 243 | - ); |
|
| 244 | - $this->accounts_preferreddeals = new Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource( |
|
| 245 | - $this, |
|
| 246 | - $this->serviceName, |
|
| 247 | - 'preferreddeals', |
|
| 248 | - array( |
|
| 249 | - 'methods' => array( |
|
| 250 | - 'get' => array( |
|
| 251 | - 'path' => 'accounts/{accountId}/preferreddeals/{dealId}', |
|
| 252 | - 'httpMethod' => 'GET', |
|
| 253 | - 'parameters' => array( |
|
| 254 | - 'accountId' => array( |
|
| 255 | - 'location' => 'path', |
|
| 256 | - 'type' => 'string', |
|
| 257 | - 'required' => true, |
|
| 258 | - ), |
|
| 259 | - 'dealId' => array( |
|
| 260 | - 'location' => 'path', |
|
| 261 | - 'type' => 'string', |
|
| 262 | - 'required' => true, |
|
| 263 | - ), |
|
| 264 | - ), |
|
| 265 | - ),'list' => array( |
|
| 266 | - 'path' => 'accounts/{accountId}/preferreddeals', |
|
| 267 | - 'httpMethod' => 'GET', |
|
| 268 | - 'parameters' => array( |
|
| 269 | - 'accountId' => array( |
|
| 270 | - 'location' => 'path', |
|
| 271 | - 'type' => 'string', |
|
| 272 | - 'required' => true, |
|
| 273 | - ), |
|
| 274 | - ), |
|
| 275 | - ), |
|
| 276 | - ) |
|
| 277 | - ) |
|
| 278 | - ); |
|
| 279 | - $this->accounts_reports = new Google_Service_AdExchangeSeller_AccountsReports_Resource( |
|
| 280 | - $this, |
|
| 281 | - $this->serviceName, |
|
| 282 | - 'reports', |
|
| 283 | - array( |
|
| 284 | - 'methods' => array( |
|
| 285 | - 'generate' => array( |
|
| 286 | - 'path' => 'accounts/{accountId}/reports', |
|
| 287 | - 'httpMethod' => 'GET', |
|
| 288 | - 'parameters' => array( |
|
| 289 | - 'accountId' => array( |
|
| 290 | - 'location' => 'path', |
|
| 291 | - 'type' => 'string', |
|
| 292 | - 'required' => true, |
|
| 293 | - ), |
|
| 294 | - 'startDate' => array( |
|
| 295 | - 'location' => 'query', |
|
| 296 | - 'type' => 'string', |
|
| 297 | - 'required' => true, |
|
| 298 | - ), |
|
| 299 | - 'endDate' => array( |
|
| 300 | - 'location' => 'query', |
|
| 301 | - 'type' => 'string', |
|
| 302 | - 'required' => true, |
|
| 303 | - ), |
|
| 304 | - 'sort' => array( |
|
| 305 | - 'location' => 'query', |
|
| 306 | - 'type' => 'string', |
|
| 307 | - 'repeated' => true, |
|
| 308 | - ), |
|
| 309 | - 'locale' => array( |
|
| 310 | - 'location' => 'query', |
|
| 311 | - 'type' => 'string', |
|
| 312 | - ), |
|
| 313 | - 'metric' => array( |
|
| 314 | - 'location' => 'query', |
|
| 315 | - 'type' => 'string', |
|
| 316 | - 'repeated' => true, |
|
| 317 | - ), |
|
| 318 | - 'maxResults' => array( |
|
| 319 | - 'location' => 'query', |
|
| 320 | - 'type' => 'integer', |
|
| 321 | - ), |
|
| 322 | - 'filter' => array( |
|
| 323 | - 'location' => 'query', |
|
| 324 | - 'type' => 'string', |
|
| 325 | - 'repeated' => true, |
|
| 326 | - ), |
|
| 327 | - 'startIndex' => array( |
|
| 328 | - 'location' => 'query', |
|
| 329 | - 'type' => 'integer', |
|
| 330 | - ), |
|
| 331 | - 'dimension' => array( |
|
| 332 | - 'location' => 'query', |
|
| 333 | - 'type' => 'string', |
|
| 334 | - 'repeated' => true, |
|
| 335 | - ), |
|
| 336 | - ), |
|
| 337 | - ), |
|
| 338 | - ) |
|
| 339 | - ) |
|
| 340 | - ); |
|
| 341 | - $this->accounts_reports_saved = new Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource( |
|
| 342 | - $this, |
|
| 343 | - $this->serviceName, |
|
| 344 | - 'saved', |
|
| 345 | - array( |
|
| 346 | - 'methods' => array( |
|
| 347 | - 'generate' => array( |
|
| 348 | - 'path' => 'accounts/{accountId}/reports/{savedReportId}', |
|
| 349 | - 'httpMethod' => 'GET', |
|
| 350 | - 'parameters' => array( |
|
| 351 | - 'accountId' => array( |
|
| 352 | - 'location' => 'path', |
|
| 353 | - 'type' => 'string', |
|
| 354 | - 'required' => true, |
|
| 355 | - ), |
|
| 356 | - 'savedReportId' => array( |
|
| 357 | - 'location' => 'path', |
|
| 358 | - 'type' => 'string', |
|
| 359 | - 'required' => true, |
|
| 360 | - ), |
|
| 361 | - 'locale' => array( |
|
| 362 | - 'location' => 'query', |
|
| 363 | - 'type' => 'string', |
|
| 364 | - ), |
|
| 365 | - 'startIndex' => array( |
|
| 366 | - 'location' => 'query', |
|
| 367 | - 'type' => 'integer', |
|
| 368 | - ), |
|
| 369 | - 'maxResults' => array( |
|
| 370 | - 'location' => 'query', |
|
| 371 | - 'type' => 'integer', |
|
| 372 | - ), |
|
| 373 | - ), |
|
| 374 | - ),'list' => array( |
|
| 375 | - 'path' => 'accounts/{accountId}/reports/saved', |
|
| 376 | - 'httpMethod' => 'GET', |
|
| 377 | - 'parameters' => array( |
|
| 378 | - 'accountId' => array( |
|
| 379 | - 'location' => 'path', |
|
| 380 | - 'type' => 'string', |
|
| 381 | - 'required' => true, |
|
| 382 | - ), |
|
| 383 | - 'pageToken' => array( |
|
| 384 | - 'location' => 'query', |
|
| 385 | - 'type' => 'string', |
|
| 386 | - ), |
|
| 387 | - 'maxResults' => array( |
|
| 388 | - 'location' => 'query', |
|
| 389 | - 'type' => 'integer', |
|
| 390 | - ), |
|
| 391 | - ), |
|
| 392 | - ), |
|
| 393 | - ) |
|
| 394 | - ) |
|
| 395 | - ); |
|
| 396 | - $this->accounts_urlchannels = new Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource( |
|
| 397 | - $this, |
|
| 398 | - $this->serviceName, |
|
| 399 | - 'urlchannels', |
|
| 400 | - array( |
|
| 401 | - 'methods' => array( |
|
| 402 | - 'list' => array( |
|
| 403 | - 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', |
|
| 404 | - 'httpMethod' => 'GET', |
|
| 405 | - 'parameters' => array( |
|
| 406 | - 'accountId' => array( |
|
| 407 | - 'location' => 'path', |
|
| 408 | - 'type' => 'string', |
|
| 409 | - 'required' => true, |
|
| 410 | - ), |
|
| 411 | - 'adClientId' => array( |
|
| 412 | - 'location' => 'path', |
|
| 413 | - 'type' => 'string', |
|
| 414 | - 'required' => true, |
|
| 415 | - ), |
|
| 416 | - 'pageToken' => array( |
|
| 417 | - 'location' => 'query', |
|
| 418 | - 'type' => 'string', |
|
| 419 | - ), |
|
| 420 | - 'maxResults' => array( |
|
| 421 | - 'location' => 'query', |
|
| 422 | - 'type' => 'integer', |
|
| 423 | - ), |
|
| 424 | - ), |
|
| 425 | - ), |
|
| 426 | - ) |
|
| 427 | - ) |
|
| 428 | - ); |
|
| 60 | + parent::__construct($client); |
|
| 61 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 62 | + $this->servicePath = 'adexchangeseller/v2.0/'; |
|
| 63 | + $this->version = 'v2.0'; |
|
| 64 | + $this->serviceName = 'adexchangeseller'; |
|
| 65 | + |
|
| 66 | + $this->accounts = new Google_Service_AdExchangeSeller_Accounts_Resource( |
|
| 67 | + $this, |
|
| 68 | + $this->serviceName, |
|
| 69 | + 'accounts', |
|
| 70 | + array( |
|
| 71 | + 'methods' => array( |
|
| 72 | + 'get' => array( |
|
| 73 | + 'path' => 'accounts/{accountId}', |
|
| 74 | + 'httpMethod' => 'GET', |
|
| 75 | + 'parameters' => array( |
|
| 76 | + 'accountId' => array( |
|
| 77 | + 'location' => 'path', |
|
| 78 | + 'type' => 'string', |
|
| 79 | + 'required' => true, |
|
| 80 | + ), |
|
| 81 | + ), |
|
| 82 | + ),'list' => array( |
|
| 83 | + 'path' => 'accounts', |
|
| 84 | + 'httpMethod' => 'GET', |
|
| 85 | + 'parameters' => array( |
|
| 86 | + 'pageToken' => array( |
|
| 87 | + 'location' => 'query', |
|
| 88 | + 'type' => 'string', |
|
| 89 | + ), |
|
| 90 | + 'maxResults' => array( |
|
| 91 | + 'location' => 'query', |
|
| 92 | + 'type' => 'integer', |
|
| 93 | + ), |
|
| 94 | + ), |
|
| 95 | + ), |
|
| 96 | + ) |
|
| 97 | + ) |
|
| 98 | + ); |
|
| 99 | + $this->accounts_adclients = new Google_Service_AdExchangeSeller_AccountsAdclients_Resource( |
|
| 100 | + $this, |
|
| 101 | + $this->serviceName, |
|
| 102 | + 'adclients', |
|
| 103 | + array( |
|
| 104 | + 'methods' => array( |
|
| 105 | + 'list' => array( |
|
| 106 | + 'path' => 'accounts/{accountId}/adclients', |
|
| 107 | + 'httpMethod' => 'GET', |
|
| 108 | + 'parameters' => array( |
|
| 109 | + 'accountId' => array( |
|
| 110 | + 'location' => 'path', |
|
| 111 | + 'type' => 'string', |
|
| 112 | + 'required' => true, |
|
| 113 | + ), |
|
| 114 | + 'pageToken' => array( |
|
| 115 | + 'location' => 'query', |
|
| 116 | + 'type' => 'string', |
|
| 117 | + ), |
|
| 118 | + 'maxResults' => array( |
|
| 119 | + 'location' => 'query', |
|
| 120 | + 'type' => 'integer', |
|
| 121 | + ), |
|
| 122 | + ), |
|
| 123 | + ), |
|
| 124 | + ) |
|
| 125 | + ) |
|
| 126 | + ); |
|
| 127 | + $this->accounts_alerts = new Google_Service_AdExchangeSeller_AccountsAlerts_Resource( |
|
| 128 | + $this, |
|
| 129 | + $this->serviceName, |
|
| 130 | + 'alerts', |
|
| 131 | + array( |
|
| 132 | + 'methods' => array( |
|
| 133 | + 'list' => array( |
|
| 134 | + 'path' => 'accounts/{accountId}/alerts', |
|
| 135 | + 'httpMethod' => 'GET', |
|
| 136 | + 'parameters' => array( |
|
| 137 | + 'accountId' => array( |
|
| 138 | + 'location' => 'path', |
|
| 139 | + 'type' => 'string', |
|
| 140 | + 'required' => true, |
|
| 141 | + ), |
|
| 142 | + 'locale' => array( |
|
| 143 | + 'location' => 'query', |
|
| 144 | + 'type' => 'string', |
|
| 145 | + ), |
|
| 146 | + ), |
|
| 147 | + ), |
|
| 148 | + ) |
|
| 149 | + ) |
|
| 150 | + ); |
|
| 151 | + $this->accounts_customchannels = new Google_Service_AdExchangeSeller_AccountsCustomchannels_Resource( |
|
| 152 | + $this, |
|
| 153 | + $this->serviceName, |
|
| 154 | + 'customchannels', |
|
| 155 | + array( |
|
| 156 | + 'methods' => array( |
|
| 157 | + 'get' => array( |
|
| 158 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}', |
|
| 159 | + 'httpMethod' => 'GET', |
|
| 160 | + 'parameters' => array( |
|
| 161 | + 'accountId' => array( |
|
| 162 | + 'location' => 'path', |
|
| 163 | + 'type' => 'string', |
|
| 164 | + 'required' => true, |
|
| 165 | + ), |
|
| 166 | + 'adClientId' => array( |
|
| 167 | + 'location' => 'path', |
|
| 168 | + 'type' => 'string', |
|
| 169 | + 'required' => true, |
|
| 170 | + ), |
|
| 171 | + 'customChannelId' => array( |
|
| 172 | + 'location' => 'path', |
|
| 173 | + 'type' => 'string', |
|
| 174 | + 'required' => true, |
|
| 175 | + ), |
|
| 176 | + ), |
|
| 177 | + ),'list' => array( |
|
| 178 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', |
|
| 179 | + 'httpMethod' => 'GET', |
|
| 180 | + 'parameters' => array( |
|
| 181 | + 'accountId' => array( |
|
| 182 | + 'location' => 'path', |
|
| 183 | + 'type' => 'string', |
|
| 184 | + 'required' => true, |
|
| 185 | + ), |
|
| 186 | + 'adClientId' => array( |
|
| 187 | + 'location' => 'path', |
|
| 188 | + 'type' => 'string', |
|
| 189 | + 'required' => true, |
|
| 190 | + ), |
|
| 191 | + 'pageToken' => array( |
|
| 192 | + 'location' => 'query', |
|
| 193 | + 'type' => 'string', |
|
| 194 | + ), |
|
| 195 | + 'maxResults' => array( |
|
| 196 | + 'location' => 'query', |
|
| 197 | + 'type' => 'integer', |
|
| 198 | + ), |
|
| 199 | + ), |
|
| 200 | + ), |
|
| 201 | + ) |
|
| 202 | + ) |
|
| 203 | + ); |
|
| 204 | + $this->accounts_metadata_dimensions = new Google_Service_AdExchangeSeller_AccountsMetadataDimensions_Resource( |
|
| 205 | + $this, |
|
| 206 | + $this->serviceName, |
|
| 207 | + 'dimensions', |
|
| 208 | + array( |
|
| 209 | + 'methods' => array( |
|
| 210 | + 'list' => array( |
|
| 211 | + 'path' => 'accounts/{accountId}/metadata/dimensions', |
|
| 212 | + 'httpMethod' => 'GET', |
|
| 213 | + 'parameters' => array( |
|
| 214 | + 'accountId' => array( |
|
| 215 | + 'location' => 'path', |
|
| 216 | + 'type' => 'string', |
|
| 217 | + 'required' => true, |
|
| 218 | + ), |
|
| 219 | + ), |
|
| 220 | + ), |
|
| 221 | + ) |
|
| 222 | + ) |
|
| 223 | + ); |
|
| 224 | + $this->accounts_metadata_metrics = new Google_Service_AdExchangeSeller_AccountsMetadataMetrics_Resource( |
|
| 225 | + $this, |
|
| 226 | + $this->serviceName, |
|
| 227 | + 'metrics', |
|
| 228 | + array( |
|
| 229 | + 'methods' => array( |
|
| 230 | + 'list' => array( |
|
| 231 | + 'path' => 'accounts/{accountId}/metadata/metrics', |
|
| 232 | + 'httpMethod' => 'GET', |
|
| 233 | + 'parameters' => array( |
|
| 234 | + 'accountId' => array( |
|
| 235 | + 'location' => 'path', |
|
| 236 | + 'type' => 'string', |
|
| 237 | + 'required' => true, |
|
| 238 | + ), |
|
| 239 | + ), |
|
| 240 | + ), |
|
| 241 | + ) |
|
| 242 | + ) |
|
| 243 | + ); |
|
| 244 | + $this->accounts_preferreddeals = new Google_Service_AdExchangeSeller_AccountsPreferreddeals_Resource( |
|
| 245 | + $this, |
|
| 246 | + $this->serviceName, |
|
| 247 | + 'preferreddeals', |
|
| 248 | + array( |
|
| 249 | + 'methods' => array( |
|
| 250 | + 'get' => array( |
|
| 251 | + 'path' => 'accounts/{accountId}/preferreddeals/{dealId}', |
|
| 252 | + 'httpMethod' => 'GET', |
|
| 253 | + 'parameters' => array( |
|
| 254 | + 'accountId' => array( |
|
| 255 | + 'location' => 'path', |
|
| 256 | + 'type' => 'string', |
|
| 257 | + 'required' => true, |
|
| 258 | + ), |
|
| 259 | + 'dealId' => array( |
|
| 260 | + 'location' => 'path', |
|
| 261 | + 'type' => 'string', |
|
| 262 | + 'required' => true, |
|
| 263 | + ), |
|
| 264 | + ), |
|
| 265 | + ),'list' => array( |
|
| 266 | + 'path' => 'accounts/{accountId}/preferreddeals', |
|
| 267 | + 'httpMethod' => 'GET', |
|
| 268 | + 'parameters' => array( |
|
| 269 | + 'accountId' => array( |
|
| 270 | + 'location' => 'path', |
|
| 271 | + 'type' => 'string', |
|
| 272 | + 'required' => true, |
|
| 273 | + ), |
|
| 274 | + ), |
|
| 275 | + ), |
|
| 276 | + ) |
|
| 277 | + ) |
|
| 278 | + ); |
|
| 279 | + $this->accounts_reports = new Google_Service_AdExchangeSeller_AccountsReports_Resource( |
|
| 280 | + $this, |
|
| 281 | + $this->serviceName, |
|
| 282 | + 'reports', |
|
| 283 | + array( |
|
| 284 | + 'methods' => array( |
|
| 285 | + 'generate' => array( |
|
| 286 | + 'path' => 'accounts/{accountId}/reports', |
|
| 287 | + 'httpMethod' => 'GET', |
|
| 288 | + 'parameters' => array( |
|
| 289 | + 'accountId' => array( |
|
| 290 | + 'location' => 'path', |
|
| 291 | + 'type' => 'string', |
|
| 292 | + 'required' => true, |
|
| 293 | + ), |
|
| 294 | + 'startDate' => array( |
|
| 295 | + 'location' => 'query', |
|
| 296 | + 'type' => 'string', |
|
| 297 | + 'required' => true, |
|
| 298 | + ), |
|
| 299 | + 'endDate' => array( |
|
| 300 | + 'location' => 'query', |
|
| 301 | + 'type' => 'string', |
|
| 302 | + 'required' => true, |
|
| 303 | + ), |
|
| 304 | + 'sort' => array( |
|
| 305 | + 'location' => 'query', |
|
| 306 | + 'type' => 'string', |
|
| 307 | + 'repeated' => true, |
|
| 308 | + ), |
|
| 309 | + 'locale' => array( |
|
| 310 | + 'location' => 'query', |
|
| 311 | + 'type' => 'string', |
|
| 312 | + ), |
|
| 313 | + 'metric' => array( |
|
| 314 | + 'location' => 'query', |
|
| 315 | + 'type' => 'string', |
|
| 316 | + 'repeated' => true, |
|
| 317 | + ), |
|
| 318 | + 'maxResults' => array( |
|
| 319 | + 'location' => 'query', |
|
| 320 | + 'type' => 'integer', |
|
| 321 | + ), |
|
| 322 | + 'filter' => array( |
|
| 323 | + 'location' => 'query', |
|
| 324 | + 'type' => 'string', |
|
| 325 | + 'repeated' => true, |
|
| 326 | + ), |
|
| 327 | + 'startIndex' => array( |
|
| 328 | + 'location' => 'query', |
|
| 329 | + 'type' => 'integer', |
|
| 330 | + ), |
|
| 331 | + 'dimension' => array( |
|
| 332 | + 'location' => 'query', |
|
| 333 | + 'type' => 'string', |
|
| 334 | + 'repeated' => true, |
|
| 335 | + ), |
|
| 336 | + ), |
|
| 337 | + ), |
|
| 338 | + ) |
|
| 339 | + ) |
|
| 340 | + ); |
|
| 341 | + $this->accounts_reports_saved = new Google_Service_AdExchangeSeller_AccountsReportsSaved_Resource( |
|
| 342 | + $this, |
|
| 343 | + $this->serviceName, |
|
| 344 | + 'saved', |
|
| 345 | + array( |
|
| 346 | + 'methods' => array( |
|
| 347 | + 'generate' => array( |
|
| 348 | + 'path' => 'accounts/{accountId}/reports/{savedReportId}', |
|
| 349 | + 'httpMethod' => 'GET', |
|
| 350 | + 'parameters' => array( |
|
| 351 | + 'accountId' => array( |
|
| 352 | + 'location' => 'path', |
|
| 353 | + 'type' => 'string', |
|
| 354 | + 'required' => true, |
|
| 355 | + ), |
|
| 356 | + 'savedReportId' => array( |
|
| 357 | + 'location' => 'path', |
|
| 358 | + 'type' => 'string', |
|
| 359 | + 'required' => true, |
|
| 360 | + ), |
|
| 361 | + 'locale' => array( |
|
| 362 | + 'location' => 'query', |
|
| 363 | + 'type' => 'string', |
|
| 364 | + ), |
|
| 365 | + 'startIndex' => array( |
|
| 366 | + 'location' => 'query', |
|
| 367 | + 'type' => 'integer', |
|
| 368 | + ), |
|
| 369 | + 'maxResults' => array( |
|
| 370 | + 'location' => 'query', |
|
| 371 | + 'type' => 'integer', |
|
| 372 | + ), |
|
| 373 | + ), |
|
| 374 | + ),'list' => array( |
|
| 375 | + 'path' => 'accounts/{accountId}/reports/saved', |
|
| 376 | + 'httpMethod' => 'GET', |
|
| 377 | + 'parameters' => array( |
|
| 378 | + 'accountId' => array( |
|
| 379 | + 'location' => 'path', |
|
| 380 | + 'type' => 'string', |
|
| 381 | + 'required' => true, |
|
| 382 | + ), |
|
| 383 | + 'pageToken' => array( |
|
| 384 | + 'location' => 'query', |
|
| 385 | + 'type' => 'string', |
|
| 386 | + ), |
|
| 387 | + 'maxResults' => array( |
|
| 388 | + 'location' => 'query', |
|
| 389 | + 'type' => 'integer', |
|
| 390 | + ), |
|
| 391 | + ), |
|
| 392 | + ), |
|
| 393 | + ) |
|
| 394 | + ) |
|
| 395 | + ); |
|
| 396 | + $this->accounts_urlchannels = new Google_Service_AdExchangeSeller_AccountsUrlchannels_Resource( |
|
| 397 | + $this, |
|
| 398 | + $this->serviceName, |
|
| 399 | + 'urlchannels', |
|
| 400 | + array( |
|
| 401 | + 'methods' => array( |
|
| 402 | + 'list' => array( |
|
| 403 | + 'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels', |
|
| 404 | + 'httpMethod' => 'GET', |
|
| 405 | + 'parameters' => array( |
|
| 406 | + 'accountId' => array( |
|
| 407 | + 'location' => 'path', |
|
| 408 | + 'type' => 'string', |
|
| 409 | + 'required' => true, |
|
| 410 | + ), |
|
| 411 | + 'adClientId' => array( |
|
| 412 | + 'location' => 'path', |
|
| 413 | + 'type' => 'string', |
|
| 414 | + 'required' => true, |
|
| 415 | + ), |
|
| 416 | + 'pageToken' => array( |
|
| 417 | + 'location' => 'query', |
|
| 418 | + 'type' => 'string', |
|
| 419 | + ), |
|
| 420 | + 'maxResults' => array( |
|
| 421 | + 'location' => 'query', |
|
| 422 | + 'type' => 'integer', |
|
| 423 | + ), |
|
| 424 | + ), |
|
| 425 | + ), |
|
| 426 | + ) |
|
| 427 | + ) |
|
| 428 | + ); |
|
| 429 | 429 | } |
| 430 | 430 | } |
| 431 | 431 | |
@@ -451,9 +451,9 @@ discard block |
||
| 451 | 451 | */ |
| 452 | 452 | public function get($accountId, $optParams = array()) |
| 453 | 453 | { |
| 454 | - $params = array('accountId' => $accountId); |
|
| 455 | - $params = array_merge($params, $optParams); |
|
| 456 | - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_Account"); |
|
| 454 | + $params = array('accountId' => $accountId); |
|
| 455 | + $params = array_merge($params, $optParams); |
|
| 456 | + return $this->call('get', array($params), "Google_Service_AdExchangeSeller_Account"); |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | /** |
@@ -471,9 +471,9 @@ discard block |
||
| 471 | 471 | */ |
| 472 | 472 | public function listAccounts($optParams = array()) |
| 473 | 473 | { |
| 474 | - $params = array(); |
|
| 475 | - $params = array_merge($params, $optParams); |
|
| 476 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Accounts"); |
|
| 474 | + $params = array(); |
|
| 475 | + $params = array_merge($params, $optParams); |
|
| 476 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Accounts"); |
|
| 477 | 477 | } |
| 478 | 478 | } |
| 479 | 479 | |
@@ -504,9 +504,9 @@ discard block |
||
| 504 | 504 | */ |
| 505 | 505 | public function listAccountsAdclients($accountId, $optParams = array()) |
| 506 | 506 | { |
| 507 | - $params = array('accountId' => $accountId); |
|
| 508 | - $params = array_merge($params, $optParams); |
|
| 509 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_AdClients"); |
|
| 507 | + $params = array('accountId' => $accountId); |
|
| 508 | + $params = array_merge($params, $optParams); |
|
| 509 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_AdClients"); |
|
| 510 | 510 | } |
| 511 | 511 | } |
| 512 | 512 | /** |
@@ -533,9 +533,9 @@ discard block |
||
| 533 | 533 | */ |
| 534 | 534 | public function listAccountsAlerts($accountId, $optParams = array()) |
| 535 | 535 | { |
| 536 | - $params = array('accountId' => $accountId); |
|
| 537 | - $params = array_merge($params, $optParams); |
|
| 538 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Alerts"); |
|
| 536 | + $params = array('accountId' => $accountId); |
|
| 537 | + $params = array_merge($params, $optParams); |
|
| 538 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Alerts"); |
|
| 539 | 539 | } |
| 540 | 540 | } |
| 541 | 541 | /** |
@@ -561,9 +561,9 @@ discard block |
||
| 561 | 561 | */ |
| 562 | 562 | public function get($accountId, $adClientId, $customChannelId, $optParams = array()) |
| 563 | 563 | { |
| 564 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 565 | - $params = array_merge($params, $optParams); |
|
| 566 | - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_CustomChannel"); |
|
| 564 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId); |
|
| 565 | + $params = array_merge($params, $optParams); |
|
| 566 | + return $this->call('get', array($params), "Google_Service_AdExchangeSeller_CustomChannel"); |
|
| 567 | 567 | } |
| 568 | 568 | |
| 569 | 569 | /** |
@@ -583,9 +583,9 @@ discard block |
||
| 583 | 583 | */ |
| 584 | 584 | public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array()) |
| 585 | 585 | { |
| 586 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 587 | - $params = array_merge($params, $optParams); |
|
| 588 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_CustomChannels"); |
|
| 586 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 587 | + $params = array_merge($params, $optParams); |
|
| 588 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_CustomChannels"); |
|
| 589 | 589 | } |
| 590 | 590 | } |
| 591 | 591 | /** |
@@ -621,9 +621,9 @@ discard block |
||
| 621 | 621 | */ |
| 622 | 622 | public function listAccountsMetadataDimensions($accountId, $optParams = array()) |
| 623 | 623 | { |
| 624 | - $params = array('accountId' => $accountId); |
|
| 625 | - $params = array_merge($params, $optParams); |
|
| 626 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); |
|
| 624 | + $params = array('accountId' => $accountId); |
|
| 625 | + $params = array_merge($params, $optParams); |
|
| 626 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); |
|
| 627 | 627 | } |
| 628 | 628 | } |
| 629 | 629 | /** |
@@ -647,9 +647,9 @@ discard block |
||
| 647 | 647 | */ |
| 648 | 648 | public function listAccountsMetadataMetrics($accountId, $optParams = array()) |
| 649 | 649 | { |
| 650 | - $params = array('accountId' => $accountId); |
|
| 651 | - $params = array_merge($params, $optParams); |
|
| 652 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); |
|
| 650 | + $params = array('accountId' => $accountId); |
|
| 651 | + $params = array_merge($params, $optParams); |
|
| 652 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_Metadata"); |
|
| 653 | 653 | } |
| 654 | 654 | } |
| 655 | 655 | /** |
@@ -674,9 +674,9 @@ discard block |
||
| 674 | 674 | */ |
| 675 | 675 | public function get($accountId, $dealId, $optParams = array()) |
| 676 | 676 | { |
| 677 | - $params = array('accountId' => $accountId, 'dealId' => $dealId); |
|
| 678 | - $params = array_merge($params, $optParams); |
|
| 679 | - return $this->call('get', array($params), "Google_Service_AdExchangeSeller_PreferredDeal"); |
|
| 677 | + $params = array('accountId' => $accountId, 'dealId' => $dealId); |
|
| 678 | + $params = array_merge($params, $optParams); |
|
| 679 | + return $this->call('get', array($params), "Google_Service_AdExchangeSeller_PreferredDeal"); |
|
| 680 | 680 | } |
| 681 | 681 | |
| 682 | 682 | /** |
@@ -689,9 +689,9 @@ discard block |
||
| 689 | 689 | */ |
| 690 | 690 | public function listAccountsPreferreddeals($accountId, $optParams = array()) |
| 691 | 691 | { |
| 692 | - $params = array('accountId' => $accountId); |
|
| 693 | - $params = array_merge($params, $optParams); |
|
| 694 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_PreferredDeals"); |
|
| 692 | + $params = array('accountId' => $accountId); |
|
| 693 | + $params = array_merge($params, $optParams); |
|
| 694 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_PreferredDeals"); |
|
| 695 | 695 | } |
| 696 | 696 | } |
| 697 | 697 | /** |
@@ -732,9 +732,9 @@ discard block |
||
| 732 | 732 | */ |
| 733 | 733 | public function generate($accountId, $startDate, $endDate, $optParams = array()) |
| 734 | 734 | { |
| 735 | - $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); |
|
| 736 | - $params = array_merge($params, $optParams); |
|
| 737 | - return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); |
|
| 735 | + $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate); |
|
| 736 | + $params = array_merge($params, $optParams); |
|
| 737 | + return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); |
|
| 738 | 738 | } |
| 739 | 739 | } |
| 740 | 740 | |
@@ -766,9 +766,9 @@ discard block |
||
| 766 | 766 | */ |
| 767 | 767 | public function generate($accountId, $savedReportId, $optParams = array()) |
| 768 | 768 | { |
| 769 | - $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId); |
|
| 770 | - $params = array_merge($params, $optParams); |
|
| 771 | - return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); |
|
| 769 | + $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId); |
|
| 770 | + $params = array_merge($params, $optParams); |
|
| 771 | + return $this->call('generate', array($params), "Google_Service_AdExchangeSeller_Report"); |
|
| 772 | 772 | } |
| 773 | 773 | |
| 774 | 774 | /** |
@@ -787,9 +787,9 @@ discard block |
||
| 787 | 787 | */ |
| 788 | 788 | public function listAccountsReportsSaved($accountId, $optParams = array()) |
| 789 | 789 | { |
| 790 | - $params = array('accountId' => $accountId); |
|
| 791 | - $params = array_merge($params, $optParams); |
|
| 792 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_SavedReports"); |
|
| 790 | + $params = array('accountId' => $accountId); |
|
| 791 | + $params = array_merge($params, $optParams); |
|
| 792 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_SavedReports"); |
|
| 793 | 793 | } |
| 794 | 794 | } |
| 795 | 795 | /** |
@@ -820,9 +820,9 @@ discard block |
||
| 820 | 820 | */ |
| 821 | 821 | public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array()) |
| 822 | 822 | { |
| 823 | - $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 824 | - $params = array_merge($params, $optParams); |
|
| 825 | - return $this->call('list', array($params), "Google_Service_AdExchangeSeller_UrlChannels"); |
|
| 823 | + $params = array('accountId' => $accountId, 'adClientId' => $adClientId); |
|
| 824 | + $params = array_merge($params, $optParams); |
|
| 825 | + return $this->call('list', array($params), "Google_Service_AdExchangeSeller_UrlChannels"); |
|
| 826 | 826 | } |
| 827 | 827 | } |
| 828 | 828 | |
@@ -840,27 +840,27 @@ discard block |
||
| 840 | 840 | |
| 841 | 841 | public function setId($id) |
| 842 | 842 | { |
| 843 | - $this->id = $id; |
|
| 843 | + $this->id = $id; |
|
| 844 | 844 | } |
| 845 | 845 | public function getId() |
| 846 | 846 | { |
| 847 | - return $this->id; |
|
| 847 | + return $this->id; |
|
| 848 | 848 | } |
| 849 | 849 | public function setKind($kind) |
| 850 | 850 | { |
| 851 | - $this->kind = $kind; |
|
| 851 | + $this->kind = $kind; |
|
| 852 | 852 | } |
| 853 | 853 | public function getKind() |
| 854 | 854 | { |
| 855 | - return $this->kind; |
|
| 855 | + return $this->kind; |
|
| 856 | 856 | } |
| 857 | 857 | public function setName($name) |
| 858 | 858 | { |
| 859 | - $this->name = $name; |
|
| 859 | + $this->name = $name; |
|
| 860 | 860 | } |
| 861 | 861 | public function getName() |
| 862 | 862 | { |
| 863 | - return $this->name; |
|
| 863 | + return $this->name; |
|
| 864 | 864 | } |
| 865 | 865 | } |
| 866 | 866 | |
@@ -878,35 +878,35 @@ discard block |
||
| 878 | 878 | |
| 879 | 879 | public function setEtag($etag) |
| 880 | 880 | { |
| 881 | - $this->etag = $etag; |
|
| 881 | + $this->etag = $etag; |
|
| 882 | 882 | } |
| 883 | 883 | public function getEtag() |
| 884 | 884 | { |
| 885 | - return $this->etag; |
|
| 885 | + return $this->etag; |
|
| 886 | 886 | } |
| 887 | 887 | public function setItems($items) |
| 888 | 888 | { |
| 889 | - $this->items = $items; |
|
| 889 | + $this->items = $items; |
|
| 890 | 890 | } |
| 891 | 891 | public function getItems() |
| 892 | 892 | { |
| 893 | - return $this->items; |
|
| 893 | + return $this->items; |
|
| 894 | 894 | } |
| 895 | 895 | public function setKind($kind) |
| 896 | 896 | { |
| 897 | - $this->kind = $kind; |
|
| 897 | + $this->kind = $kind; |
|
| 898 | 898 | } |
| 899 | 899 | public function getKind() |
| 900 | 900 | { |
| 901 | - return $this->kind; |
|
| 901 | + return $this->kind; |
|
| 902 | 902 | } |
| 903 | 903 | public function setNextPageToken($nextPageToken) |
| 904 | 904 | { |
| 905 | - $this->nextPageToken = $nextPageToken; |
|
| 905 | + $this->nextPageToken = $nextPageToken; |
|
| 906 | 906 | } |
| 907 | 907 | public function getNextPageToken() |
| 908 | 908 | { |
| 909 | - return $this->nextPageToken; |
|
| 909 | + return $this->nextPageToken; |
|
| 910 | 910 | } |
| 911 | 911 | } |
| 912 | 912 | |
@@ -923,43 +923,43 @@ discard block |
||
| 923 | 923 | |
| 924 | 924 | public function setArcOptIn($arcOptIn) |
| 925 | 925 | { |
| 926 | - $this->arcOptIn = $arcOptIn; |
|
| 926 | + $this->arcOptIn = $arcOptIn; |
|
| 927 | 927 | } |
| 928 | 928 | public function getArcOptIn() |
| 929 | 929 | { |
| 930 | - return $this->arcOptIn; |
|
| 930 | + return $this->arcOptIn; |
|
| 931 | 931 | } |
| 932 | 932 | public function setId($id) |
| 933 | 933 | { |
| 934 | - $this->id = $id; |
|
| 934 | + $this->id = $id; |
|
| 935 | 935 | } |
| 936 | 936 | public function getId() |
| 937 | 937 | { |
| 938 | - return $this->id; |
|
| 938 | + return $this->id; |
|
| 939 | 939 | } |
| 940 | 940 | public function setKind($kind) |
| 941 | 941 | { |
| 942 | - $this->kind = $kind; |
|
| 942 | + $this->kind = $kind; |
|
| 943 | 943 | } |
| 944 | 944 | public function getKind() |
| 945 | 945 | { |
| 946 | - return $this->kind; |
|
| 946 | + return $this->kind; |
|
| 947 | 947 | } |
| 948 | 948 | public function setProductCode($productCode) |
| 949 | 949 | { |
| 950 | - $this->productCode = $productCode; |
|
| 950 | + $this->productCode = $productCode; |
|
| 951 | 951 | } |
| 952 | 952 | public function getProductCode() |
| 953 | 953 | { |
| 954 | - return $this->productCode; |
|
| 954 | + return $this->productCode; |
|
| 955 | 955 | } |
| 956 | 956 | public function setSupportsReporting($supportsReporting) |
| 957 | 957 | { |
| 958 | - $this->supportsReporting = $supportsReporting; |
|
| 958 | + $this->supportsReporting = $supportsReporting; |
|
| 959 | 959 | } |
| 960 | 960 | public function getSupportsReporting() |
| 961 | 961 | { |
| 962 | - return $this->supportsReporting; |
|
| 962 | + return $this->supportsReporting; |
|
| 963 | 963 | } |
| 964 | 964 | } |
| 965 | 965 | |
@@ -977,35 +977,35 @@ discard block |
||
| 977 | 977 | |
| 978 | 978 | public function setEtag($etag) |
| 979 | 979 | { |
| 980 | - $this->etag = $etag; |
|
| 980 | + $this->etag = $etag; |
|
| 981 | 981 | } |
| 982 | 982 | public function getEtag() |
| 983 | 983 | { |
| 984 | - return $this->etag; |
|
| 984 | + return $this->etag; |
|
| 985 | 985 | } |
| 986 | 986 | public function setItems($items) |
| 987 | 987 | { |
| 988 | - $this->items = $items; |
|
| 988 | + $this->items = $items; |
|
| 989 | 989 | } |
| 990 | 990 | public function getItems() |
| 991 | 991 | { |
| 992 | - return $this->items; |
|
| 992 | + return $this->items; |
|
| 993 | 993 | } |
| 994 | 994 | public function setKind($kind) |
| 995 | 995 | { |
| 996 | - $this->kind = $kind; |
|
| 996 | + $this->kind = $kind; |
|
| 997 | 997 | } |
| 998 | 998 | public function getKind() |
| 999 | 999 | { |
| 1000 | - return $this->kind; |
|
| 1000 | + return $this->kind; |
|
| 1001 | 1001 | } |
| 1002 | 1002 | public function setNextPageToken($nextPageToken) |
| 1003 | 1003 | { |
| 1004 | - $this->nextPageToken = $nextPageToken; |
|
| 1004 | + $this->nextPageToken = $nextPageToken; |
|
| 1005 | 1005 | } |
| 1006 | 1006 | public function getNextPageToken() |
| 1007 | 1007 | { |
| 1008 | - return $this->nextPageToken; |
|
| 1008 | + return $this->nextPageToken; |
|
| 1009 | 1009 | } |
| 1010 | 1010 | } |
| 1011 | 1011 | |
@@ -1022,43 +1022,43 @@ discard block |
||
| 1022 | 1022 | |
| 1023 | 1023 | public function setId($id) |
| 1024 | 1024 | { |
| 1025 | - $this->id = $id; |
|
| 1025 | + $this->id = $id; |
|
| 1026 | 1026 | } |
| 1027 | 1027 | public function getId() |
| 1028 | 1028 | { |
| 1029 | - return $this->id; |
|
| 1029 | + return $this->id; |
|
| 1030 | 1030 | } |
| 1031 | 1031 | public function setKind($kind) |
| 1032 | 1032 | { |
| 1033 | - $this->kind = $kind; |
|
| 1033 | + $this->kind = $kind; |
|
| 1034 | 1034 | } |
| 1035 | 1035 | public function getKind() |
| 1036 | 1036 | { |
| 1037 | - return $this->kind; |
|
| 1037 | + return $this->kind; |
|
| 1038 | 1038 | } |
| 1039 | 1039 | public function setMessage($message) |
| 1040 | 1040 | { |
| 1041 | - $this->message = $message; |
|
| 1041 | + $this->message = $message; |
|
| 1042 | 1042 | } |
| 1043 | 1043 | public function getMessage() |
| 1044 | 1044 | { |
| 1045 | - return $this->message; |
|
| 1045 | + return $this->message; |
|
| 1046 | 1046 | } |
| 1047 | 1047 | public function setSeverity($severity) |
| 1048 | 1048 | { |
| 1049 | - $this->severity = $severity; |
|
| 1049 | + $this->severity = $severity; |
|
| 1050 | 1050 | } |
| 1051 | 1051 | public function getSeverity() |
| 1052 | 1052 | { |
| 1053 | - return $this->severity; |
|
| 1053 | + return $this->severity; |
|
| 1054 | 1054 | } |
| 1055 | 1055 | public function setType($type) |
| 1056 | 1056 | { |
| 1057 | - $this->type = $type; |
|
| 1057 | + $this->type = $type; |
|
| 1058 | 1058 | } |
| 1059 | 1059 | public function getType() |
| 1060 | 1060 | { |
| 1061 | - return $this->type; |
|
| 1061 | + return $this->type; |
|
| 1062 | 1062 | } |
| 1063 | 1063 | } |
| 1064 | 1064 | |
@@ -1074,19 +1074,19 @@ discard block |
||
| 1074 | 1074 | |
| 1075 | 1075 | public function setItems($items) |
| 1076 | 1076 | { |
| 1077 | - $this->items = $items; |
|
| 1077 | + $this->items = $items; |
|
| 1078 | 1078 | } |
| 1079 | 1079 | public function getItems() |
| 1080 | 1080 | { |
| 1081 | - return $this->items; |
|
| 1081 | + return $this->items; |
|
| 1082 | 1082 | } |
| 1083 | 1083 | public function setKind($kind) |
| 1084 | 1084 | { |
| 1085 | - $this->kind = $kind; |
|
| 1085 | + $this->kind = $kind; |
|
| 1086 | 1086 | } |
| 1087 | 1087 | public function getKind() |
| 1088 | 1088 | { |
| 1089 | - return $this->kind; |
|
| 1089 | + return $this->kind; |
|
| 1090 | 1090 | } |
| 1091 | 1091 | } |
| 1092 | 1092 | |
@@ -1104,43 +1104,43 @@ discard block |
||
| 1104 | 1104 | |
| 1105 | 1105 | public function setCode($code) |
| 1106 | 1106 | { |
| 1107 | - $this->code = $code; |
|
| 1107 | + $this->code = $code; |
|
| 1108 | 1108 | } |
| 1109 | 1109 | public function getCode() |
| 1110 | 1110 | { |
| 1111 | - return $this->code; |
|
| 1111 | + return $this->code; |
|
| 1112 | 1112 | } |
| 1113 | 1113 | public function setId($id) |
| 1114 | 1114 | { |
| 1115 | - $this->id = $id; |
|
| 1115 | + $this->id = $id; |
|
| 1116 | 1116 | } |
| 1117 | 1117 | public function getId() |
| 1118 | 1118 | { |
| 1119 | - return $this->id; |
|
| 1119 | + return $this->id; |
|
| 1120 | 1120 | } |
| 1121 | 1121 | public function setKind($kind) |
| 1122 | 1122 | { |
| 1123 | - $this->kind = $kind; |
|
| 1123 | + $this->kind = $kind; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | public function getKind() |
| 1126 | 1126 | { |
| 1127 | - return $this->kind; |
|
| 1127 | + return $this->kind; |
|
| 1128 | 1128 | } |
| 1129 | 1129 | public function setName($name) |
| 1130 | 1130 | { |
| 1131 | - $this->name = $name; |
|
| 1131 | + $this->name = $name; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | public function getName() |
| 1134 | 1134 | { |
| 1135 | - return $this->name; |
|
| 1135 | + return $this->name; |
|
| 1136 | 1136 | } |
| 1137 | 1137 | public function setTargetingInfo(Google_Service_AdExchangeSeller_CustomChannelTargetingInfo $targetingInfo) |
| 1138 | 1138 | { |
| 1139 | - $this->targetingInfo = $targetingInfo; |
|
| 1139 | + $this->targetingInfo = $targetingInfo; |
|
| 1140 | 1140 | } |
| 1141 | 1141 | public function getTargetingInfo() |
| 1142 | 1142 | { |
| 1143 | - return $this->targetingInfo; |
|
| 1143 | + return $this->targetingInfo; |
|
| 1144 | 1144 | } |
| 1145 | 1145 | } |
| 1146 | 1146 | |
@@ -1156,35 +1156,35 @@ discard block |
||
| 1156 | 1156 | |
| 1157 | 1157 | public function setAdsAppearOn($adsAppearOn) |
| 1158 | 1158 | { |
| 1159 | - $this->adsAppearOn = $adsAppearOn; |
|
| 1159 | + $this->adsAppearOn = $adsAppearOn; |
|
| 1160 | 1160 | } |
| 1161 | 1161 | public function getAdsAppearOn() |
| 1162 | 1162 | { |
| 1163 | - return $this->adsAppearOn; |
|
| 1163 | + return $this->adsAppearOn; |
|
| 1164 | 1164 | } |
| 1165 | 1165 | public function setDescription($description) |
| 1166 | 1166 | { |
| 1167 | - $this->description = $description; |
|
| 1167 | + $this->description = $description; |
|
| 1168 | 1168 | } |
| 1169 | 1169 | public function getDescription() |
| 1170 | 1170 | { |
| 1171 | - return $this->description; |
|
| 1171 | + return $this->description; |
|
| 1172 | 1172 | } |
| 1173 | 1173 | public function setLocation($location) |
| 1174 | 1174 | { |
| 1175 | - $this->location = $location; |
|
| 1175 | + $this->location = $location; |
|
| 1176 | 1176 | } |
| 1177 | 1177 | public function getLocation() |
| 1178 | 1178 | { |
| 1179 | - return $this->location; |
|
| 1179 | + return $this->location; |
|
| 1180 | 1180 | } |
| 1181 | 1181 | public function setSiteLanguage($siteLanguage) |
| 1182 | 1182 | { |
| 1183 | - $this->siteLanguage = $siteLanguage; |
|
| 1183 | + $this->siteLanguage = $siteLanguage; |
|
| 1184 | 1184 | } |
| 1185 | 1185 | public function getSiteLanguage() |
| 1186 | 1186 | { |
| 1187 | - return $this->siteLanguage; |
|
| 1187 | + return $this->siteLanguage; |
|
| 1188 | 1188 | } |
| 1189 | 1189 | } |
| 1190 | 1190 | |
@@ -1202,35 +1202,35 @@ discard block |
||
| 1202 | 1202 | |
| 1203 | 1203 | public function setEtag($etag) |
| 1204 | 1204 | { |
| 1205 | - $this->etag = $etag; |
|
| 1205 | + $this->etag = $etag; |
|
| 1206 | 1206 | } |
| 1207 | 1207 | public function getEtag() |
| 1208 | 1208 | { |
| 1209 | - return $this->etag; |
|
| 1209 | + return $this->etag; |
|
| 1210 | 1210 | } |
| 1211 | 1211 | public function setItems($items) |
| 1212 | 1212 | { |
| 1213 | - $this->items = $items; |
|
| 1213 | + $this->items = $items; |
|
| 1214 | 1214 | } |
| 1215 | 1215 | public function getItems() |
| 1216 | 1216 | { |
| 1217 | - return $this->items; |
|
| 1217 | + return $this->items; |
|
| 1218 | 1218 | } |
| 1219 | 1219 | public function setKind($kind) |
| 1220 | 1220 | { |
| 1221 | - $this->kind = $kind; |
|
| 1221 | + $this->kind = $kind; |
|
| 1222 | 1222 | } |
| 1223 | 1223 | public function getKind() |
| 1224 | 1224 | { |
| 1225 | - return $this->kind; |
|
| 1225 | + return $this->kind; |
|
| 1226 | 1226 | } |
| 1227 | 1227 | public function setNextPageToken($nextPageToken) |
| 1228 | 1228 | { |
| 1229 | - $this->nextPageToken = $nextPageToken; |
|
| 1229 | + $this->nextPageToken = $nextPageToken; |
|
| 1230 | 1230 | } |
| 1231 | 1231 | public function getNextPageToken() |
| 1232 | 1232 | { |
| 1233 | - return $this->nextPageToken; |
|
| 1233 | + return $this->nextPageToken; |
|
| 1234 | 1234 | } |
| 1235 | 1235 | } |
| 1236 | 1236 | |
@@ -1246,19 +1246,19 @@ discard block |
||
| 1246 | 1246 | |
| 1247 | 1247 | public function setItems($items) |
| 1248 | 1248 | { |
| 1249 | - $this->items = $items; |
|
| 1249 | + $this->items = $items; |
|
| 1250 | 1250 | } |
| 1251 | 1251 | public function getItems() |
| 1252 | 1252 | { |
| 1253 | - return $this->items; |
|
| 1253 | + return $this->items; |
|
| 1254 | 1254 | } |
| 1255 | 1255 | public function setKind($kind) |
| 1256 | 1256 | { |
| 1257 | - $this->kind = $kind; |
|
| 1257 | + $this->kind = $kind; |
|
| 1258 | 1258 | } |
| 1259 | 1259 | public function getKind() |
| 1260 | 1260 | { |
| 1261 | - return $this->kind; |
|
| 1261 | + return $this->kind; |
|
| 1262 | 1262 | } |
| 1263 | 1263 | } |
| 1264 | 1264 | |
@@ -1278,67 +1278,67 @@ discard block |
||
| 1278 | 1278 | |
| 1279 | 1279 | public function setAdvertiserName($advertiserName) |
| 1280 | 1280 | { |
| 1281 | - $this->advertiserName = $advertiserName; |
|
| 1281 | + $this->advertiserName = $advertiserName; |
|
| 1282 | 1282 | } |
| 1283 | 1283 | public function getAdvertiserName() |
| 1284 | 1284 | { |
| 1285 | - return $this->advertiserName; |
|
| 1285 | + return $this->advertiserName; |
|
| 1286 | 1286 | } |
| 1287 | 1287 | public function setBuyerNetworkName($buyerNetworkName) |
| 1288 | 1288 | { |
| 1289 | - $this->buyerNetworkName = $buyerNetworkName; |
|
| 1289 | + $this->buyerNetworkName = $buyerNetworkName; |
|
| 1290 | 1290 | } |
| 1291 | 1291 | public function getBuyerNetworkName() |
| 1292 | 1292 | { |
| 1293 | - return $this->buyerNetworkName; |
|
| 1293 | + return $this->buyerNetworkName; |
|
| 1294 | 1294 | } |
| 1295 | 1295 | public function setCurrencyCode($currencyCode) |
| 1296 | 1296 | { |
| 1297 | - $this->currencyCode = $currencyCode; |
|
| 1297 | + $this->currencyCode = $currencyCode; |
|
| 1298 | 1298 | } |
| 1299 | 1299 | public function getCurrencyCode() |
| 1300 | 1300 | { |
| 1301 | - return $this->currencyCode; |
|
| 1301 | + return $this->currencyCode; |
|
| 1302 | 1302 | } |
| 1303 | 1303 | public function setEndTime($endTime) |
| 1304 | 1304 | { |
| 1305 | - $this->endTime = $endTime; |
|
| 1305 | + $this->endTime = $endTime; |
|
| 1306 | 1306 | } |
| 1307 | 1307 | public function getEndTime() |
| 1308 | 1308 | { |
| 1309 | - return $this->endTime; |
|
| 1309 | + return $this->endTime; |
|
| 1310 | 1310 | } |
| 1311 | 1311 | public function setFixedCpm($fixedCpm) |
| 1312 | 1312 | { |
| 1313 | - $this->fixedCpm = $fixedCpm; |
|
| 1313 | + $this->fixedCpm = $fixedCpm; |
|
| 1314 | 1314 | } |
| 1315 | 1315 | public function getFixedCpm() |
| 1316 | 1316 | { |
| 1317 | - return $this->fixedCpm; |
|
| 1317 | + return $this->fixedCpm; |
|
| 1318 | 1318 | } |
| 1319 | 1319 | public function setId($id) |
| 1320 | 1320 | { |
| 1321 | - $this->id = $id; |
|
| 1321 | + $this->id = $id; |
|
| 1322 | 1322 | } |
| 1323 | 1323 | public function getId() |
| 1324 | 1324 | { |
| 1325 | - return $this->id; |
|
| 1325 | + return $this->id; |
|
| 1326 | 1326 | } |
| 1327 | 1327 | public function setKind($kind) |
| 1328 | 1328 | { |
| 1329 | - $this->kind = $kind; |
|
| 1329 | + $this->kind = $kind; |
|
| 1330 | 1330 | } |
| 1331 | 1331 | public function getKind() |
| 1332 | 1332 | { |
| 1333 | - return $this->kind; |
|
| 1333 | + return $this->kind; |
|
| 1334 | 1334 | } |
| 1335 | 1335 | public function setStartTime($startTime) |
| 1336 | 1336 | { |
| 1337 | - $this->startTime = $startTime; |
|
| 1337 | + $this->startTime = $startTime; |
|
| 1338 | 1338 | } |
| 1339 | 1339 | public function getStartTime() |
| 1340 | 1340 | { |
| 1341 | - return $this->startTime; |
|
| 1341 | + return $this->startTime; |
|
| 1342 | 1342 | } |
| 1343 | 1343 | } |
| 1344 | 1344 | |
@@ -1354,19 +1354,19 @@ discard block |
||
| 1354 | 1354 | |
| 1355 | 1355 | public function setItems($items) |
| 1356 | 1356 | { |
| 1357 | - $this->items = $items; |
|
| 1357 | + $this->items = $items; |
|
| 1358 | 1358 | } |
| 1359 | 1359 | public function getItems() |
| 1360 | 1360 | { |
| 1361 | - return $this->items; |
|
| 1361 | + return $this->items; |
|
| 1362 | 1362 | } |
| 1363 | 1363 | public function setKind($kind) |
| 1364 | 1364 | { |
| 1365 | - $this->kind = $kind; |
|
| 1365 | + $this->kind = $kind; |
|
| 1366 | 1366 | } |
| 1367 | 1367 | public function getKind() |
| 1368 | 1368 | { |
| 1369 | - return $this->kind; |
|
| 1369 | + return $this->kind; |
|
| 1370 | 1370 | } |
| 1371 | 1371 | } |
| 1372 | 1372 | |
@@ -1387,59 +1387,59 @@ discard block |
||
| 1387 | 1387 | |
| 1388 | 1388 | public function setAverages($averages) |
| 1389 | 1389 | { |
| 1390 | - $this->averages = $averages; |
|
| 1390 | + $this->averages = $averages; |
|
| 1391 | 1391 | } |
| 1392 | 1392 | public function getAverages() |
| 1393 | 1393 | { |
| 1394 | - return $this->averages; |
|
| 1394 | + return $this->averages; |
|
| 1395 | 1395 | } |
| 1396 | 1396 | public function setHeaders($headers) |
| 1397 | 1397 | { |
| 1398 | - $this->headers = $headers; |
|
| 1398 | + $this->headers = $headers; |
|
| 1399 | 1399 | } |
| 1400 | 1400 | public function getHeaders() |
| 1401 | 1401 | { |
| 1402 | - return $this->headers; |
|
| 1402 | + return $this->headers; |
|
| 1403 | 1403 | } |
| 1404 | 1404 | public function setKind($kind) |
| 1405 | 1405 | { |
| 1406 | - $this->kind = $kind; |
|
| 1406 | + $this->kind = $kind; |
|
| 1407 | 1407 | } |
| 1408 | 1408 | public function getKind() |
| 1409 | 1409 | { |
| 1410 | - return $this->kind; |
|
| 1410 | + return $this->kind; |
|
| 1411 | 1411 | } |
| 1412 | 1412 | public function setRows($rows) |
| 1413 | 1413 | { |
| 1414 | - $this->rows = $rows; |
|
| 1414 | + $this->rows = $rows; |
|
| 1415 | 1415 | } |
| 1416 | 1416 | public function getRows() |
| 1417 | 1417 | { |
| 1418 | - return $this->rows; |
|
| 1418 | + return $this->rows; |
|
| 1419 | 1419 | } |
| 1420 | 1420 | public function setTotalMatchedRows($totalMatchedRows) |
| 1421 | 1421 | { |
| 1422 | - $this->totalMatchedRows = $totalMatchedRows; |
|
| 1422 | + $this->totalMatchedRows = $totalMatchedRows; |
|
| 1423 | 1423 | } |
| 1424 | 1424 | public function getTotalMatchedRows() |
| 1425 | 1425 | { |
| 1426 | - return $this->totalMatchedRows; |
|
| 1426 | + return $this->totalMatchedRows; |
|
| 1427 | 1427 | } |
| 1428 | 1428 | public function setTotals($totals) |
| 1429 | 1429 | { |
| 1430 | - $this->totals = $totals; |
|
| 1430 | + $this->totals = $totals; |
|
| 1431 | 1431 | } |
| 1432 | 1432 | public function getTotals() |
| 1433 | 1433 | { |
| 1434 | - return $this->totals; |
|
| 1434 | + return $this->totals; |
|
| 1435 | 1435 | } |
| 1436 | 1436 | public function setWarnings($warnings) |
| 1437 | 1437 | { |
| 1438 | - $this->warnings = $warnings; |
|
| 1438 | + $this->warnings = $warnings; |
|
| 1439 | 1439 | } |
| 1440 | 1440 | public function getWarnings() |
| 1441 | 1441 | { |
| 1442 | - return $this->warnings; |
|
| 1442 | + return $this->warnings; |
|
| 1443 | 1443 | } |
| 1444 | 1444 | } |
| 1445 | 1445 | |
@@ -1454,27 +1454,27 @@ discard block |
||
| 1454 | 1454 | |
| 1455 | 1455 | public function setCurrency($currency) |
| 1456 | 1456 | { |
| 1457 | - $this->currency = $currency; |
|
| 1457 | + $this->currency = $currency; |
|
| 1458 | 1458 | } |
| 1459 | 1459 | public function getCurrency() |
| 1460 | 1460 | { |
| 1461 | - return $this->currency; |
|
| 1461 | + return $this->currency; |
|
| 1462 | 1462 | } |
| 1463 | 1463 | public function setName($name) |
| 1464 | 1464 | { |
| 1465 | - $this->name = $name; |
|
| 1465 | + $this->name = $name; |
|
| 1466 | 1466 | } |
| 1467 | 1467 | public function getName() |
| 1468 | 1468 | { |
| 1469 | - return $this->name; |
|
| 1469 | + return $this->name; |
|
| 1470 | 1470 | } |
| 1471 | 1471 | public function setType($type) |
| 1472 | 1472 | { |
| 1473 | - $this->type = $type; |
|
| 1473 | + $this->type = $type; |
|
| 1474 | 1474 | } |
| 1475 | 1475 | public function getType() |
| 1476 | 1476 | { |
| 1477 | - return $this->type; |
|
| 1477 | + return $this->type; |
|
| 1478 | 1478 | } |
| 1479 | 1479 | } |
| 1480 | 1480 | |
@@ -1494,59 +1494,59 @@ discard block |
||
| 1494 | 1494 | |
| 1495 | 1495 | public function setCompatibleDimensions($compatibleDimensions) |
| 1496 | 1496 | { |
| 1497 | - $this->compatibleDimensions = $compatibleDimensions; |
|
| 1497 | + $this->compatibleDimensions = $compatibleDimensions; |
|
| 1498 | 1498 | } |
| 1499 | 1499 | public function getCompatibleDimensions() |
| 1500 | 1500 | { |
| 1501 | - return $this->compatibleDimensions; |
|
| 1501 | + return $this->compatibleDimensions; |
|
| 1502 | 1502 | } |
| 1503 | 1503 | public function setCompatibleMetrics($compatibleMetrics) |
| 1504 | 1504 | { |
| 1505 | - $this->compatibleMetrics = $compatibleMetrics; |
|
| 1505 | + $this->compatibleMetrics = $compatibleMetrics; |
|
| 1506 | 1506 | } |
| 1507 | 1507 | public function getCompatibleMetrics() |
| 1508 | 1508 | { |
| 1509 | - return $this->compatibleMetrics; |
|
| 1509 | + return $this->compatibleMetrics; |
|
| 1510 | 1510 | } |
| 1511 | 1511 | public function setId($id) |
| 1512 | 1512 | { |
| 1513 | - $this->id = $id; |
|
| 1513 | + $this->id = $id; |
|
| 1514 | 1514 | } |
| 1515 | 1515 | public function getId() |
| 1516 | 1516 | { |
| 1517 | - return $this->id; |
|
| 1517 | + return $this->id; |
|
| 1518 | 1518 | } |
| 1519 | 1519 | public function setKind($kind) |
| 1520 | 1520 | { |
| 1521 | - $this->kind = $kind; |
|
| 1521 | + $this->kind = $kind; |
|
| 1522 | 1522 | } |
| 1523 | 1523 | public function getKind() |
| 1524 | 1524 | { |
| 1525 | - return $this->kind; |
|
| 1525 | + return $this->kind; |
|
| 1526 | 1526 | } |
| 1527 | 1527 | public function setRequiredDimensions($requiredDimensions) |
| 1528 | 1528 | { |
| 1529 | - $this->requiredDimensions = $requiredDimensions; |
|
| 1529 | + $this->requiredDimensions = $requiredDimensions; |
|
| 1530 | 1530 | } |
| 1531 | 1531 | public function getRequiredDimensions() |
| 1532 | 1532 | { |
| 1533 | - return $this->requiredDimensions; |
|
| 1533 | + return $this->requiredDimensions; |
|
| 1534 | 1534 | } |
| 1535 | 1535 | public function setRequiredMetrics($requiredMetrics) |
| 1536 | 1536 | { |
| 1537 | - $this->requiredMetrics = $requiredMetrics; |
|
| 1537 | + $this->requiredMetrics = $requiredMetrics; |
|
| 1538 | 1538 | } |
| 1539 | 1539 | public function getRequiredMetrics() |
| 1540 | 1540 | { |
| 1541 | - return $this->requiredMetrics; |
|
| 1541 | + return $this->requiredMetrics; |
|
| 1542 | 1542 | } |
| 1543 | 1543 | public function setSupportedProducts($supportedProducts) |
| 1544 | 1544 | { |
| 1545 | - $this->supportedProducts = $supportedProducts; |
|
| 1545 | + $this->supportedProducts = $supportedProducts; |
|
| 1546 | 1546 | } |
| 1547 | 1547 | public function getSupportedProducts() |
| 1548 | 1548 | { |
| 1549 | - return $this->supportedProducts; |
|
| 1549 | + return $this->supportedProducts; |
|
| 1550 | 1550 | } |
| 1551 | 1551 | } |
| 1552 | 1552 | |
@@ -1561,27 +1561,27 @@ discard block |
||
| 1561 | 1561 | |
| 1562 | 1562 | public function setId($id) |
| 1563 | 1563 | { |
| 1564 | - $this->id = $id; |
|
| 1564 | + $this->id = $id; |
|
| 1565 | 1565 | } |
| 1566 | 1566 | public function getId() |
| 1567 | 1567 | { |
| 1568 | - return $this->id; |
|
| 1568 | + return $this->id; |
|
| 1569 | 1569 | } |
| 1570 | 1570 | public function setKind($kind) |
| 1571 | 1571 | { |
| 1572 | - $this->kind = $kind; |
|
| 1572 | + $this->kind = $kind; |
|
| 1573 | 1573 | } |
| 1574 | 1574 | public function getKind() |
| 1575 | 1575 | { |
| 1576 | - return $this->kind; |
|
| 1576 | + return $this->kind; |
|
| 1577 | 1577 | } |
| 1578 | 1578 | public function setName($name) |
| 1579 | 1579 | { |
| 1580 | - $this->name = $name; |
|
| 1580 | + $this->name = $name; |
|
| 1581 | 1581 | } |
| 1582 | 1582 | public function getName() |
| 1583 | 1583 | { |
| 1584 | - return $this->name; |
|
| 1584 | + return $this->name; |
|
| 1585 | 1585 | } |
| 1586 | 1586 | } |
| 1587 | 1587 | |
@@ -1599,35 +1599,35 @@ discard block |
||
| 1599 | 1599 | |
| 1600 | 1600 | public function setEtag($etag) |
| 1601 | 1601 | { |
| 1602 | - $this->etag = $etag; |
|
| 1602 | + $this->etag = $etag; |
|
| 1603 | 1603 | } |
| 1604 | 1604 | public function getEtag() |
| 1605 | 1605 | { |
| 1606 | - return $this->etag; |
|
| 1606 | + return $this->etag; |
|
| 1607 | 1607 | } |
| 1608 | 1608 | public function setItems($items) |
| 1609 | 1609 | { |
| 1610 | - $this->items = $items; |
|
| 1610 | + $this->items = $items; |
|
| 1611 | 1611 | } |
| 1612 | 1612 | public function getItems() |
| 1613 | 1613 | { |
| 1614 | - return $this->items; |
|
| 1614 | + return $this->items; |
|
| 1615 | 1615 | } |
| 1616 | 1616 | public function setKind($kind) |
| 1617 | 1617 | { |
| 1618 | - $this->kind = $kind; |
|
| 1618 | + $this->kind = $kind; |
|
| 1619 | 1619 | } |
| 1620 | 1620 | public function getKind() |
| 1621 | 1621 | { |
| 1622 | - return $this->kind; |
|
| 1622 | + return $this->kind; |
|
| 1623 | 1623 | } |
| 1624 | 1624 | public function setNextPageToken($nextPageToken) |
| 1625 | 1625 | { |
| 1626 | - $this->nextPageToken = $nextPageToken; |
|
| 1626 | + $this->nextPageToken = $nextPageToken; |
|
| 1627 | 1627 | } |
| 1628 | 1628 | public function getNextPageToken() |
| 1629 | 1629 | { |
| 1630 | - return $this->nextPageToken; |
|
| 1630 | + return $this->nextPageToken; |
|
| 1631 | 1631 | } |
| 1632 | 1632 | } |
| 1633 | 1633 | |
@@ -1642,27 +1642,27 @@ discard block |
||
| 1642 | 1642 | |
| 1643 | 1643 | public function setId($id) |
| 1644 | 1644 | { |
| 1645 | - $this->id = $id; |
|
| 1645 | + $this->id = $id; |
|
| 1646 | 1646 | } |
| 1647 | 1647 | public function getId() |
| 1648 | 1648 | { |
| 1649 | - return $this->id; |
|
| 1649 | + return $this->id; |
|
| 1650 | 1650 | } |
| 1651 | 1651 | public function setKind($kind) |
| 1652 | 1652 | { |
| 1653 | - $this->kind = $kind; |
|
| 1653 | + $this->kind = $kind; |
|
| 1654 | 1654 | } |
| 1655 | 1655 | public function getKind() |
| 1656 | 1656 | { |
| 1657 | - return $this->kind; |
|
| 1657 | + return $this->kind; |
|
| 1658 | 1658 | } |
| 1659 | 1659 | public function setUrlPattern($urlPattern) |
| 1660 | 1660 | { |
| 1661 | - $this->urlPattern = $urlPattern; |
|
| 1661 | + $this->urlPattern = $urlPattern; |
|
| 1662 | 1662 | } |
| 1663 | 1663 | public function getUrlPattern() |
| 1664 | 1664 | { |
| 1665 | - return $this->urlPattern; |
|
| 1665 | + return $this->urlPattern; |
|
| 1666 | 1666 | } |
| 1667 | 1667 | } |
| 1668 | 1668 | |
@@ -1680,34 +1680,34 @@ discard block |
||
| 1680 | 1680 | |
| 1681 | 1681 | public function setEtag($etag) |
| 1682 | 1682 | { |
| 1683 | - $this->etag = $etag; |
|
| 1683 | + $this->etag = $etag; |
|
| 1684 | 1684 | } |
| 1685 | 1685 | public function getEtag() |
| 1686 | 1686 | { |
| 1687 | - return $this->etag; |
|
| 1687 | + return $this->etag; |
|
| 1688 | 1688 | } |
| 1689 | 1689 | public function setItems($items) |
| 1690 | 1690 | { |
| 1691 | - $this->items = $items; |
|
| 1691 | + $this->items = $items; |
|
| 1692 | 1692 | } |
| 1693 | 1693 | public function getItems() |
| 1694 | 1694 | { |
| 1695 | - return $this->items; |
|
| 1695 | + return $this->items; |
|
| 1696 | 1696 | } |
| 1697 | 1697 | public function setKind($kind) |
| 1698 | 1698 | { |
| 1699 | - $this->kind = $kind; |
|
| 1699 | + $this->kind = $kind; |
|
| 1700 | 1700 | } |
| 1701 | 1701 | public function getKind() |
| 1702 | 1702 | { |
| 1703 | - return $this->kind; |
|
| 1703 | + return $this->kind; |
|
| 1704 | 1704 | } |
| 1705 | 1705 | public function setNextPageToken($nextPageToken) |
| 1706 | 1706 | { |
| 1707 | - $this->nextPageToken = $nextPageToken; |
|
| 1707 | + $this->nextPageToken = $nextPageToken; |
|
| 1708 | 1708 | } |
| 1709 | 1709 | public function getNextPageToken() |
| 1710 | 1710 | { |
| 1711 | - return $this->nextPageToken; |
|
| 1711 | + return $this->nextPageToken; |
|
| 1712 | 1712 | } |
| 1713 | 1713 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | 'required' => true, |
| 80 | 80 | ), |
| 81 | 81 | ), |
| 82 | - ),'list' => array( |
|
| 82 | + ), 'list' => array( |
|
| 83 | 83 | 'path' => 'accounts', |
| 84 | 84 | 'httpMethod' => 'GET', |
| 85 | 85 | 'parameters' => array( |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | 'required' => true, |
| 175 | 175 | ), |
| 176 | 176 | ), |
| 177 | - ),'list' => array( |
|
| 177 | + ), 'list' => array( |
|
| 178 | 178 | 'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels', |
| 179 | 179 | 'httpMethod' => 'GET', |
| 180 | 180 | 'parameters' => array( |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | 'required' => true, |
| 263 | 263 | ), |
| 264 | 264 | ), |
| 265 | - ),'list' => array( |
|
| 265 | + ), 'list' => array( |
|
| 266 | 266 | 'path' => 'accounts/{accountId}/preferreddeals', |
| 267 | 267 | 'httpMethod' => 'GET', |
| 268 | 268 | 'parameters' => array( |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | 'type' => 'integer', |
| 372 | 372 | ), |
| 373 | 373 | ), |
| 374 | - ),'list' => array( |
|
| 374 | + ), 'list' => array( |
|
| 375 | 375 | 'path' => 'accounts/{accountId}/reports/saved', |
| 376 | 376 | 'httpMethod' => 'GET', |
| 377 | 377 | 'parameters' => array( |
@@ -32,19 +32,19 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** View the activity history of your Google Apps. */ |
| 34 | 34 | const ACTIVITY = |
| 35 | - "https://www.googleapis.com/auth/activity"; |
|
| 35 | + "https://www.googleapis.com/auth/activity"; |
|
| 36 | 36 | /** View and manage the files in your Google Drive. */ |
| 37 | 37 | const DRIVE = |
| 38 | - "https://www.googleapis.com/auth/drive"; |
|
| 38 | + "https://www.googleapis.com/auth/drive"; |
|
| 39 | 39 | /** View and manage metadata of files in your Google Drive. */ |
| 40 | 40 | const DRIVE_METADATA = |
| 41 | - "https://www.googleapis.com/auth/drive.metadata"; |
|
| 41 | + "https://www.googleapis.com/auth/drive.metadata"; |
|
| 42 | 42 | /** View metadata for files in your Google Drive. */ |
| 43 | 43 | const DRIVE_METADATA_READONLY = |
| 44 | - "https://www.googleapis.com/auth/drive.metadata.readonly"; |
|
| 44 | + "https://www.googleapis.com/auth/drive.metadata.readonly"; |
|
| 45 | 45 | /** View the files in your Google Drive. */ |
| 46 | 46 | const DRIVE_READONLY = |
| 47 | - "https://www.googleapis.com/auth/drive.readonly"; |
|
| 47 | + "https://www.googleapis.com/auth/drive.readonly"; |
|
| 48 | 48 | |
| 49 | 49 | public $activities; |
| 50 | 50 | |
@@ -56,55 +56,55 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public function __construct(Google_Client $client) |
| 58 | 58 | { |
| 59 | - parent::__construct($client); |
|
| 60 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 61 | - $this->servicePath = 'appsactivity/v1/'; |
|
| 62 | - $this->version = 'v1'; |
|
| 63 | - $this->serviceName = 'appsactivity'; |
|
| 64 | - |
|
| 65 | - $this->activities = new Google_Service_Appsactivity_Activities_Resource( |
|
| 66 | - $this, |
|
| 67 | - $this->serviceName, |
|
| 68 | - 'activities', |
|
| 69 | - array( |
|
| 70 | - 'methods' => array( |
|
| 71 | - 'list' => array( |
|
| 72 | - 'path' => 'activities', |
|
| 73 | - 'httpMethod' => 'GET', |
|
| 74 | - 'parameters' => array( |
|
| 75 | - 'drive.ancestorId' => array( |
|
| 76 | - 'location' => 'query', |
|
| 77 | - 'type' => 'string', |
|
| 78 | - ), |
|
| 79 | - 'pageSize' => array( |
|
| 80 | - 'location' => 'query', |
|
| 81 | - 'type' => 'integer', |
|
| 82 | - ), |
|
| 83 | - 'pageToken' => array( |
|
| 84 | - 'location' => 'query', |
|
| 85 | - 'type' => 'string', |
|
| 86 | - ), |
|
| 87 | - 'userId' => array( |
|
| 88 | - 'location' => 'query', |
|
| 89 | - 'type' => 'string', |
|
| 90 | - ), |
|
| 91 | - 'groupingStrategy' => array( |
|
| 92 | - 'location' => 'query', |
|
| 93 | - 'type' => 'string', |
|
| 94 | - ), |
|
| 95 | - 'drive.fileId' => array( |
|
| 96 | - 'location' => 'query', |
|
| 97 | - 'type' => 'string', |
|
| 98 | - ), |
|
| 99 | - 'source' => array( |
|
| 100 | - 'location' => 'query', |
|
| 101 | - 'type' => 'string', |
|
| 102 | - ), |
|
| 103 | - ), |
|
| 104 | - ), |
|
| 105 | - ) |
|
| 106 | - ) |
|
| 107 | - ); |
|
| 59 | + parent::__construct($client); |
|
| 60 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 61 | + $this->servicePath = 'appsactivity/v1/'; |
|
| 62 | + $this->version = 'v1'; |
|
| 63 | + $this->serviceName = 'appsactivity'; |
|
| 64 | + |
|
| 65 | + $this->activities = new Google_Service_Appsactivity_Activities_Resource( |
|
| 66 | + $this, |
|
| 67 | + $this->serviceName, |
|
| 68 | + 'activities', |
|
| 69 | + array( |
|
| 70 | + 'methods' => array( |
|
| 71 | + 'list' => array( |
|
| 72 | + 'path' => 'activities', |
|
| 73 | + 'httpMethod' => 'GET', |
|
| 74 | + 'parameters' => array( |
|
| 75 | + 'drive.ancestorId' => array( |
|
| 76 | + 'location' => 'query', |
|
| 77 | + 'type' => 'string', |
|
| 78 | + ), |
|
| 79 | + 'pageSize' => array( |
|
| 80 | + 'location' => 'query', |
|
| 81 | + 'type' => 'integer', |
|
| 82 | + ), |
|
| 83 | + 'pageToken' => array( |
|
| 84 | + 'location' => 'query', |
|
| 85 | + 'type' => 'string', |
|
| 86 | + ), |
|
| 87 | + 'userId' => array( |
|
| 88 | + 'location' => 'query', |
|
| 89 | + 'type' => 'string', |
|
| 90 | + ), |
|
| 91 | + 'groupingStrategy' => array( |
|
| 92 | + 'location' => 'query', |
|
| 93 | + 'type' => 'string', |
|
| 94 | + ), |
|
| 95 | + 'drive.fileId' => array( |
|
| 96 | + 'location' => 'query', |
|
| 97 | + 'type' => 'string', |
|
| 98 | + ), |
|
| 99 | + 'source' => array( |
|
| 100 | + 'location' => 'query', |
|
| 101 | + 'type' => 'string', |
|
| 102 | + ), |
|
| 103 | + ), |
|
| 104 | + ), |
|
| 105 | + ) |
|
| 106 | + ) |
|
| 107 | + ); |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | */ |
| 148 | 148 | public function listActivities($optParams = array()) |
| 149 | 149 | { |
| 150 | - $params = array(); |
|
| 151 | - $params = array_merge($params, $optParams); |
|
| 152 | - return $this->call('list', array($params), "Google_Service_Appsactivity_ListActivitiesResponse"); |
|
| 150 | + $params = array(); |
|
| 151 | + $params = array_merge($params, $optParams); |
|
| 152 | + return $this->call('list', array($params), "Google_Service_Appsactivity_ListActivitiesResponse"); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | |
@@ -169,19 +169,19 @@ discard block |
||
| 169 | 169 | |
| 170 | 170 | public function setCombinedEvent(Google_Service_Appsactivity_Event $combinedEvent) |
| 171 | 171 | { |
| 172 | - $this->combinedEvent = $combinedEvent; |
|
| 172 | + $this->combinedEvent = $combinedEvent; |
|
| 173 | 173 | } |
| 174 | 174 | public function getCombinedEvent() |
| 175 | 175 | { |
| 176 | - return $this->combinedEvent; |
|
| 176 | + return $this->combinedEvent; |
|
| 177 | 177 | } |
| 178 | 178 | public function setSingleEvents($singleEvents) |
| 179 | 179 | { |
| 180 | - $this->singleEvents = $singleEvents; |
|
| 180 | + $this->singleEvents = $singleEvents; |
|
| 181 | 181 | } |
| 182 | 182 | public function getSingleEvents() |
| 183 | 183 | { |
| 184 | - return $this->singleEvents; |
|
| 184 | + return $this->singleEvents; |
|
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | |
@@ -208,75 +208,75 @@ discard block |
||
| 208 | 208 | |
| 209 | 209 | public function setAdditionalEventTypes($additionalEventTypes) |
| 210 | 210 | { |
| 211 | - $this->additionalEventTypes = $additionalEventTypes; |
|
| 211 | + $this->additionalEventTypes = $additionalEventTypes; |
|
| 212 | 212 | } |
| 213 | 213 | public function getAdditionalEventTypes() |
| 214 | 214 | { |
| 215 | - return $this->additionalEventTypes; |
|
| 215 | + return $this->additionalEventTypes; |
|
| 216 | 216 | } |
| 217 | 217 | public function setEventTimeMillis($eventTimeMillis) |
| 218 | 218 | { |
| 219 | - $this->eventTimeMillis = $eventTimeMillis; |
|
| 219 | + $this->eventTimeMillis = $eventTimeMillis; |
|
| 220 | 220 | } |
| 221 | 221 | public function getEventTimeMillis() |
| 222 | 222 | { |
| 223 | - return $this->eventTimeMillis; |
|
| 223 | + return $this->eventTimeMillis; |
|
| 224 | 224 | } |
| 225 | 225 | public function setFromUserDeletion($fromUserDeletion) |
| 226 | 226 | { |
| 227 | - $this->fromUserDeletion = $fromUserDeletion; |
|
| 227 | + $this->fromUserDeletion = $fromUserDeletion; |
|
| 228 | 228 | } |
| 229 | 229 | public function getFromUserDeletion() |
| 230 | 230 | { |
| 231 | - return $this->fromUserDeletion; |
|
| 231 | + return $this->fromUserDeletion; |
|
| 232 | 232 | } |
| 233 | 233 | public function setMove(Google_Service_Appsactivity_Move $move) |
| 234 | 234 | { |
| 235 | - $this->move = $move; |
|
| 235 | + $this->move = $move; |
|
| 236 | 236 | } |
| 237 | 237 | public function getMove() |
| 238 | 238 | { |
| 239 | - return $this->move; |
|
| 239 | + return $this->move; |
|
| 240 | 240 | } |
| 241 | 241 | public function setPermissionChanges($permissionChanges) |
| 242 | 242 | { |
| 243 | - $this->permissionChanges = $permissionChanges; |
|
| 243 | + $this->permissionChanges = $permissionChanges; |
|
| 244 | 244 | } |
| 245 | 245 | public function getPermissionChanges() |
| 246 | 246 | { |
| 247 | - return $this->permissionChanges; |
|
| 247 | + return $this->permissionChanges; |
|
| 248 | 248 | } |
| 249 | 249 | public function setPrimaryEventType($primaryEventType) |
| 250 | 250 | { |
| 251 | - $this->primaryEventType = $primaryEventType; |
|
| 251 | + $this->primaryEventType = $primaryEventType; |
|
| 252 | 252 | } |
| 253 | 253 | public function getPrimaryEventType() |
| 254 | 254 | { |
| 255 | - return $this->primaryEventType; |
|
| 255 | + return $this->primaryEventType; |
|
| 256 | 256 | } |
| 257 | 257 | public function setRename(Google_Service_Appsactivity_Rename $rename) |
| 258 | 258 | { |
| 259 | - $this->rename = $rename; |
|
| 259 | + $this->rename = $rename; |
|
| 260 | 260 | } |
| 261 | 261 | public function getRename() |
| 262 | 262 | { |
| 263 | - return $this->rename; |
|
| 263 | + return $this->rename; |
|
| 264 | 264 | } |
| 265 | 265 | public function setTarget(Google_Service_Appsactivity_Target $target) |
| 266 | 266 | { |
| 267 | - $this->target = $target; |
|
| 267 | + $this->target = $target; |
|
| 268 | 268 | } |
| 269 | 269 | public function getTarget() |
| 270 | 270 | { |
| 271 | - return $this->target; |
|
| 271 | + return $this->target; |
|
| 272 | 272 | } |
| 273 | 273 | public function setUser(Google_Service_Appsactivity_User $user) |
| 274 | 274 | { |
| 275 | - $this->user = $user; |
|
| 275 | + $this->user = $user; |
|
| 276 | 276 | } |
| 277 | 277 | public function getUser() |
| 278 | 278 | { |
| 279 | - return $this->user; |
|
| 279 | + return $this->user; |
|
| 280 | 280 | } |
| 281 | 281 | } |
| 282 | 282 | |
@@ -292,19 +292,19 @@ discard block |
||
| 292 | 292 | |
| 293 | 293 | public function setActivities($activities) |
| 294 | 294 | { |
| 295 | - $this->activities = $activities; |
|
| 295 | + $this->activities = $activities; |
|
| 296 | 296 | } |
| 297 | 297 | public function getActivities() |
| 298 | 298 | { |
| 299 | - return $this->activities; |
|
| 299 | + return $this->activities; |
|
| 300 | 300 | } |
| 301 | 301 | public function setNextPageToken($nextPageToken) |
| 302 | 302 | { |
| 303 | - $this->nextPageToken = $nextPageToken; |
|
| 303 | + $this->nextPageToken = $nextPageToken; |
|
| 304 | 304 | } |
| 305 | 305 | public function getNextPageToken() |
| 306 | 306 | { |
| 307 | - return $this->nextPageToken; |
|
| 307 | + return $this->nextPageToken; |
|
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | 310 | |
@@ -321,19 +321,19 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | public function setAddedParents($addedParents) |
| 323 | 323 | { |
| 324 | - $this->addedParents = $addedParents; |
|
| 324 | + $this->addedParents = $addedParents; |
|
| 325 | 325 | } |
| 326 | 326 | public function getAddedParents() |
| 327 | 327 | { |
| 328 | - return $this->addedParents; |
|
| 328 | + return $this->addedParents; |
|
| 329 | 329 | } |
| 330 | 330 | public function setRemovedParents($removedParents) |
| 331 | 331 | { |
| 332 | - $this->removedParents = $removedParents; |
|
| 332 | + $this->removedParents = $removedParents; |
|
| 333 | 333 | } |
| 334 | 334 | public function getRemovedParents() |
| 335 | 335 | { |
| 336 | - return $this->removedParents; |
|
| 336 | + return $this->removedParents; |
|
| 337 | 337 | } |
| 338 | 338 | } |
| 339 | 339 | |
@@ -348,27 +348,27 @@ discard block |
||
| 348 | 348 | |
| 349 | 349 | public function setId($id) |
| 350 | 350 | { |
| 351 | - $this->id = $id; |
|
| 351 | + $this->id = $id; |
|
| 352 | 352 | } |
| 353 | 353 | public function getId() |
| 354 | 354 | { |
| 355 | - return $this->id; |
|
| 355 | + return $this->id; |
|
| 356 | 356 | } |
| 357 | 357 | public function setIsRoot($isRoot) |
| 358 | 358 | { |
| 359 | - $this->isRoot = $isRoot; |
|
| 359 | + $this->isRoot = $isRoot; |
|
| 360 | 360 | } |
| 361 | 361 | public function getIsRoot() |
| 362 | 362 | { |
| 363 | - return $this->isRoot; |
|
| 363 | + return $this->isRoot; |
|
| 364 | 364 | } |
| 365 | 365 | public function setTitle($title) |
| 366 | 366 | { |
| 367 | - $this->title = $title; |
|
| 367 | + $this->title = $title; |
|
| 368 | 368 | } |
| 369 | 369 | public function getTitle() |
| 370 | 370 | { |
| 371 | - return $this->title; |
|
| 371 | + return $this->title; |
|
| 372 | 372 | } |
| 373 | 373 | } |
| 374 | 374 | |
@@ -387,51 +387,51 @@ discard block |
||
| 387 | 387 | |
| 388 | 388 | public function setName($name) |
| 389 | 389 | { |
| 390 | - $this->name = $name; |
|
| 390 | + $this->name = $name; |
|
| 391 | 391 | } |
| 392 | 392 | public function getName() |
| 393 | 393 | { |
| 394 | - return $this->name; |
|
| 394 | + return $this->name; |
|
| 395 | 395 | } |
| 396 | 396 | public function setPermissionId($permissionId) |
| 397 | 397 | { |
| 398 | - $this->permissionId = $permissionId; |
|
| 398 | + $this->permissionId = $permissionId; |
|
| 399 | 399 | } |
| 400 | 400 | public function getPermissionId() |
| 401 | 401 | { |
| 402 | - return $this->permissionId; |
|
| 402 | + return $this->permissionId; |
|
| 403 | 403 | } |
| 404 | 404 | public function setRole($role) |
| 405 | 405 | { |
| 406 | - $this->role = $role; |
|
| 406 | + $this->role = $role; |
|
| 407 | 407 | } |
| 408 | 408 | public function getRole() |
| 409 | 409 | { |
| 410 | - return $this->role; |
|
| 410 | + return $this->role; |
|
| 411 | 411 | } |
| 412 | 412 | public function setType($type) |
| 413 | 413 | { |
| 414 | - $this->type = $type; |
|
| 414 | + $this->type = $type; |
|
| 415 | 415 | } |
| 416 | 416 | public function getType() |
| 417 | 417 | { |
| 418 | - return $this->type; |
|
| 418 | + return $this->type; |
|
| 419 | 419 | } |
| 420 | 420 | public function setUser(Google_Service_Appsactivity_User $user) |
| 421 | 421 | { |
| 422 | - $this->user = $user; |
|
| 422 | + $this->user = $user; |
|
| 423 | 423 | } |
| 424 | 424 | public function getUser() |
| 425 | 425 | { |
| 426 | - return $this->user; |
|
| 426 | + return $this->user; |
|
| 427 | 427 | } |
| 428 | 428 | public function setWithLink($withLink) |
| 429 | 429 | { |
| 430 | - $this->withLink = $withLink; |
|
| 430 | + $this->withLink = $withLink; |
|
| 431 | 431 | } |
| 432 | 432 | public function getWithLink() |
| 433 | 433 | { |
| 434 | - return $this->withLink; |
|
| 434 | + return $this->withLink; |
|
| 435 | 435 | } |
| 436 | 436 | } |
| 437 | 437 | |
@@ -448,19 +448,19 @@ discard block |
||
| 448 | 448 | |
| 449 | 449 | public function setAddedPermissions($addedPermissions) |
| 450 | 450 | { |
| 451 | - $this->addedPermissions = $addedPermissions; |
|
| 451 | + $this->addedPermissions = $addedPermissions; |
|
| 452 | 452 | } |
| 453 | 453 | public function getAddedPermissions() |
| 454 | 454 | { |
| 455 | - return $this->addedPermissions; |
|
| 455 | + return $this->addedPermissions; |
|
| 456 | 456 | } |
| 457 | 457 | public function setRemovedPermissions($removedPermissions) |
| 458 | 458 | { |
| 459 | - $this->removedPermissions = $removedPermissions; |
|
| 459 | + $this->removedPermissions = $removedPermissions; |
|
| 460 | 460 | } |
| 461 | 461 | public function getRemovedPermissions() |
| 462 | 462 | { |
| 463 | - return $this->removedPermissions; |
|
| 463 | + return $this->removedPermissions; |
|
| 464 | 464 | } |
| 465 | 465 | } |
| 466 | 466 | |
@@ -473,11 +473,11 @@ discard block |
||
| 473 | 473 | |
| 474 | 474 | public function setUrl($url) |
| 475 | 475 | { |
| 476 | - $this->url = $url; |
|
| 476 | + $this->url = $url; |
|
| 477 | 477 | } |
| 478 | 478 | public function getUrl() |
| 479 | 479 | { |
| 480 | - return $this->url; |
|
| 480 | + return $this->url; |
|
| 481 | 481 | } |
| 482 | 482 | } |
| 483 | 483 | |
@@ -491,19 +491,19 @@ discard block |
||
| 491 | 491 | |
| 492 | 492 | public function setNewTitle($newTitle) |
| 493 | 493 | { |
| 494 | - $this->newTitle = $newTitle; |
|
| 494 | + $this->newTitle = $newTitle; |
|
| 495 | 495 | } |
| 496 | 496 | public function getNewTitle() |
| 497 | 497 | { |
| 498 | - return $this->newTitle; |
|
| 498 | + return $this->newTitle; |
|
| 499 | 499 | } |
| 500 | 500 | public function setOldTitle($oldTitle) |
| 501 | 501 | { |
| 502 | - $this->oldTitle = $oldTitle; |
|
| 502 | + $this->oldTitle = $oldTitle; |
|
| 503 | 503 | } |
| 504 | 504 | public function getOldTitle() |
| 505 | 505 | { |
| 506 | - return $this->oldTitle; |
|
| 506 | + return $this->oldTitle; |
|
| 507 | 507 | } |
| 508 | 508 | } |
| 509 | 509 | |
@@ -518,27 +518,27 @@ discard block |
||
| 518 | 518 | |
| 519 | 519 | public function setId($id) |
| 520 | 520 | { |
| 521 | - $this->id = $id; |
|
| 521 | + $this->id = $id; |
|
| 522 | 522 | } |
| 523 | 523 | public function getId() |
| 524 | 524 | { |
| 525 | - return $this->id; |
|
| 525 | + return $this->id; |
|
| 526 | 526 | } |
| 527 | 527 | public function setMimeType($mimeType) |
| 528 | 528 | { |
| 529 | - $this->mimeType = $mimeType; |
|
| 529 | + $this->mimeType = $mimeType; |
|
| 530 | 530 | } |
| 531 | 531 | public function getMimeType() |
| 532 | 532 | { |
| 533 | - return $this->mimeType; |
|
| 533 | + return $this->mimeType; |
|
| 534 | 534 | } |
| 535 | 535 | public function setName($name) |
| 536 | 536 | { |
| 537 | - $this->name = $name; |
|
| 537 | + $this->name = $name; |
|
| 538 | 538 | } |
| 539 | 539 | public function getName() |
| 540 | 540 | { |
| 541 | - return $this->name; |
|
| 541 | + return $this->name; |
|
| 542 | 542 | } |
| 543 | 543 | } |
| 544 | 544 | |
@@ -553,18 +553,18 @@ discard block |
||
| 553 | 553 | |
| 554 | 554 | public function setName($name) |
| 555 | 555 | { |
| 556 | - $this->name = $name; |
|
| 556 | + $this->name = $name; |
|
| 557 | 557 | } |
| 558 | 558 | public function getName() |
| 559 | 559 | { |
| 560 | - return $this->name; |
|
| 560 | + return $this->name; |
|
| 561 | 561 | } |
| 562 | 562 | public function setPhoto(Google_Service_Appsactivity_Photo $photo) |
| 563 | 563 | { |
| 564 | - $this->photo = $photo; |
|
| 564 | + $this->photo = $photo; |
|
| 565 | 565 | } |
| 566 | 566 | public function getPhoto() |
| 567 | 567 | { |
| 568 | - return $this->photo; |
|
| 568 | + return $this->photo; |
|
| 569 | 569 | } |
| 570 | 570 | } |