@@ -32,16 +32,16 @@ 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 | /** Manage your data and permissions in Google Cloud Storage. */ |
| 37 | 37 | const DEVSTORAGE_FULL_CONTROL = |
| 38 | - "https://www.googleapis.com/auth/devstorage.full_control"; |
|
| 38 | + "https://www.googleapis.com/auth/devstorage.full_control"; |
|
| 39 | 39 | /** View your data in Google Cloud Storage. */ |
| 40 | 40 | const DEVSTORAGE_READ_ONLY = |
| 41 | - "https://www.googleapis.com/auth/devstorage.read_only"; |
|
| 41 | + "https://www.googleapis.com/auth/devstorage.read_only"; |
|
| 42 | 42 | /** Manage your data in Google Cloud Storage. */ |
| 43 | 43 | const DEVSTORAGE_READ_WRITE = |
| 44 | - "https://www.googleapis.com/auth/devstorage.read_write"; |
|
| 44 | + "https://www.googleapis.com/auth/devstorage.read_write"; |
|
| 45 | 45 | |
| 46 | 46 | public $bucketAccessControls; |
| 47 | 47 | public $buckets; |
@@ -58,969 +58,969 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function __construct(Google_Client $client) |
| 60 | 60 | { |
| 61 | - parent::__construct($client); |
|
| 62 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 63 | - $this->servicePath = 'storage/v1/'; |
|
| 64 | - $this->version = 'v1'; |
|
| 65 | - $this->serviceName = 'storage'; |
|
| 66 | - |
|
| 67 | - $this->bucketAccessControls = new Google_Service_Storage_BucketAccessControls_Resource( |
|
| 68 | - $this, |
|
| 69 | - $this->serviceName, |
|
| 70 | - 'bucketAccessControls', |
|
| 71 | - array( |
|
| 72 | - 'methods' => array( |
|
| 73 | - 'delete' => array( |
|
| 74 | - 'path' => 'b/{bucket}/acl/{entity}', |
|
| 75 | - 'httpMethod' => 'DELETE', |
|
| 76 | - 'parameters' => array( |
|
| 77 | - 'bucket' => array( |
|
| 78 | - 'location' => 'path', |
|
| 79 | - 'type' => 'string', |
|
| 80 | - 'required' => true, |
|
| 81 | - ), |
|
| 82 | - 'entity' => array( |
|
| 83 | - 'location' => 'path', |
|
| 84 | - 'type' => 'string', |
|
| 85 | - 'required' => true, |
|
| 86 | - ), |
|
| 87 | - ), |
|
| 88 | - ),'get' => array( |
|
| 89 | - 'path' => 'b/{bucket}/acl/{entity}', |
|
| 90 | - 'httpMethod' => 'GET', |
|
| 91 | - 'parameters' => array( |
|
| 92 | - 'bucket' => array( |
|
| 93 | - 'location' => 'path', |
|
| 94 | - 'type' => 'string', |
|
| 95 | - 'required' => true, |
|
| 96 | - ), |
|
| 97 | - 'entity' => array( |
|
| 98 | - 'location' => 'path', |
|
| 99 | - 'type' => 'string', |
|
| 100 | - 'required' => true, |
|
| 101 | - ), |
|
| 102 | - ), |
|
| 103 | - ),'insert' => array( |
|
| 104 | - 'path' => 'b/{bucket}/acl', |
|
| 105 | - 'httpMethod' => 'POST', |
|
| 106 | - 'parameters' => array( |
|
| 107 | - 'bucket' => array( |
|
| 108 | - 'location' => 'path', |
|
| 109 | - 'type' => 'string', |
|
| 110 | - 'required' => true, |
|
| 111 | - ), |
|
| 112 | - ), |
|
| 113 | - ),'list' => array( |
|
| 114 | - 'path' => 'b/{bucket}/acl', |
|
| 115 | - 'httpMethod' => 'GET', |
|
| 116 | - 'parameters' => array( |
|
| 117 | - 'bucket' => array( |
|
| 118 | - 'location' => 'path', |
|
| 119 | - 'type' => 'string', |
|
| 120 | - 'required' => true, |
|
| 121 | - ), |
|
| 122 | - ), |
|
| 123 | - ),'patch' => array( |
|
| 124 | - 'path' => 'b/{bucket}/acl/{entity}', |
|
| 125 | - 'httpMethod' => 'PATCH', |
|
| 126 | - 'parameters' => array( |
|
| 127 | - 'bucket' => array( |
|
| 128 | - 'location' => 'path', |
|
| 129 | - 'type' => 'string', |
|
| 130 | - 'required' => true, |
|
| 131 | - ), |
|
| 132 | - 'entity' => array( |
|
| 133 | - 'location' => 'path', |
|
| 134 | - 'type' => 'string', |
|
| 135 | - 'required' => true, |
|
| 136 | - ), |
|
| 137 | - ), |
|
| 138 | - ),'update' => array( |
|
| 139 | - 'path' => 'b/{bucket}/acl/{entity}', |
|
| 140 | - 'httpMethod' => 'PUT', |
|
| 141 | - 'parameters' => array( |
|
| 142 | - 'bucket' => array( |
|
| 143 | - 'location' => 'path', |
|
| 144 | - 'type' => 'string', |
|
| 145 | - 'required' => true, |
|
| 146 | - ), |
|
| 147 | - 'entity' => array( |
|
| 148 | - 'location' => 'path', |
|
| 149 | - 'type' => 'string', |
|
| 150 | - 'required' => true, |
|
| 151 | - ), |
|
| 152 | - ), |
|
| 153 | - ), |
|
| 154 | - ) |
|
| 155 | - ) |
|
| 156 | - ); |
|
| 157 | - $this->buckets = new Google_Service_Storage_Buckets_Resource( |
|
| 158 | - $this, |
|
| 159 | - $this->serviceName, |
|
| 160 | - 'buckets', |
|
| 161 | - array( |
|
| 162 | - 'methods' => array( |
|
| 163 | - 'delete' => array( |
|
| 164 | - 'path' => 'b/{bucket}', |
|
| 165 | - 'httpMethod' => 'DELETE', |
|
| 166 | - 'parameters' => array( |
|
| 167 | - 'bucket' => array( |
|
| 168 | - 'location' => 'path', |
|
| 169 | - 'type' => 'string', |
|
| 170 | - 'required' => true, |
|
| 171 | - ), |
|
| 172 | - 'ifMetagenerationMatch' => array( |
|
| 173 | - 'location' => 'query', |
|
| 174 | - 'type' => 'string', |
|
| 175 | - ), |
|
| 176 | - 'ifMetagenerationNotMatch' => array( |
|
| 177 | - 'location' => 'query', |
|
| 178 | - 'type' => 'string', |
|
| 179 | - ), |
|
| 180 | - ), |
|
| 181 | - ),'get' => array( |
|
| 182 | - 'path' => 'b/{bucket}', |
|
| 183 | - 'httpMethod' => 'GET', |
|
| 184 | - 'parameters' => array( |
|
| 185 | - 'bucket' => array( |
|
| 186 | - 'location' => 'path', |
|
| 187 | - 'type' => 'string', |
|
| 188 | - 'required' => true, |
|
| 189 | - ), |
|
| 190 | - 'ifMetagenerationMatch' => array( |
|
| 191 | - 'location' => 'query', |
|
| 192 | - 'type' => 'string', |
|
| 193 | - ), |
|
| 194 | - 'ifMetagenerationNotMatch' => array( |
|
| 195 | - 'location' => 'query', |
|
| 196 | - 'type' => 'string', |
|
| 197 | - ), |
|
| 198 | - 'projection' => array( |
|
| 199 | - 'location' => 'query', |
|
| 200 | - 'type' => 'string', |
|
| 201 | - ), |
|
| 202 | - ), |
|
| 203 | - ),'insert' => array( |
|
| 204 | - 'path' => 'b', |
|
| 205 | - 'httpMethod' => 'POST', |
|
| 206 | - 'parameters' => array( |
|
| 207 | - 'project' => array( |
|
| 208 | - 'location' => 'query', |
|
| 209 | - 'type' => 'string', |
|
| 210 | - 'required' => true, |
|
| 211 | - ), |
|
| 212 | - 'predefinedAcl' => array( |
|
| 213 | - 'location' => 'query', |
|
| 214 | - 'type' => 'string', |
|
| 215 | - ), |
|
| 216 | - 'projection' => array( |
|
| 217 | - 'location' => 'query', |
|
| 218 | - 'type' => 'string', |
|
| 219 | - ), |
|
| 220 | - 'predefinedDefaultObjectAcl' => array( |
|
| 221 | - 'location' => 'query', |
|
| 222 | - 'type' => 'string', |
|
| 223 | - ), |
|
| 224 | - ), |
|
| 225 | - ),'list' => array( |
|
| 226 | - 'path' => 'b', |
|
| 227 | - 'httpMethod' => 'GET', |
|
| 228 | - 'parameters' => array( |
|
| 229 | - 'project' => array( |
|
| 230 | - 'location' => 'query', |
|
| 231 | - 'type' => 'string', |
|
| 232 | - 'required' => true, |
|
| 233 | - ), |
|
| 234 | - 'pageToken' => array( |
|
| 235 | - 'location' => 'query', |
|
| 236 | - 'type' => 'string', |
|
| 237 | - ), |
|
| 238 | - 'prefix' => array( |
|
| 239 | - 'location' => 'query', |
|
| 240 | - 'type' => 'string', |
|
| 241 | - ), |
|
| 242 | - 'projection' => array( |
|
| 243 | - 'location' => 'query', |
|
| 244 | - 'type' => 'string', |
|
| 245 | - ), |
|
| 246 | - 'maxResults' => array( |
|
| 247 | - 'location' => 'query', |
|
| 248 | - 'type' => 'integer', |
|
| 249 | - ), |
|
| 250 | - ), |
|
| 251 | - ),'patch' => array( |
|
| 252 | - 'path' => 'b/{bucket}', |
|
| 253 | - 'httpMethod' => 'PATCH', |
|
| 254 | - 'parameters' => array( |
|
| 255 | - 'bucket' => array( |
|
| 256 | - 'location' => 'path', |
|
| 257 | - 'type' => 'string', |
|
| 258 | - 'required' => true, |
|
| 259 | - ), |
|
| 260 | - 'projection' => array( |
|
| 261 | - 'location' => 'query', |
|
| 262 | - 'type' => 'string', |
|
| 263 | - ), |
|
| 264 | - 'ifMetagenerationMatch' => array( |
|
| 265 | - 'location' => 'query', |
|
| 266 | - 'type' => 'string', |
|
| 267 | - ), |
|
| 268 | - 'predefinedDefaultObjectAcl' => array( |
|
| 269 | - 'location' => 'query', |
|
| 270 | - 'type' => 'string', |
|
| 271 | - ), |
|
| 272 | - 'predefinedAcl' => array( |
|
| 273 | - 'location' => 'query', |
|
| 274 | - 'type' => 'string', |
|
| 275 | - ), |
|
| 276 | - 'ifMetagenerationNotMatch' => array( |
|
| 277 | - 'location' => 'query', |
|
| 278 | - 'type' => 'string', |
|
| 279 | - ), |
|
| 280 | - ), |
|
| 281 | - ),'update' => array( |
|
| 282 | - 'path' => 'b/{bucket}', |
|
| 283 | - 'httpMethod' => 'PUT', |
|
| 284 | - 'parameters' => array( |
|
| 285 | - 'bucket' => array( |
|
| 286 | - 'location' => 'path', |
|
| 287 | - 'type' => 'string', |
|
| 288 | - 'required' => true, |
|
| 289 | - ), |
|
| 290 | - 'projection' => array( |
|
| 291 | - 'location' => 'query', |
|
| 292 | - 'type' => 'string', |
|
| 293 | - ), |
|
| 294 | - 'ifMetagenerationMatch' => array( |
|
| 295 | - 'location' => 'query', |
|
| 296 | - 'type' => 'string', |
|
| 297 | - ), |
|
| 298 | - 'predefinedDefaultObjectAcl' => array( |
|
| 299 | - 'location' => 'query', |
|
| 300 | - 'type' => 'string', |
|
| 301 | - ), |
|
| 302 | - 'predefinedAcl' => array( |
|
| 303 | - 'location' => 'query', |
|
| 304 | - 'type' => 'string', |
|
| 305 | - ), |
|
| 306 | - 'ifMetagenerationNotMatch' => array( |
|
| 307 | - 'location' => 'query', |
|
| 308 | - 'type' => 'string', |
|
| 309 | - ), |
|
| 310 | - ), |
|
| 311 | - ), |
|
| 312 | - ) |
|
| 313 | - ) |
|
| 314 | - ); |
|
| 315 | - $this->channels = new Google_Service_Storage_Channels_Resource( |
|
| 316 | - $this, |
|
| 317 | - $this->serviceName, |
|
| 318 | - 'channels', |
|
| 319 | - array( |
|
| 320 | - 'methods' => array( |
|
| 321 | - 'stop' => array( |
|
| 322 | - 'path' => 'channels/stop', |
|
| 323 | - 'httpMethod' => 'POST', |
|
| 324 | - 'parameters' => array(), |
|
| 325 | - ), |
|
| 326 | - ) |
|
| 327 | - ) |
|
| 328 | - ); |
|
| 329 | - $this->defaultObjectAccessControls = new Google_Service_Storage_DefaultObjectAccessControls_Resource( |
|
| 330 | - $this, |
|
| 331 | - $this->serviceName, |
|
| 332 | - 'defaultObjectAccessControls', |
|
| 333 | - array( |
|
| 334 | - 'methods' => array( |
|
| 335 | - 'delete' => array( |
|
| 336 | - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 337 | - 'httpMethod' => 'DELETE', |
|
| 338 | - 'parameters' => array( |
|
| 339 | - 'bucket' => array( |
|
| 340 | - 'location' => 'path', |
|
| 341 | - 'type' => 'string', |
|
| 342 | - 'required' => true, |
|
| 343 | - ), |
|
| 344 | - 'entity' => array( |
|
| 345 | - 'location' => 'path', |
|
| 346 | - 'type' => 'string', |
|
| 347 | - 'required' => true, |
|
| 348 | - ), |
|
| 349 | - ), |
|
| 350 | - ),'get' => array( |
|
| 351 | - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 352 | - 'httpMethod' => 'GET', |
|
| 353 | - 'parameters' => array( |
|
| 354 | - 'bucket' => array( |
|
| 355 | - 'location' => 'path', |
|
| 356 | - 'type' => 'string', |
|
| 357 | - 'required' => true, |
|
| 358 | - ), |
|
| 359 | - 'entity' => array( |
|
| 360 | - 'location' => 'path', |
|
| 361 | - 'type' => 'string', |
|
| 362 | - 'required' => true, |
|
| 363 | - ), |
|
| 364 | - ), |
|
| 365 | - ),'insert' => array( |
|
| 366 | - 'path' => 'b/{bucket}/defaultObjectAcl', |
|
| 367 | - 'httpMethod' => 'POST', |
|
| 368 | - 'parameters' => array( |
|
| 369 | - 'bucket' => array( |
|
| 370 | - 'location' => 'path', |
|
| 371 | - 'type' => 'string', |
|
| 372 | - 'required' => true, |
|
| 373 | - ), |
|
| 374 | - ), |
|
| 375 | - ),'list' => array( |
|
| 376 | - 'path' => 'b/{bucket}/defaultObjectAcl', |
|
| 377 | - 'httpMethod' => 'GET', |
|
| 378 | - 'parameters' => array( |
|
| 379 | - 'bucket' => array( |
|
| 380 | - 'location' => 'path', |
|
| 381 | - 'type' => 'string', |
|
| 382 | - 'required' => true, |
|
| 383 | - ), |
|
| 384 | - 'ifMetagenerationMatch' => array( |
|
| 385 | - 'location' => 'query', |
|
| 386 | - 'type' => 'string', |
|
| 387 | - ), |
|
| 388 | - 'ifMetagenerationNotMatch' => array( |
|
| 389 | - 'location' => 'query', |
|
| 390 | - 'type' => 'string', |
|
| 391 | - ), |
|
| 392 | - ), |
|
| 393 | - ),'patch' => array( |
|
| 394 | - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 395 | - 'httpMethod' => 'PATCH', |
|
| 396 | - 'parameters' => array( |
|
| 397 | - 'bucket' => array( |
|
| 398 | - 'location' => 'path', |
|
| 399 | - 'type' => 'string', |
|
| 400 | - 'required' => true, |
|
| 401 | - ), |
|
| 402 | - 'entity' => array( |
|
| 403 | - 'location' => 'path', |
|
| 404 | - 'type' => 'string', |
|
| 405 | - 'required' => true, |
|
| 406 | - ), |
|
| 407 | - ), |
|
| 408 | - ),'update' => array( |
|
| 409 | - 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 410 | - 'httpMethod' => 'PUT', |
|
| 411 | - 'parameters' => array( |
|
| 412 | - 'bucket' => array( |
|
| 413 | - 'location' => 'path', |
|
| 414 | - 'type' => 'string', |
|
| 415 | - 'required' => true, |
|
| 416 | - ), |
|
| 417 | - 'entity' => array( |
|
| 418 | - 'location' => 'path', |
|
| 419 | - 'type' => 'string', |
|
| 420 | - 'required' => true, |
|
| 421 | - ), |
|
| 422 | - ), |
|
| 423 | - ), |
|
| 424 | - ) |
|
| 425 | - ) |
|
| 426 | - ); |
|
| 427 | - $this->objectAccessControls = new Google_Service_Storage_ObjectAccessControls_Resource( |
|
| 428 | - $this, |
|
| 429 | - $this->serviceName, |
|
| 430 | - 'objectAccessControls', |
|
| 431 | - array( |
|
| 432 | - 'methods' => array( |
|
| 433 | - 'delete' => array( |
|
| 434 | - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 435 | - 'httpMethod' => 'DELETE', |
|
| 436 | - 'parameters' => array( |
|
| 437 | - 'bucket' => array( |
|
| 438 | - 'location' => 'path', |
|
| 439 | - 'type' => 'string', |
|
| 440 | - 'required' => true, |
|
| 441 | - ), |
|
| 442 | - 'object' => array( |
|
| 443 | - 'location' => 'path', |
|
| 444 | - 'type' => 'string', |
|
| 445 | - 'required' => true, |
|
| 446 | - ), |
|
| 447 | - 'entity' => array( |
|
| 448 | - 'location' => 'path', |
|
| 449 | - 'type' => 'string', |
|
| 450 | - 'required' => true, |
|
| 451 | - ), |
|
| 452 | - 'generation' => array( |
|
| 453 | - 'location' => 'query', |
|
| 454 | - 'type' => 'string', |
|
| 455 | - ), |
|
| 456 | - ), |
|
| 457 | - ),'get' => array( |
|
| 458 | - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 459 | - 'httpMethod' => 'GET', |
|
| 460 | - 'parameters' => array( |
|
| 461 | - 'bucket' => array( |
|
| 462 | - 'location' => 'path', |
|
| 463 | - 'type' => 'string', |
|
| 464 | - 'required' => true, |
|
| 465 | - ), |
|
| 466 | - 'object' => array( |
|
| 467 | - 'location' => 'path', |
|
| 468 | - 'type' => 'string', |
|
| 469 | - 'required' => true, |
|
| 470 | - ), |
|
| 471 | - 'entity' => array( |
|
| 472 | - 'location' => 'path', |
|
| 473 | - 'type' => 'string', |
|
| 474 | - 'required' => true, |
|
| 475 | - ), |
|
| 476 | - 'generation' => array( |
|
| 477 | - 'location' => 'query', |
|
| 478 | - 'type' => 'string', |
|
| 479 | - ), |
|
| 480 | - ), |
|
| 481 | - ),'insert' => array( |
|
| 482 | - 'path' => 'b/{bucket}/o/{object}/acl', |
|
| 483 | - 'httpMethod' => 'POST', |
|
| 484 | - 'parameters' => array( |
|
| 485 | - 'bucket' => array( |
|
| 486 | - 'location' => 'path', |
|
| 487 | - 'type' => 'string', |
|
| 488 | - 'required' => true, |
|
| 489 | - ), |
|
| 490 | - 'object' => array( |
|
| 491 | - 'location' => 'path', |
|
| 492 | - 'type' => 'string', |
|
| 493 | - 'required' => true, |
|
| 494 | - ), |
|
| 495 | - 'generation' => array( |
|
| 496 | - 'location' => 'query', |
|
| 497 | - 'type' => 'string', |
|
| 498 | - ), |
|
| 499 | - ), |
|
| 500 | - ),'list' => array( |
|
| 501 | - 'path' => 'b/{bucket}/o/{object}/acl', |
|
| 502 | - 'httpMethod' => 'GET', |
|
| 503 | - 'parameters' => array( |
|
| 504 | - 'bucket' => array( |
|
| 505 | - 'location' => 'path', |
|
| 506 | - 'type' => 'string', |
|
| 507 | - 'required' => true, |
|
| 508 | - ), |
|
| 509 | - 'object' => array( |
|
| 510 | - 'location' => 'path', |
|
| 511 | - 'type' => 'string', |
|
| 512 | - 'required' => true, |
|
| 513 | - ), |
|
| 514 | - 'generation' => array( |
|
| 515 | - 'location' => 'query', |
|
| 516 | - 'type' => 'string', |
|
| 517 | - ), |
|
| 518 | - ), |
|
| 519 | - ),'patch' => array( |
|
| 520 | - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 521 | - 'httpMethod' => 'PATCH', |
|
| 522 | - 'parameters' => array( |
|
| 523 | - 'bucket' => array( |
|
| 524 | - 'location' => 'path', |
|
| 525 | - 'type' => 'string', |
|
| 526 | - 'required' => true, |
|
| 527 | - ), |
|
| 528 | - 'object' => array( |
|
| 529 | - 'location' => 'path', |
|
| 530 | - 'type' => 'string', |
|
| 531 | - 'required' => true, |
|
| 532 | - ), |
|
| 533 | - 'entity' => array( |
|
| 534 | - 'location' => 'path', |
|
| 535 | - 'type' => 'string', |
|
| 536 | - 'required' => true, |
|
| 537 | - ), |
|
| 538 | - 'generation' => array( |
|
| 539 | - 'location' => 'query', |
|
| 540 | - 'type' => 'string', |
|
| 541 | - ), |
|
| 542 | - ), |
|
| 543 | - ),'update' => array( |
|
| 544 | - 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 545 | - 'httpMethod' => 'PUT', |
|
| 546 | - 'parameters' => array( |
|
| 547 | - 'bucket' => array( |
|
| 548 | - 'location' => 'path', |
|
| 549 | - 'type' => 'string', |
|
| 550 | - 'required' => true, |
|
| 551 | - ), |
|
| 552 | - 'object' => array( |
|
| 553 | - 'location' => 'path', |
|
| 554 | - 'type' => 'string', |
|
| 555 | - 'required' => true, |
|
| 556 | - ), |
|
| 557 | - 'entity' => array( |
|
| 558 | - 'location' => 'path', |
|
| 559 | - 'type' => 'string', |
|
| 560 | - 'required' => true, |
|
| 561 | - ), |
|
| 562 | - 'generation' => array( |
|
| 563 | - 'location' => 'query', |
|
| 564 | - 'type' => 'string', |
|
| 565 | - ), |
|
| 566 | - ), |
|
| 567 | - ), |
|
| 568 | - ) |
|
| 569 | - ) |
|
| 570 | - ); |
|
| 571 | - $this->objects = new Google_Service_Storage_Objects_Resource( |
|
| 572 | - $this, |
|
| 573 | - $this->serviceName, |
|
| 574 | - 'objects', |
|
| 575 | - array( |
|
| 576 | - 'methods' => array( |
|
| 577 | - 'compose' => array( |
|
| 578 | - 'path' => 'b/{destinationBucket}/o/{destinationObject}/compose', |
|
| 579 | - 'httpMethod' => 'POST', |
|
| 580 | - 'parameters' => array( |
|
| 581 | - 'destinationBucket' => array( |
|
| 582 | - 'location' => 'path', |
|
| 583 | - 'type' => 'string', |
|
| 584 | - 'required' => true, |
|
| 585 | - ), |
|
| 586 | - 'destinationObject' => array( |
|
| 587 | - 'location' => 'path', |
|
| 588 | - 'type' => 'string', |
|
| 589 | - 'required' => true, |
|
| 590 | - ), |
|
| 591 | - 'ifGenerationMatch' => array( |
|
| 592 | - 'location' => 'query', |
|
| 593 | - 'type' => 'string', |
|
| 594 | - ), |
|
| 595 | - 'ifMetagenerationMatch' => array( |
|
| 596 | - 'location' => 'query', |
|
| 597 | - 'type' => 'string', |
|
| 598 | - ), |
|
| 599 | - 'destinationPredefinedAcl' => array( |
|
| 600 | - 'location' => 'query', |
|
| 601 | - 'type' => 'string', |
|
| 602 | - ), |
|
| 603 | - ), |
|
| 604 | - ),'copy' => array( |
|
| 605 | - 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}', |
|
| 606 | - 'httpMethod' => 'POST', |
|
| 607 | - 'parameters' => array( |
|
| 608 | - 'sourceBucket' => array( |
|
| 609 | - 'location' => 'path', |
|
| 610 | - 'type' => 'string', |
|
| 611 | - 'required' => true, |
|
| 612 | - ), |
|
| 613 | - 'sourceObject' => array( |
|
| 614 | - 'location' => 'path', |
|
| 615 | - 'type' => 'string', |
|
| 616 | - 'required' => true, |
|
| 617 | - ), |
|
| 618 | - 'destinationBucket' => array( |
|
| 619 | - 'location' => 'path', |
|
| 620 | - 'type' => 'string', |
|
| 621 | - 'required' => true, |
|
| 622 | - ), |
|
| 623 | - 'destinationObject' => array( |
|
| 624 | - 'location' => 'path', |
|
| 625 | - 'type' => 'string', |
|
| 626 | - 'required' => true, |
|
| 627 | - ), |
|
| 628 | - 'ifSourceGenerationNotMatch' => array( |
|
| 629 | - 'location' => 'query', |
|
| 630 | - 'type' => 'string', |
|
| 631 | - ), |
|
| 632 | - 'ifGenerationNotMatch' => array( |
|
| 633 | - 'location' => 'query', |
|
| 634 | - 'type' => 'string', |
|
| 635 | - ), |
|
| 636 | - 'ifSourceMetagenerationNotMatch' => array( |
|
| 637 | - 'location' => 'query', |
|
| 638 | - 'type' => 'string', |
|
| 639 | - ), |
|
| 640 | - 'ifMetagenerationMatch' => array( |
|
| 641 | - 'location' => 'query', |
|
| 642 | - 'type' => 'string', |
|
| 643 | - ), |
|
| 644 | - 'sourceGeneration' => array( |
|
| 645 | - 'location' => 'query', |
|
| 646 | - 'type' => 'string', |
|
| 647 | - ), |
|
| 648 | - 'destinationPredefinedAcl' => array( |
|
| 649 | - 'location' => 'query', |
|
| 650 | - 'type' => 'string', |
|
| 651 | - ), |
|
| 652 | - 'ifSourceGenerationMatch' => array( |
|
| 653 | - 'location' => 'query', |
|
| 654 | - 'type' => 'string', |
|
| 655 | - ), |
|
| 656 | - 'ifSourceMetagenerationMatch' => array( |
|
| 657 | - 'location' => 'query', |
|
| 658 | - 'type' => 'string', |
|
| 659 | - ), |
|
| 660 | - 'ifGenerationMatch' => array( |
|
| 661 | - 'location' => 'query', |
|
| 662 | - 'type' => 'string', |
|
| 663 | - ), |
|
| 664 | - 'ifMetagenerationNotMatch' => array( |
|
| 665 | - 'location' => 'query', |
|
| 666 | - 'type' => 'string', |
|
| 667 | - ), |
|
| 668 | - 'projection' => array( |
|
| 669 | - 'location' => 'query', |
|
| 670 | - 'type' => 'string', |
|
| 671 | - ), |
|
| 672 | - ), |
|
| 673 | - ),'delete' => array( |
|
| 674 | - 'path' => 'b/{bucket}/o/{object}', |
|
| 675 | - 'httpMethod' => 'DELETE', |
|
| 676 | - 'parameters' => array( |
|
| 677 | - 'bucket' => array( |
|
| 678 | - 'location' => 'path', |
|
| 679 | - 'type' => 'string', |
|
| 680 | - 'required' => true, |
|
| 681 | - ), |
|
| 682 | - 'object' => array( |
|
| 683 | - 'location' => 'path', |
|
| 684 | - 'type' => 'string', |
|
| 685 | - 'required' => true, |
|
| 686 | - ), |
|
| 687 | - 'ifGenerationNotMatch' => array( |
|
| 688 | - 'location' => 'query', |
|
| 689 | - 'type' => 'string', |
|
| 690 | - ), |
|
| 691 | - 'generation' => array( |
|
| 692 | - 'location' => 'query', |
|
| 693 | - 'type' => 'string', |
|
| 694 | - ), |
|
| 695 | - 'ifMetagenerationMatch' => array( |
|
| 696 | - 'location' => 'query', |
|
| 697 | - 'type' => 'string', |
|
| 698 | - ), |
|
| 699 | - 'ifGenerationMatch' => array( |
|
| 700 | - 'location' => 'query', |
|
| 701 | - 'type' => 'string', |
|
| 702 | - ), |
|
| 703 | - 'ifMetagenerationNotMatch' => array( |
|
| 704 | - 'location' => 'query', |
|
| 705 | - 'type' => 'string', |
|
| 706 | - ), |
|
| 707 | - ), |
|
| 708 | - ),'get' => array( |
|
| 709 | - 'path' => 'b/{bucket}/o/{object}', |
|
| 710 | - 'httpMethod' => 'GET', |
|
| 711 | - 'parameters' => array( |
|
| 712 | - 'bucket' => array( |
|
| 713 | - 'location' => 'path', |
|
| 714 | - 'type' => 'string', |
|
| 715 | - 'required' => true, |
|
| 716 | - ), |
|
| 717 | - 'object' => array( |
|
| 718 | - 'location' => 'path', |
|
| 719 | - 'type' => 'string', |
|
| 720 | - 'required' => true, |
|
| 721 | - ), |
|
| 722 | - 'ifGenerationNotMatch' => array( |
|
| 723 | - 'location' => 'query', |
|
| 724 | - 'type' => 'string', |
|
| 725 | - ), |
|
| 726 | - 'generation' => array( |
|
| 727 | - 'location' => 'query', |
|
| 728 | - 'type' => 'string', |
|
| 729 | - ), |
|
| 730 | - 'ifMetagenerationMatch' => array( |
|
| 731 | - 'location' => 'query', |
|
| 732 | - 'type' => 'string', |
|
| 733 | - ), |
|
| 734 | - 'ifGenerationMatch' => array( |
|
| 735 | - 'location' => 'query', |
|
| 736 | - 'type' => 'string', |
|
| 737 | - ), |
|
| 738 | - 'ifMetagenerationNotMatch' => array( |
|
| 739 | - 'location' => 'query', |
|
| 740 | - 'type' => 'string', |
|
| 741 | - ), |
|
| 742 | - 'projection' => array( |
|
| 743 | - 'location' => 'query', |
|
| 744 | - 'type' => 'string', |
|
| 745 | - ), |
|
| 746 | - ), |
|
| 747 | - ),'insert' => array( |
|
| 748 | - 'path' => 'b/{bucket}/o', |
|
| 749 | - 'httpMethod' => 'POST', |
|
| 750 | - 'parameters' => array( |
|
| 751 | - 'bucket' => array( |
|
| 752 | - 'location' => 'path', |
|
| 753 | - 'type' => 'string', |
|
| 754 | - 'required' => true, |
|
| 755 | - ), |
|
| 756 | - 'predefinedAcl' => array( |
|
| 757 | - 'location' => 'query', |
|
| 758 | - 'type' => 'string', |
|
| 759 | - ), |
|
| 760 | - 'projection' => array( |
|
| 761 | - 'location' => 'query', |
|
| 762 | - 'type' => 'string', |
|
| 763 | - ), |
|
| 764 | - 'ifGenerationNotMatch' => array( |
|
| 765 | - 'location' => 'query', |
|
| 766 | - 'type' => 'string', |
|
| 767 | - ), |
|
| 768 | - 'ifMetagenerationMatch' => array( |
|
| 769 | - 'location' => 'query', |
|
| 770 | - 'type' => 'string', |
|
| 771 | - ), |
|
| 772 | - 'contentEncoding' => array( |
|
| 773 | - 'location' => 'query', |
|
| 774 | - 'type' => 'string', |
|
| 775 | - ), |
|
| 776 | - 'ifGenerationMatch' => array( |
|
| 777 | - 'location' => 'query', |
|
| 778 | - 'type' => 'string', |
|
| 779 | - ), |
|
| 780 | - 'ifMetagenerationNotMatch' => array( |
|
| 781 | - 'location' => 'query', |
|
| 782 | - 'type' => 'string', |
|
| 783 | - ), |
|
| 784 | - 'name' => array( |
|
| 785 | - 'location' => 'query', |
|
| 786 | - 'type' => 'string', |
|
| 787 | - ), |
|
| 788 | - ), |
|
| 789 | - ),'list' => array( |
|
| 790 | - 'path' => 'b/{bucket}/o', |
|
| 791 | - 'httpMethod' => 'GET', |
|
| 792 | - 'parameters' => array( |
|
| 793 | - 'bucket' => array( |
|
| 794 | - 'location' => 'path', |
|
| 795 | - 'type' => 'string', |
|
| 796 | - 'required' => true, |
|
| 797 | - ), |
|
| 798 | - 'projection' => array( |
|
| 799 | - 'location' => 'query', |
|
| 800 | - 'type' => 'string', |
|
| 801 | - ), |
|
| 802 | - 'versions' => array( |
|
| 803 | - 'location' => 'query', |
|
| 804 | - 'type' => 'boolean', |
|
| 805 | - ), |
|
| 806 | - 'prefix' => array( |
|
| 807 | - 'location' => 'query', |
|
| 808 | - 'type' => 'string', |
|
| 809 | - ), |
|
| 810 | - 'maxResults' => array( |
|
| 811 | - 'location' => 'query', |
|
| 812 | - 'type' => 'integer', |
|
| 813 | - ), |
|
| 814 | - 'pageToken' => array( |
|
| 815 | - 'location' => 'query', |
|
| 816 | - 'type' => 'string', |
|
| 817 | - ), |
|
| 818 | - 'delimiter' => array( |
|
| 819 | - 'location' => 'query', |
|
| 820 | - 'type' => 'string', |
|
| 821 | - ), |
|
| 822 | - ), |
|
| 823 | - ),'patch' => array( |
|
| 824 | - 'path' => 'b/{bucket}/o/{object}', |
|
| 825 | - 'httpMethod' => 'PATCH', |
|
| 826 | - 'parameters' => array( |
|
| 827 | - 'bucket' => array( |
|
| 828 | - 'location' => 'path', |
|
| 829 | - 'type' => 'string', |
|
| 830 | - 'required' => true, |
|
| 831 | - ), |
|
| 832 | - 'object' => array( |
|
| 833 | - 'location' => 'path', |
|
| 834 | - 'type' => 'string', |
|
| 835 | - 'required' => true, |
|
| 836 | - ), |
|
| 837 | - 'predefinedAcl' => array( |
|
| 838 | - 'location' => 'query', |
|
| 839 | - 'type' => 'string', |
|
| 840 | - ), |
|
| 841 | - 'ifGenerationNotMatch' => array( |
|
| 842 | - 'location' => 'query', |
|
| 843 | - 'type' => 'string', |
|
| 844 | - ), |
|
| 845 | - 'generation' => array( |
|
| 846 | - 'location' => 'query', |
|
| 847 | - 'type' => 'string', |
|
| 848 | - ), |
|
| 849 | - 'ifMetagenerationMatch' => array( |
|
| 850 | - 'location' => 'query', |
|
| 851 | - 'type' => 'string', |
|
| 852 | - ), |
|
| 853 | - 'ifGenerationMatch' => array( |
|
| 854 | - 'location' => 'query', |
|
| 855 | - 'type' => 'string', |
|
| 856 | - ), |
|
| 857 | - 'ifMetagenerationNotMatch' => array( |
|
| 858 | - 'location' => 'query', |
|
| 859 | - 'type' => 'string', |
|
| 860 | - ), |
|
| 861 | - 'projection' => array( |
|
| 862 | - 'location' => 'query', |
|
| 863 | - 'type' => 'string', |
|
| 864 | - ), |
|
| 865 | - ), |
|
| 866 | - ),'rewrite' => array( |
|
| 867 | - 'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}', |
|
| 868 | - 'httpMethod' => 'POST', |
|
| 869 | - 'parameters' => array( |
|
| 870 | - 'sourceBucket' => array( |
|
| 871 | - 'location' => 'path', |
|
| 872 | - 'type' => 'string', |
|
| 873 | - 'required' => true, |
|
| 874 | - ), |
|
| 875 | - 'sourceObject' => array( |
|
| 876 | - 'location' => 'path', |
|
| 877 | - 'type' => 'string', |
|
| 878 | - 'required' => true, |
|
| 879 | - ), |
|
| 880 | - 'destinationBucket' => array( |
|
| 881 | - 'location' => 'path', |
|
| 882 | - 'type' => 'string', |
|
| 883 | - 'required' => true, |
|
| 884 | - ), |
|
| 885 | - 'destinationObject' => array( |
|
| 886 | - 'location' => 'path', |
|
| 887 | - 'type' => 'string', |
|
| 888 | - 'required' => true, |
|
| 889 | - ), |
|
| 890 | - 'ifSourceGenerationNotMatch' => array( |
|
| 891 | - 'location' => 'query', |
|
| 892 | - 'type' => 'string', |
|
| 893 | - ), |
|
| 894 | - 'ifGenerationNotMatch' => array( |
|
| 895 | - 'location' => 'query', |
|
| 896 | - 'type' => 'string', |
|
| 897 | - ), |
|
| 898 | - 'rewriteToken' => array( |
|
| 899 | - 'location' => 'query', |
|
| 900 | - 'type' => 'string', |
|
| 901 | - ), |
|
| 902 | - 'ifSourceMetagenerationNotMatch' => array( |
|
| 903 | - 'location' => 'query', |
|
| 904 | - 'type' => 'string', |
|
| 905 | - ), |
|
| 906 | - 'ifMetagenerationMatch' => array( |
|
| 907 | - 'location' => 'query', |
|
| 908 | - 'type' => 'string', |
|
| 909 | - ), |
|
| 910 | - 'sourceGeneration' => array( |
|
| 911 | - 'location' => 'query', |
|
| 912 | - 'type' => 'string', |
|
| 913 | - ), |
|
| 914 | - 'destinationPredefinedAcl' => array( |
|
| 915 | - 'location' => 'query', |
|
| 916 | - 'type' => 'string', |
|
| 917 | - ), |
|
| 918 | - 'ifSourceGenerationMatch' => array( |
|
| 919 | - 'location' => 'query', |
|
| 920 | - 'type' => 'string', |
|
| 921 | - ), |
|
| 922 | - 'maxBytesRewrittenPerCall' => array( |
|
| 923 | - 'location' => 'query', |
|
| 924 | - 'type' => 'string', |
|
| 925 | - ), |
|
| 926 | - 'ifSourceMetagenerationMatch' => array( |
|
| 927 | - 'location' => 'query', |
|
| 928 | - 'type' => 'string', |
|
| 929 | - ), |
|
| 930 | - 'ifGenerationMatch' => array( |
|
| 931 | - 'location' => 'query', |
|
| 932 | - 'type' => 'string', |
|
| 933 | - ), |
|
| 934 | - 'ifMetagenerationNotMatch' => array( |
|
| 935 | - 'location' => 'query', |
|
| 936 | - 'type' => 'string', |
|
| 937 | - ), |
|
| 938 | - 'projection' => array( |
|
| 939 | - 'location' => 'query', |
|
| 940 | - 'type' => 'string', |
|
| 941 | - ), |
|
| 942 | - ), |
|
| 943 | - ),'update' => array( |
|
| 944 | - 'path' => 'b/{bucket}/o/{object}', |
|
| 945 | - 'httpMethod' => 'PUT', |
|
| 946 | - 'parameters' => array( |
|
| 947 | - 'bucket' => array( |
|
| 948 | - 'location' => 'path', |
|
| 949 | - 'type' => 'string', |
|
| 950 | - 'required' => true, |
|
| 951 | - ), |
|
| 952 | - 'object' => array( |
|
| 953 | - 'location' => 'path', |
|
| 954 | - 'type' => 'string', |
|
| 955 | - 'required' => true, |
|
| 956 | - ), |
|
| 957 | - 'predefinedAcl' => array( |
|
| 958 | - 'location' => 'query', |
|
| 959 | - 'type' => 'string', |
|
| 960 | - ), |
|
| 961 | - 'ifGenerationNotMatch' => array( |
|
| 962 | - 'location' => 'query', |
|
| 963 | - 'type' => 'string', |
|
| 964 | - ), |
|
| 965 | - 'generation' => array( |
|
| 966 | - 'location' => 'query', |
|
| 967 | - 'type' => 'string', |
|
| 968 | - ), |
|
| 969 | - 'ifMetagenerationMatch' => array( |
|
| 970 | - 'location' => 'query', |
|
| 971 | - 'type' => 'string', |
|
| 972 | - ), |
|
| 973 | - 'ifGenerationMatch' => array( |
|
| 974 | - 'location' => 'query', |
|
| 975 | - 'type' => 'string', |
|
| 976 | - ), |
|
| 977 | - 'ifMetagenerationNotMatch' => array( |
|
| 978 | - 'location' => 'query', |
|
| 979 | - 'type' => 'string', |
|
| 980 | - ), |
|
| 981 | - 'projection' => array( |
|
| 982 | - 'location' => 'query', |
|
| 983 | - 'type' => 'string', |
|
| 984 | - ), |
|
| 985 | - ), |
|
| 986 | - ),'watchAll' => array( |
|
| 987 | - 'path' => 'b/{bucket}/o/watch', |
|
| 988 | - 'httpMethod' => 'POST', |
|
| 989 | - 'parameters' => array( |
|
| 990 | - 'bucket' => array( |
|
| 991 | - 'location' => 'path', |
|
| 992 | - 'type' => 'string', |
|
| 993 | - 'required' => true, |
|
| 994 | - ), |
|
| 995 | - 'projection' => array( |
|
| 996 | - 'location' => 'query', |
|
| 997 | - 'type' => 'string', |
|
| 998 | - ), |
|
| 999 | - 'versions' => array( |
|
| 1000 | - 'location' => 'query', |
|
| 1001 | - 'type' => 'boolean', |
|
| 1002 | - ), |
|
| 1003 | - 'prefix' => array( |
|
| 1004 | - 'location' => 'query', |
|
| 1005 | - 'type' => 'string', |
|
| 1006 | - ), |
|
| 1007 | - 'maxResults' => array( |
|
| 1008 | - 'location' => 'query', |
|
| 1009 | - 'type' => 'integer', |
|
| 1010 | - ), |
|
| 1011 | - 'pageToken' => array( |
|
| 1012 | - 'location' => 'query', |
|
| 1013 | - 'type' => 'string', |
|
| 1014 | - ), |
|
| 1015 | - 'delimiter' => array( |
|
| 1016 | - 'location' => 'query', |
|
| 1017 | - 'type' => 'string', |
|
| 1018 | - ), |
|
| 1019 | - ), |
|
| 1020 | - ), |
|
| 1021 | - ) |
|
| 1022 | - ) |
|
| 1023 | - ); |
|
| 61 | + parent::__construct($client); |
|
| 62 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 63 | + $this->servicePath = 'storage/v1/'; |
|
| 64 | + $this->version = 'v1'; |
|
| 65 | + $this->serviceName = 'storage'; |
|
| 66 | + |
|
| 67 | + $this->bucketAccessControls = new Google_Service_Storage_BucketAccessControls_Resource( |
|
| 68 | + $this, |
|
| 69 | + $this->serviceName, |
|
| 70 | + 'bucketAccessControls', |
|
| 71 | + array( |
|
| 72 | + 'methods' => array( |
|
| 73 | + 'delete' => array( |
|
| 74 | + 'path' => 'b/{bucket}/acl/{entity}', |
|
| 75 | + 'httpMethod' => 'DELETE', |
|
| 76 | + 'parameters' => array( |
|
| 77 | + 'bucket' => array( |
|
| 78 | + 'location' => 'path', |
|
| 79 | + 'type' => 'string', |
|
| 80 | + 'required' => true, |
|
| 81 | + ), |
|
| 82 | + 'entity' => array( |
|
| 83 | + 'location' => 'path', |
|
| 84 | + 'type' => 'string', |
|
| 85 | + 'required' => true, |
|
| 86 | + ), |
|
| 87 | + ), |
|
| 88 | + ),'get' => array( |
|
| 89 | + 'path' => 'b/{bucket}/acl/{entity}', |
|
| 90 | + 'httpMethod' => 'GET', |
|
| 91 | + 'parameters' => array( |
|
| 92 | + 'bucket' => array( |
|
| 93 | + 'location' => 'path', |
|
| 94 | + 'type' => 'string', |
|
| 95 | + 'required' => true, |
|
| 96 | + ), |
|
| 97 | + 'entity' => array( |
|
| 98 | + 'location' => 'path', |
|
| 99 | + 'type' => 'string', |
|
| 100 | + 'required' => true, |
|
| 101 | + ), |
|
| 102 | + ), |
|
| 103 | + ),'insert' => array( |
|
| 104 | + 'path' => 'b/{bucket}/acl', |
|
| 105 | + 'httpMethod' => 'POST', |
|
| 106 | + 'parameters' => array( |
|
| 107 | + 'bucket' => array( |
|
| 108 | + 'location' => 'path', |
|
| 109 | + 'type' => 'string', |
|
| 110 | + 'required' => true, |
|
| 111 | + ), |
|
| 112 | + ), |
|
| 113 | + ),'list' => array( |
|
| 114 | + 'path' => 'b/{bucket}/acl', |
|
| 115 | + 'httpMethod' => 'GET', |
|
| 116 | + 'parameters' => array( |
|
| 117 | + 'bucket' => array( |
|
| 118 | + 'location' => 'path', |
|
| 119 | + 'type' => 'string', |
|
| 120 | + 'required' => true, |
|
| 121 | + ), |
|
| 122 | + ), |
|
| 123 | + ),'patch' => array( |
|
| 124 | + 'path' => 'b/{bucket}/acl/{entity}', |
|
| 125 | + 'httpMethod' => 'PATCH', |
|
| 126 | + 'parameters' => array( |
|
| 127 | + 'bucket' => array( |
|
| 128 | + 'location' => 'path', |
|
| 129 | + 'type' => 'string', |
|
| 130 | + 'required' => true, |
|
| 131 | + ), |
|
| 132 | + 'entity' => array( |
|
| 133 | + 'location' => 'path', |
|
| 134 | + 'type' => 'string', |
|
| 135 | + 'required' => true, |
|
| 136 | + ), |
|
| 137 | + ), |
|
| 138 | + ),'update' => array( |
|
| 139 | + 'path' => 'b/{bucket}/acl/{entity}', |
|
| 140 | + 'httpMethod' => 'PUT', |
|
| 141 | + 'parameters' => array( |
|
| 142 | + 'bucket' => array( |
|
| 143 | + 'location' => 'path', |
|
| 144 | + 'type' => 'string', |
|
| 145 | + 'required' => true, |
|
| 146 | + ), |
|
| 147 | + 'entity' => array( |
|
| 148 | + 'location' => 'path', |
|
| 149 | + 'type' => 'string', |
|
| 150 | + 'required' => true, |
|
| 151 | + ), |
|
| 152 | + ), |
|
| 153 | + ), |
|
| 154 | + ) |
|
| 155 | + ) |
|
| 156 | + ); |
|
| 157 | + $this->buckets = new Google_Service_Storage_Buckets_Resource( |
|
| 158 | + $this, |
|
| 159 | + $this->serviceName, |
|
| 160 | + 'buckets', |
|
| 161 | + array( |
|
| 162 | + 'methods' => array( |
|
| 163 | + 'delete' => array( |
|
| 164 | + 'path' => 'b/{bucket}', |
|
| 165 | + 'httpMethod' => 'DELETE', |
|
| 166 | + 'parameters' => array( |
|
| 167 | + 'bucket' => array( |
|
| 168 | + 'location' => 'path', |
|
| 169 | + 'type' => 'string', |
|
| 170 | + 'required' => true, |
|
| 171 | + ), |
|
| 172 | + 'ifMetagenerationMatch' => array( |
|
| 173 | + 'location' => 'query', |
|
| 174 | + 'type' => 'string', |
|
| 175 | + ), |
|
| 176 | + 'ifMetagenerationNotMatch' => array( |
|
| 177 | + 'location' => 'query', |
|
| 178 | + 'type' => 'string', |
|
| 179 | + ), |
|
| 180 | + ), |
|
| 181 | + ),'get' => array( |
|
| 182 | + 'path' => 'b/{bucket}', |
|
| 183 | + 'httpMethod' => 'GET', |
|
| 184 | + 'parameters' => array( |
|
| 185 | + 'bucket' => array( |
|
| 186 | + 'location' => 'path', |
|
| 187 | + 'type' => 'string', |
|
| 188 | + 'required' => true, |
|
| 189 | + ), |
|
| 190 | + 'ifMetagenerationMatch' => array( |
|
| 191 | + 'location' => 'query', |
|
| 192 | + 'type' => 'string', |
|
| 193 | + ), |
|
| 194 | + 'ifMetagenerationNotMatch' => array( |
|
| 195 | + 'location' => 'query', |
|
| 196 | + 'type' => 'string', |
|
| 197 | + ), |
|
| 198 | + 'projection' => array( |
|
| 199 | + 'location' => 'query', |
|
| 200 | + 'type' => 'string', |
|
| 201 | + ), |
|
| 202 | + ), |
|
| 203 | + ),'insert' => array( |
|
| 204 | + 'path' => 'b', |
|
| 205 | + 'httpMethod' => 'POST', |
|
| 206 | + 'parameters' => array( |
|
| 207 | + 'project' => array( |
|
| 208 | + 'location' => 'query', |
|
| 209 | + 'type' => 'string', |
|
| 210 | + 'required' => true, |
|
| 211 | + ), |
|
| 212 | + 'predefinedAcl' => array( |
|
| 213 | + 'location' => 'query', |
|
| 214 | + 'type' => 'string', |
|
| 215 | + ), |
|
| 216 | + 'projection' => array( |
|
| 217 | + 'location' => 'query', |
|
| 218 | + 'type' => 'string', |
|
| 219 | + ), |
|
| 220 | + 'predefinedDefaultObjectAcl' => array( |
|
| 221 | + 'location' => 'query', |
|
| 222 | + 'type' => 'string', |
|
| 223 | + ), |
|
| 224 | + ), |
|
| 225 | + ),'list' => array( |
|
| 226 | + 'path' => 'b', |
|
| 227 | + 'httpMethod' => 'GET', |
|
| 228 | + 'parameters' => array( |
|
| 229 | + 'project' => array( |
|
| 230 | + 'location' => 'query', |
|
| 231 | + 'type' => 'string', |
|
| 232 | + 'required' => true, |
|
| 233 | + ), |
|
| 234 | + 'pageToken' => array( |
|
| 235 | + 'location' => 'query', |
|
| 236 | + 'type' => 'string', |
|
| 237 | + ), |
|
| 238 | + 'prefix' => array( |
|
| 239 | + 'location' => 'query', |
|
| 240 | + 'type' => 'string', |
|
| 241 | + ), |
|
| 242 | + 'projection' => array( |
|
| 243 | + 'location' => 'query', |
|
| 244 | + 'type' => 'string', |
|
| 245 | + ), |
|
| 246 | + 'maxResults' => array( |
|
| 247 | + 'location' => 'query', |
|
| 248 | + 'type' => 'integer', |
|
| 249 | + ), |
|
| 250 | + ), |
|
| 251 | + ),'patch' => array( |
|
| 252 | + 'path' => 'b/{bucket}', |
|
| 253 | + 'httpMethod' => 'PATCH', |
|
| 254 | + 'parameters' => array( |
|
| 255 | + 'bucket' => array( |
|
| 256 | + 'location' => 'path', |
|
| 257 | + 'type' => 'string', |
|
| 258 | + 'required' => true, |
|
| 259 | + ), |
|
| 260 | + 'projection' => array( |
|
| 261 | + 'location' => 'query', |
|
| 262 | + 'type' => 'string', |
|
| 263 | + ), |
|
| 264 | + 'ifMetagenerationMatch' => array( |
|
| 265 | + 'location' => 'query', |
|
| 266 | + 'type' => 'string', |
|
| 267 | + ), |
|
| 268 | + 'predefinedDefaultObjectAcl' => array( |
|
| 269 | + 'location' => 'query', |
|
| 270 | + 'type' => 'string', |
|
| 271 | + ), |
|
| 272 | + 'predefinedAcl' => array( |
|
| 273 | + 'location' => 'query', |
|
| 274 | + 'type' => 'string', |
|
| 275 | + ), |
|
| 276 | + 'ifMetagenerationNotMatch' => array( |
|
| 277 | + 'location' => 'query', |
|
| 278 | + 'type' => 'string', |
|
| 279 | + ), |
|
| 280 | + ), |
|
| 281 | + ),'update' => array( |
|
| 282 | + 'path' => 'b/{bucket}', |
|
| 283 | + 'httpMethod' => 'PUT', |
|
| 284 | + 'parameters' => array( |
|
| 285 | + 'bucket' => array( |
|
| 286 | + 'location' => 'path', |
|
| 287 | + 'type' => 'string', |
|
| 288 | + 'required' => true, |
|
| 289 | + ), |
|
| 290 | + 'projection' => array( |
|
| 291 | + 'location' => 'query', |
|
| 292 | + 'type' => 'string', |
|
| 293 | + ), |
|
| 294 | + 'ifMetagenerationMatch' => array( |
|
| 295 | + 'location' => 'query', |
|
| 296 | + 'type' => 'string', |
|
| 297 | + ), |
|
| 298 | + 'predefinedDefaultObjectAcl' => array( |
|
| 299 | + 'location' => 'query', |
|
| 300 | + 'type' => 'string', |
|
| 301 | + ), |
|
| 302 | + 'predefinedAcl' => array( |
|
| 303 | + 'location' => 'query', |
|
| 304 | + 'type' => 'string', |
|
| 305 | + ), |
|
| 306 | + 'ifMetagenerationNotMatch' => array( |
|
| 307 | + 'location' => 'query', |
|
| 308 | + 'type' => 'string', |
|
| 309 | + ), |
|
| 310 | + ), |
|
| 311 | + ), |
|
| 312 | + ) |
|
| 313 | + ) |
|
| 314 | + ); |
|
| 315 | + $this->channels = new Google_Service_Storage_Channels_Resource( |
|
| 316 | + $this, |
|
| 317 | + $this->serviceName, |
|
| 318 | + 'channels', |
|
| 319 | + array( |
|
| 320 | + 'methods' => array( |
|
| 321 | + 'stop' => array( |
|
| 322 | + 'path' => 'channels/stop', |
|
| 323 | + 'httpMethod' => 'POST', |
|
| 324 | + 'parameters' => array(), |
|
| 325 | + ), |
|
| 326 | + ) |
|
| 327 | + ) |
|
| 328 | + ); |
|
| 329 | + $this->defaultObjectAccessControls = new Google_Service_Storage_DefaultObjectAccessControls_Resource( |
|
| 330 | + $this, |
|
| 331 | + $this->serviceName, |
|
| 332 | + 'defaultObjectAccessControls', |
|
| 333 | + array( |
|
| 334 | + 'methods' => array( |
|
| 335 | + 'delete' => array( |
|
| 336 | + 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 337 | + 'httpMethod' => 'DELETE', |
|
| 338 | + 'parameters' => array( |
|
| 339 | + 'bucket' => array( |
|
| 340 | + 'location' => 'path', |
|
| 341 | + 'type' => 'string', |
|
| 342 | + 'required' => true, |
|
| 343 | + ), |
|
| 344 | + 'entity' => array( |
|
| 345 | + 'location' => 'path', |
|
| 346 | + 'type' => 'string', |
|
| 347 | + 'required' => true, |
|
| 348 | + ), |
|
| 349 | + ), |
|
| 350 | + ),'get' => array( |
|
| 351 | + 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 352 | + 'httpMethod' => 'GET', |
|
| 353 | + 'parameters' => array( |
|
| 354 | + 'bucket' => array( |
|
| 355 | + 'location' => 'path', |
|
| 356 | + 'type' => 'string', |
|
| 357 | + 'required' => true, |
|
| 358 | + ), |
|
| 359 | + 'entity' => array( |
|
| 360 | + 'location' => 'path', |
|
| 361 | + 'type' => 'string', |
|
| 362 | + 'required' => true, |
|
| 363 | + ), |
|
| 364 | + ), |
|
| 365 | + ),'insert' => array( |
|
| 366 | + 'path' => 'b/{bucket}/defaultObjectAcl', |
|
| 367 | + 'httpMethod' => 'POST', |
|
| 368 | + 'parameters' => array( |
|
| 369 | + 'bucket' => array( |
|
| 370 | + 'location' => 'path', |
|
| 371 | + 'type' => 'string', |
|
| 372 | + 'required' => true, |
|
| 373 | + ), |
|
| 374 | + ), |
|
| 375 | + ),'list' => array( |
|
| 376 | + 'path' => 'b/{bucket}/defaultObjectAcl', |
|
| 377 | + 'httpMethod' => 'GET', |
|
| 378 | + 'parameters' => array( |
|
| 379 | + 'bucket' => array( |
|
| 380 | + 'location' => 'path', |
|
| 381 | + 'type' => 'string', |
|
| 382 | + 'required' => true, |
|
| 383 | + ), |
|
| 384 | + 'ifMetagenerationMatch' => array( |
|
| 385 | + 'location' => 'query', |
|
| 386 | + 'type' => 'string', |
|
| 387 | + ), |
|
| 388 | + 'ifMetagenerationNotMatch' => array( |
|
| 389 | + 'location' => 'query', |
|
| 390 | + 'type' => 'string', |
|
| 391 | + ), |
|
| 392 | + ), |
|
| 393 | + ),'patch' => array( |
|
| 394 | + 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 395 | + 'httpMethod' => 'PATCH', |
|
| 396 | + 'parameters' => array( |
|
| 397 | + 'bucket' => array( |
|
| 398 | + 'location' => 'path', |
|
| 399 | + 'type' => 'string', |
|
| 400 | + 'required' => true, |
|
| 401 | + ), |
|
| 402 | + 'entity' => array( |
|
| 403 | + 'location' => 'path', |
|
| 404 | + 'type' => 'string', |
|
| 405 | + 'required' => true, |
|
| 406 | + ), |
|
| 407 | + ), |
|
| 408 | + ),'update' => array( |
|
| 409 | + 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
|
| 410 | + 'httpMethod' => 'PUT', |
|
| 411 | + 'parameters' => array( |
|
| 412 | + 'bucket' => array( |
|
| 413 | + 'location' => 'path', |
|
| 414 | + 'type' => 'string', |
|
| 415 | + 'required' => true, |
|
| 416 | + ), |
|
| 417 | + 'entity' => array( |
|
| 418 | + 'location' => 'path', |
|
| 419 | + 'type' => 'string', |
|
| 420 | + 'required' => true, |
|
| 421 | + ), |
|
| 422 | + ), |
|
| 423 | + ), |
|
| 424 | + ) |
|
| 425 | + ) |
|
| 426 | + ); |
|
| 427 | + $this->objectAccessControls = new Google_Service_Storage_ObjectAccessControls_Resource( |
|
| 428 | + $this, |
|
| 429 | + $this->serviceName, |
|
| 430 | + 'objectAccessControls', |
|
| 431 | + array( |
|
| 432 | + 'methods' => array( |
|
| 433 | + 'delete' => array( |
|
| 434 | + 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 435 | + 'httpMethod' => 'DELETE', |
|
| 436 | + 'parameters' => array( |
|
| 437 | + 'bucket' => array( |
|
| 438 | + 'location' => 'path', |
|
| 439 | + 'type' => 'string', |
|
| 440 | + 'required' => true, |
|
| 441 | + ), |
|
| 442 | + 'object' => array( |
|
| 443 | + 'location' => 'path', |
|
| 444 | + 'type' => 'string', |
|
| 445 | + 'required' => true, |
|
| 446 | + ), |
|
| 447 | + 'entity' => array( |
|
| 448 | + 'location' => 'path', |
|
| 449 | + 'type' => 'string', |
|
| 450 | + 'required' => true, |
|
| 451 | + ), |
|
| 452 | + 'generation' => array( |
|
| 453 | + 'location' => 'query', |
|
| 454 | + 'type' => 'string', |
|
| 455 | + ), |
|
| 456 | + ), |
|
| 457 | + ),'get' => array( |
|
| 458 | + 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 459 | + 'httpMethod' => 'GET', |
|
| 460 | + 'parameters' => array( |
|
| 461 | + 'bucket' => array( |
|
| 462 | + 'location' => 'path', |
|
| 463 | + 'type' => 'string', |
|
| 464 | + 'required' => true, |
|
| 465 | + ), |
|
| 466 | + 'object' => array( |
|
| 467 | + 'location' => 'path', |
|
| 468 | + 'type' => 'string', |
|
| 469 | + 'required' => true, |
|
| 470 | + ), |
|
| 471 | + 'entity' => array( |
|
| 472 | + 'location' => 'path', |
|
| 473 | + 'type' => 'string', |
|
| 474 | + 'required' => true, |
|
| 475 | + ), |
|
| 476 | + 'generation' => array( |
|
| 477 | + 'location' => 'query', |
|
| 478 | + 'type' => 'string', |
|
| 479 | + ), |
|
| 480 | + ), |
|
| 481 | + ),'insert' => array( |
|
| 482 | + 'path' => 'b/{bucket}/o/{object}/acl', |
|
| 483 | + 'httpMethod' => 'POST', |
|
| 484 | + 'parameters' => array( |
|
| 485 | + 'bucket' => array( |
|
| 486 | + 'location' => 'path', |
|
| 487 | + 'type' => 'string', |
|
| 488 | + 'required' => true, |
|
| 489 | + ), |
|
| 490 | + 'object' => array( |
|
| 491 | + 'location' => 'path', |
|
| 492 | + 'type' => 'string', |
|
| 493 | + 'required' => true, |
|
| 494 | + ), |
|
| 495 | + 'generation' => array( |
|
| 496 | + 'location' => 'query', |
|
| 497 | + 'type' => 'string', |
|
| 498 | + ), |
|
| 499 | + ), |
|
| 500 | + ),'list' => array( |
|
| 501 | + 'path' => 'b/{bucket}/o/{object}/acl', |
|
| 502 | + 'httpMethod' => 'GET', |
|
| 503 | + 'parameters' => array( |
|
| 504 | + 'bucket' => array( |
|
| 505 | + 'location' => 'path', |
|
| 506 | + 'type' => 'string', |
|
| 507 | + 'required' => true, |
|
| 508 | + ), |
|
| 509 | + 'object' => array( |
|
| 510 | + 'location' => 'path', |
|
| 511 | + 'type' => 'string', |
|
| 512 | + 'required' => true, |
|
| 513 | + ), |
|
| 514 | + 'generation' => array( |
|
| 515 | + 'location' => 'query', |
|
| 516 | + 'type' => 'string', |
|
| 517 | + ), |
|
| 518 | + ), |
|
| 519 | + ),'patch' => array( |
|
| 520 | + 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 521 | + 'httpMethod' => 'PATCH', |
|
| 522 | + 'parameters' => array( |
|
| 523 | + 'bucket' => array( |
|
| 524 | + 'location' => 'path', |
|
| 525 | + 'type' => 'string', |
|
| 526 | + 'required' => true, |
|
| 527 | + ), |
|
| 528 | + 'object' => array( |
|
| 529 | + 'location' => 'path', |
|
| 530 | + 'type' => 'string', |
|
| 531 | + 'required' => true, |
|
| 532 | + ), |
|
| 533 | + 'entity' => array( |
|
| 534 | + 'location' => 'path', |
|
| 535 | + 'type' => 'string', |
|
| 536 | + 'required' => true, |
|
| 537 | + ), |
|
| 538 | + 'generation' => array( |
|
| 539 | + 'location' => 'query', |
|
| 540 | + 'type' => 'string', |
|
| 541 | + ), |
|
| 542 | + ), |
|
| 543 | + ),'update' => array( |
|
| 544 | + 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
|
| 545 | + 'httpMethod' => 'PUT', |
|
| 546 | + 'parameters' => array( |
|
| 547 | + 'bucket' => array( |
|
| 548 | + 'location' => 'path', |
|
| 549 | + 'type' => 'string', |
|
| 550 | + 'required' => true, |
|
| 551 | + ), |
|
| 552 | + 'object' => array( |
|
| 553 | + 'location' => 'path', |
|
| 554 | + 'type' => 'string', |
|
| 555 | + 'required' => true, |
|
| 556 | + ), |
|
| 557 | + 'entity' => array( |
|
| 558 | + 'location' => 'path', |
|
| 559 | + 'type' => 'string', |
|
| 560 | + 'required' => true, |
|
| 561 | + ), |
|
| 562 | + 'generation' => array( |
|
| 563 | + 'location' => 'query', |
|
| 564 | + 'type' => 'string', |
|
| 565 | + ), |
|
| 566 | + ), |
|
| 567 | + ), |
|
| 568 | + ) |
|
| 569 | + ) |
|
| 570 | + ); |
|
| 571 | + $this->objects = new Google_Service_Storage_Objects_Resource( |
|
| 572 | + $this, |
|
| 573 | + $this->serviceName, |
|
| 574 | + 'objects', |
|
| 575 | + array( |
|
| 576 | + 'methods' => array( |
|
| 577 | + 'compose' => array( |
|
| 578 | + 'path' => 'b/{destinationBucket}/o/{destinationObject}/compose', |
|
| 579 | + 'httpMethod' => 'POST', |
|
| 580 | + 'parameters' => array( |
|
| 581 | + 'destinationBucket' => array( |
|
| 582 | + 'location' => 'path', |
|
| 583 | + 'type' => 'string', |
|
| 584 | + 'required' => true, |
|
| 585 | + ), |
|
| 586 | + 'destinationObject' => array( |
|
| 587 | + 'location' => 'path', |
|
| 588 | + 'type' => 'string', |
|
| 589 | + 'required' => true, |
|
| 590 | + ), |
|
| 591 | + 'ifGenerationMatch' => array( |
|
| 592 | + 'location' => 'query', |
|
| 593 | + 'type' => 'string', |
|
| 594 | + ), |
|
| 595 | + 'ifMetagenerationMatch' => array( |
|
| 596 | + 'location' => 'query', |
|
| 597 | + 'type' => 'string', |
|
| 598 | + ), |
|
| 599 | + 'destinationPredefinedAcl' => array( |
|
| 600 | + 'location' => 'query', |
|
| 601 | + 'type' => 'string', |
|
| 602 | + ), |
|
| 603 | + ), |
|
| 604 | + ),'copy' => array( |
|
| 605 | + 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}', |
|
| 606 | + 'httpMethod' => 'POST', |
|
| 607 | + 'parameters' => array( |
|
| 608 | + 'sourceBucket' => array( |
|
| 609 | + 'location' => 'path', |
|
| 610 | + 'type' => 'string', |
|
| 611 | + 'required' => true, |
|
| 612 | + ), |
|
| 613 | + 'sourceObject' => array( |
|
| 614 | + 'location' => 'path', |
|
| 615 | + 'type' => 'string', |
|
| 616 | + 'required' => true, |
|
| 617 | + ), |
|
| 618 | + 'destinationBucket' => array( |
|
| 619 | + 'location' => 'path', |
|
| 620 | + 'type' => 'string', |
|
| 621 | + 'required' => true, |
|
| 622 | + ), |
|
| 623 | + 'destinationObject' => array( |
|
| 624 | + 'location' => 'path', |
|
| 625 | + 'type' => 'string', |
|
| 626 | + 'required' => true, |
|
| 627 | + ), |
|
| 628 | + 'ifSourceGenerationNotMatch' => array( |
|
| 629 | + 'location' => 'query', |
|
| 630 | + 'type' => 'string', |
|
| 631 | + ), |
|
| 632 | + 'ifGenerationNotMatch' => array( |
|
| 633 | + 'location' => 'query', |
|
| 634 | + 'type' => 'string', |
|
| 635 | + ), |
|
| 636 | + 'ifSourceMetagenerationNotMatch' => array( |
|
| 637 | + 'location' => 'query', |
|
| 638 | + 'type' => 'string', |
|
| 639 | + ), |
|
| 640 | + 'ifMetagenerationMatch' => array( |
|
| 641 | + 'location' => 'query', |
|
| 642 | + 'type' => 'string', |
|
| 643 | + ), |
|
| 644 | + 'sourceGeneration' => array( |
|
| 645 | + 'location' => 'query', |
|
| 646 | + 'type' => 'string', |
|
| 647 | + ), |
|
| 648 | + 'destinationPredefinedAcl' => array( |
|
| 649 | + 'location' => 'query', |
|
| 650 | + 'type' => 'string', |
|
| 651 | + ), |
|
| 652 | + 'ifSourceGenerationMatch' => array( |
|
| 653 | + 'location' => 'query', |
|
| 654 | + 'type' => 'string', |
|
| 655 | + ), |
|
| 656 | + 'ifSourceMetagenerationMatch' => array( |
|
| 657 | + 'location' => 'query', |
|
| 658 | + 'type' => 'string', |
|
| 659 | + ), |
|
| 660 | + 'ifGenerationMatch' => array( |
|
| 661 | + 'location' => 'query', |
|
| 662 | + 'type' => 'string', |
|
| 663 | + ), |
|
| 664 | + 'ifMetagenerationNotMatch' => array( |
|
| 665 | + 'location' => 'query', |
|
| 666 | + 'type' => 'string', |
|
| 667 | + ), |
|
| 668 | + 'projection' => array( |
|
| 669 | + 'location' => 'query', |
|
| 670 | + 'type' => 'string', |
|
| 671 | + ), |
|
| 672 | + ), |
|
| 673 | + ),'delete' => array( |
|
| 674 | + 'path' => 'b/{bucket}/o/{object}', |
|
| 675 | + 'httpMethod' => 'DELETE', |
|
| 676 | + 'parameters' => array( |
|
| 677 | + 'bucket' => array( |
|
| 678 | + 'location' => 'path', |
|
| 679 | + 'type' => 'string', |
|
| 680 | + 'required' => true, |
|
| 681 | + ), |
|
| 682 | + 'object' => array( |
|
| 683 | + 'location' => 'path', |
|
| 684 | + 'type' => 'string', |
|
| 685 | + 'required' => true, |
|
| 686 | + ), |
|
| 687 | + 'ifGenerationNotMatch' => array( |
|
| 688 | + 'location' => 'query', |
|
| 689 | + 'type' => 'string', |
|
| 690 | + ), |
|
| 691 | + 'generation' => array( |
|
| 692 | + 'location' => 'query', |
|
| 693 | + 'type' => 'string', |
|
| 694 | + ), |
|
| 695 | + 'ifMetagenerationMatch' => array( |
|
| 696 | + 'location' => 'query', |
|
| 697 | + 'type' => 'string', |
|
| 698 | + ), |
|
| 699 | + 'ifGenerationMatch' => array( |
|
| 700 | + 'location' => 'query', |
|
| 701 | + 'type' => 'string', |
|
| 702 | + ), |
|
| 703 | + 'ifMetagenerationNotMatch' => array( |
|
| 704 | + 'location' => 'query', |
|
| 705 | + 'type' => 'string', |
|
| 706 | + ), |
|
| 707 | + ), |
|
| 708 | + ),'get' => array( |
|
| 709 | + 'path' => 'b/{bucket}/o/{object}', |
|
| 710 | + 'httpMethod' => 'GET', |
|
| 711 | + 'parameters' => array( |
|
| 712 | + 'bucket' => array( |
|
| 713 | + 'location' => 'path', |
|
| 714 | + 'type' => 'string', |
|
| 715 | + 'required' => true, |
|
| 716 | + ), |
|
| 717 | + 'object' => array( |
|
| 718 | + 'location' => 'path', |
|
| 719 | + 'type' => 'string', |
|
| 720 | + 'required' => true, |
|
| 721 | + ), |
|
| 722 | + 'ifGenerationNotMatch' => array( |
|
| 723 | + 'location' => 'query', |
|
| 724 | + 'type' => 'string', |
|
| 725 | + ), |
|
| 726 | + 'generation' => array( |
|
| 727 | + 'location' => 'query', |
|
| 728 | + 'type' => 'string', |
|
| 729 | + ), |
|
| 730 | + 'ifMetagenerationMatch' => array( |
|
| 731 | + 'location' => 'query', |
|
| 732 | + 'type' => 'string', |
|
| 733 | + ), |
|
| 734 | + 'ifGenerationMatch' => array( |
|
| 735 | + 'location' => 'query', |
|
| 736 | + 'type' => 'string', |
|
| 737 | + ), |
|
| 738 | + 'ifMetagenerationNotMatch' => array( |
|
| 739 | + 'location' => 'query', |
|
| 740 | + 'type' => 'string', |
|
| 741 | + ), |
|
| 742 | + 'projection' => array( |
|
| 743 | + 'location' => 'query', |
|
| 744 | + 'type' => 'string', |
|
| 745 | + ), |
|
| 746 | + ), |
|
| 747 | + ),'insert' => array( |
|
| 748 | + 'path' => 'b/{bucket}/o', |
|
| 749 | + 'httpMethod' => 'POST', |
|
| 750 | + 'parameters' => array( |
|
| 751 | + 'bucket' => array( |
|
| 752 | + 'location' => 'path', |
|
| 753 | + 'type' => 'string', |
|
| 754 | + 'required' => true, |
|
| 755 | + ), |
|
| 756 | + 'predefinedAcl' => array( |
|
| 757 | + 'location' => 'query', |
|
| 758 | + 'type' => 'string', |
|
| 759 | + ), |
|
| 760 | + 'projection' => array( |
|
| 761 | + 'location' => 'query', |
|
| 762 | + 'type' => 'string', |
|
| 763 | + ), |
|
| 764 | + 'ifGenerationNotMatch' => array( |
|
| 765 | + 'location' => 'query', |
|
| 766 | + 'type' => 'string', |
|
| 767 | + ), |
|
| 768 | + 'ifMetagenerationMatch' => array( |
|
| 769 | + 'location' => 'query', |
|
| 770 | + 'type' => 'string', |
|
| 771 | + ), |
|
| 772 | + 'contentEncoding' => array( |
|
| 773 | + 'location' => 'query', |
|
| 774 | + 'type' => 'string', |
|
| 775 | + ), |
|
| 776 | + 'ifGenerationMatch' => array( |
|
| 777 | + 'location' => 'query', |
|
| 778 | + 'type' => 'string', |
|
| 779 | + ), |
|
| 780 | + 'ifMetagenerationNotMatch' => array( |
|
| 781 | + 'location' => 'query', |
|
| 782 | + 'type' => 'string', |
|
| 783 | + ), |
|
| 784 | + 'name' => array( |
|
| 785 | + 'location' => 'query', |
|
| 786 | + 'type' => 'string', |
|
| 787 | + ), |
|
| 788 | + ), |
|
| 789 | + ),'list' => array( |
|
| 790 | + 'path' => 'b/{bucket}/o', |
|
| 791 | + 'httpMethod' => 'GET', |
|
| 792 | + 'parameters' => array( |
|
| 793 | + 'bucket' => array( |
|
| 794 | + 'location' => 'path', |
|
| 795 | + 'type' => 'string', |
|
| 796 | + 'required' => true, |
|
| 797 | + ), |
|
| 798 | + 'projection' => array( |
|
| 799 | + 'location' => 'query', |
|
| 800 | + 'type' => 'string', |
|
| 801 | + ), |
|
| 802 | + 'versions' => array( |
|
| 803 | + 'location' => 'query', |
|
| 804 | + 'type' => 'boolean', |
|
| 805 | + ), |
|
| 806 | + 'prefix' => array( |
|
| 807 | + 'location' => 'query', |
|
| 808 | + 'type' => 'string', |
|
| 809 | + ), |
|
| 810 | + 'maxResults' => array( |
|
| 811 | + 'location' => 'query', |
|
| 812 | + 'type' => 'integer', |
|
| 813 | + ), |
|
| 814 | + 'pageToken' => array( |
|
| 815 | + 'location' => 'query', |
|
| 816 | + 'type' => 'string', |
|
| 817 | + ), |
|
| 818 | + 'delimiter' => array( |
|
| 819 | + 'location' => 'query', |
|
| 820 | + 'type' => 'string', |
|
| 821 | + ), |
|
| 822 | + ), |
|
| 823 | + ),'patch' => array( |
|
| 824 | + 'path' => 'b/{bucket}/o/{object}', |
|
| 825 | + 'httpMethod' => 'PATCH', |
|
| 826 | + 'parameters' => array( |
|
| 827 | + 'bucket' => array( |
|
| 828 | + 'location' => 'path', |
|
| 829 | + 'type' => 'string', |
|
| 830 | + 'required' => true, |
|
| 831 | + ), |
|
| 832 | + 'object' => array( |
|
| 833 | + 'location' => 'path', |
|
| 834 | + 'type' => 'string', |
|
| 835 | + 'required' => true, |
|
| 836 | + ), |
|
| 837 | + 'predefinedAcl' => array( |
|
| 838 | + 'location' => 'query', |
|
| 839 | + 'type' => 'string', |
|
| 840 | + ), |
|
| 841 | + 'ifGenerationNotMatch' => array( |
|
| 842 | + 'location' => 'query', |
|
| 843 | + 'type' => 'string', |
|
| 844 | + ), |
|
| 845 | + 'generation' => array( |
|
| 846 | + 'location' => 'query', |
|
| 847 | + 'type' => 'string', |
|
| 848 | + ), |
|
| 849 | + 'ifMetagenerationMatch' => array( |
|
| 850 | + 'location' => 'query', |
|
| 851 | + 'type' => 'string', |
|
| 852 | + ), |
|
| 853 | + 'ifGenerationMatch' => array( |
|
| 854 | + 'location' => 'query', |
|
| 855 | + 'type' => 'string', |
|
| 856 | + ), |
|
| 857 | + 'ifMetagenerationNotMatch' => array( |
|
| 858 | + 'location' => 'query', |
|
| 859 | + 'type' => 'string', |
|
| 860 | + ), |
|
| 861 | + 'projection' => array( |
|
| 862 | + 'location' => 'query', |
|
| 863 | + 'type' => 'string', |
|
| 864 | + ), |
|
| 865 | + ), |
|
| 866 | + ),'rewrite' => array( |
|
| 867 | + 'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}', |
|
| 868 | + 'httpMethod' => 'POST', |
|
| 869 | + 'parameters' => array( |
|
| 870 | + 'sourceBucket' => array( |
|
| 871 | + 'location' => 'path', |
|
| 872 | + 'type' => 'string', |
|
| 873 | + 'required' => true, |
|
| 874 | + ), |
|
| 875 | + 'sourceObject' => array( |
|
| 876 | + 'location' => 'path', |
|
| 877 | + 'type' => 'string', |
|
| 878 | + 'required' => true, |
|
| 879 | + ), |
|
| 880 | + 'destinationBucket' => array( |
|
| 881 | + 'location' => 'path', |
|
| 882 | + 'type' => 'string', |
|
| 883 | + 'required' => true, |
|
| 884 | + ), |
|
| 885 | + 'destinationObject' => array( |
|
| 886 | + 'location' => 'path', |
|
| 887 | + 'type' => 'string', |
|
| 888 | + 'required' => true, |
|
| 889 | + ), |
|
| 890 | + 'ifSourceGenerationNotMatch' => array( |
|
| 891 | + 'location' => 'query', |
|
| 892 | + 'type' => 'string', |
|
| 893 | + ), |
|
| 894 | + 'ifGenerationNotMatch' => array( |
|
| 895 | + 'location' => 'query', |
|
| 896 | + 'type' => 'string', |
|
| 897 | + ), |
|
| 898 | + 'rewriteToken' => array( |
|
| 899 | + 'location' => 'query', |
|
| 900 | + 'type' => 'string', |
|
| 901 | + ), |
|
| 902 | + 'ifSourceMetagenerationNotMatch' => array( |
|
| 903 | + 'location' => 'query', |
|
| 904 | + 'type' => 'string', |
|
| 905 | + ), |
|
| 906 | + 'ifMetagenerationMatch' => array( |
|
| 907 | + 'location' => 'query', |
|
| 908 | + 'type' => 'string', |
|
| 909 | + ), |
|
| 910 | + 'sourceGeneration' => array( |
|
| 911 | + 'location' => 'query', |
|
| 912 | + 'type' => 'string', |
|
| 913 | + ), |
|
| 914 | + 'destinationPredefinedAcl' => array( |
|
| 915 | + 'location' => 'query', |
|
| 916 | + 'type' => 'string', |
|
| 917 | + ), |
|
| 918 | + 'ifSourceGenerationMatch' => array( |
|
| 919 | + 'location' => 'query', |
|
| 920 | + 'type' => 'string', |
|
| 921 | + ), |
|
| 922 | + 'maxBytesRewrittenPerCall' => array( |
|
| 923 | + 'location' => 'query', |
|
| 924 | + 'type' => 'string', |
|
| 925 | + ), |
|
| 926 | + 'ifSourceMetagenerationMatch' => array( |
|
| 927 | + 'location' => 'query', |
|
| 928 | + 'type' => 'string', |
|
| 929 | + ), |
|
| 930 | + 'ifGenerationMatch' => array( |
|
| 931 | + 'location' => 'query', |
|
| 932 | + 'type' => 'string', |
|
| 933 | + ), |
|
| 934 | + 'ifMetagenerationNotMatch' => array( |
|
| 935 | + 'location' => 'query', |
|
| 936 | + 'type' => 'string', |
|
| 937 | + ), |
|
| 938 | + 'projection' => array( |
|
| 939 | + 'location' => 'query', |
|
| 940 | + 'type' => 'string', |
|
| 941 | + ), |
|
| 942 | + ), |
|
| 943 | + ),'update' => array( |
|
| 944 | + 'path' => 'b/{bucket}/o/{object}', |
|
| 945 | + 'httpMethod' => 'PUT', |
|
| 946 | + 'parameters' => array( |
|
| 947 | + 'bucket' => array( |
|
| 948 | + 'location' => 'path', |
|
| 949 | + 'type' => 'string', |
|
| 950 | + 'required' => true, |
|
| 951 | + ), |
|
| 952 | + 'object' => array( |
|
| 953 | + 'location' => 'path', |
|
| 954 | + 'type' => 'string', |
|
| 955 | + 'required' => true, |
|
| 956 | + ), |
|
| 957 | + 'predefinedAcl' => array( |
|
| 958 | + 'location' => 'query', |
|
| 959 | + 'type' => 'string', |
|
| 960 | + ), |
|
| 961 | + 'ifGenerationNotMatch' => array( |
|
| 962 | + 'location' => 'query', |
|
| 963 | + 'type' => 'string', |
|
| 964 | + ), |
|
| 965 | + 'generation' => array( |
|
| 966 | + 'location' => 'query', |
|
| 967 | + 'type' => 'string', |
|
| 968 | + ), |
|
| 969 | + 'ifMetagenerationMatch' => array( |
|
| 970 | + 'location' => 'query', |
|
| 971 | + 'type' => 'string', |
|
| 972 | + ), |
|
| 973 | + 'ifGenerationMatch' => array( |
|
| 974 | + 'location' => 'query', |
|
| 975 | + 'type' => 'string', |
|
| 976 | + ), |
|
| 977 | + 'ifMetagenerationNotMatch' => array( |
|
| 978 | + 'location' => 'query', |
|
| 979 | + 'type' => 'string', |
|
| 980 | + ), |
|
| 981 | + 'projection' => array( |
|
| 982 | + 'location' => 'query', |
|
| 983 | + 'type' => 'string', |
|
| 984 | + ), |
|
| 985 | + ), |
|
| 986 | + ),'watchAll' => array( |
|
| 987 | + 'path' => 'b/{bucket}/o/watch', |
|
| 988 | + 'httpMethod' => 'POST', |
|
| 989 | + 'parameters' => array( |
|
| 990 | + 'bucket' => array( |
|
| 991 | + 'location' => 'path', |
|
| 992 | + 'type' => 'string', |
|
| 993 | + 'required' => true, |
|
| 994 | + ), |
|
| 995 | + 'projection' => array( |
|
| 996 | + 'location' => 'query', |
|
| 997 | + 'type' => 'string', |
|
| 998 | + ), |
|
| 999 | + 'versions' => array( |
|
| 1000 | + 'location' => 'query', |
|
| 1001 | + 'type' => 'boolean', |
|
| 1002 | + ), |
|
| 1003 | + 'prefix' => array( |
|
| 1004 | + 'location' => 'query', |
|
| 1005 | + 'type' => 'string', |
|
| 1006 | + ), |
|
| 1007 | + 'maxResults' => array( |
|
| 1008 | + 'location' => 'query', |
|
| 1009 | + 'type' => 'integer', |
|
| 1010 | + ), |
|
| 1011 | + 'pageToken' => array( |
|
| 1012 | + 'location' => 'query', |
|
| 1013 | + 'type' => 'string', |
|
| 1014 | + ), |
|
| 1015 | + 'delimiter' => array( |
|
| 1016 | + 'location' => 'query', |
|
| 1017 | + 'type' => 'string', |
|
| 1018 | + ), |
|
| 1019 | + ), |
|
| 1020 | + ), |
|
| 1021 | + ) |
|
| 1022 | + ) |
|
| 1023 | + ); |
|
| 1024 | 1024 | } |
| 1025 | 1025 | } |
| 1026 | 1026 | |
@@ -1048,9 +1048,9 @@ discard block |
||
| 1048 | 1048 | */ |
| 1049 | 1049 | public function delete($bucket, $entity, $optParams = array()) |
| 1050 | 1050 | { |
| 1051 | - $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1052 | - $params = array_merge($params, $optParams); |
|
| 1053 | - return $this->call('delete', array($params)); |
|
| 1051 | + $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1052 | + $params = array_merge($params, $optParams); |
|
| 1053 | + return $this->call('delete', array($params)); |
|
| 1054 | 1054 | } |
| 1055 | 1055 | |
| 1056 | 1056 | /** |
@@ -1066,9 +1066,9 @@ discard block |
||
| 1066 | 1066 | */ |
| 1067 | 1067 | public function get($bucket, $entity, $optParams = array()) |
| 1068 | 1068 | { |
| 1069 | - $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1070 | - $params = array_merge($params, $optParams); |
|
| 1071 | - return $this->call('get', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1069 | + $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1070 | + $params = array_merge($params, $optParams); |
|
| 1071 | + return $this->call('get', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1072 | 1072 | } |
| 1073 | 1073 | |
| 1074 | 1074 | /** |
@@ -1082,9 +1082,9 @@ discard block |
||
| 1082 | 1082 | */ |
| 1083 | 1083 | public function insert($bucket, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) |
| 1084 | 1084 | { |
| 1085 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1086 | - $params = array_merge($params, $optParams); |
|
| 1087 | - return $this->call('insert', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1085 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1086 | + $params = array_merge($params, $optParams); |
|
| 1087 | + return $this->call('insert', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1088 | 1088 | } |
| 1089 | 1089 | |
| 1090 | 1090 | /** |
@@ -1097,9 +1097,9 @@ discard block |
||
| 1097 | 1097 | */ |
| 1098 | 1098 | public function listBucketAccessControls($bucket, $optParams = array()) |
| 1099 | 1099 | { |
| 1100 | - $params = array('bucket' => $bucket); |
|
| 1101 | - $params = array_merge($params, $optParams); |
|
| 1102 | - return $this->call('list', array($params), "Google_Service_Storage_BucketAccessControls"); |
|
| 1100 | + $params = array('bucket' => $bucket); |
|
| 1101 | + $params = array_merge($params, $optParams); |
|
| 1102 | + return $this->call('list', array($params), "Google_Service_Storage_BucketAccessControls"); |
|
| 1103 | 1103 | } |
| 1104 | 1104 | |
| 1105 | 1105 | /** |
@@ -1116,9 +1116,9 @@ discard block |
||
| 1116 | 1116 | */ |
| 1117 | 1117 | public function patch($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) |
| 1118 | 1118 | { |
| 1119 | - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1120 | - $params = array_merge($params, $optParams); |
|
| 1121 | - return $this->call('patch', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1119 | + $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1120 | + $params = array_merge($params, $optParams); |
|
| 1121 | + return $this->call('patch', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1122 | 1122 | } |
| 1123 | 1123 | |
| 1124 | 1124 | /** |
@@ -1134,9 +1134,9 @@ discard block |
||
| 1134 | 1134 | */ |
| 1135 | 1135 | public function update($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array()) |
| 1136 | 1136 | { |
| 1137 | - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1138 | - $params = array_merge($params, $optParams); |
|
| 1139 | - return $this->call('update', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1137 | + $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1138 | + $params = array_merge($params, $optParams); |
|
| 1139 | + return $this->call('update', array($params), "Google_Service_Storage_BucketAccessControl"); |
|
| 1140 | 1140 | } |
| 1141 | 1141 | } |
| 1142 | 1142 | |
@@ -1164,9 +1164,9 @@ discard block |
||
| 1164 | 1164 | */ |
| 1165 | 1165 | public function delete($bucket, $optParams = array()) |
| 1166 | 1166 | { |
| 1167 | - $params = array('bucket' => $bucket); |
|
| 1168 | - $params = array_merge($params, $optParams); |
|
| 1169 | - return $this->call('delete', array($params)); |
|
| 1167 | + $params = array('bucket' => $bucket); |
|
| 1168 | + $params = array_merge($params, $optParams); |
|
| 1169 | + return $this->call('delete', array($params)); |
|
| 1170 | 1170 | } |
| 1171 | 1171 | |
| 1172 | 1172 | /** |
@@ -1186,9 +1186,9 @@ discard block |
||
| 1186 | 1186 | */ |
| 1187 | 1187 | public function get($bucket, $optParams = array()) |
| 1188 | 1188 | { |
| 1189 | - $params = array('bucket' => $bucket); |
|
| 1190 | - $params = array_merge($params, $optParams); |
|
| 1191 | - return $this->call('get', array($params), "Google_Service_Storage_Bucket"); |
|
| 1189 | + $params = array('bucket' => $bucket); |
|
| 1190 | + $params = array_merge($params, $optParams); |
|
| 1191 | + return $this->call('get', array($params), "Google_Service_Storage_Bucket"); |
|
| 1192 | 1192 | } |
| 1193 | 1193 | |
| 1194 | 1194 | /** |
@@ -1209,9 +1209,9 @@ discard block |
||
| 1209 | 1209 | */ |
| 1210 | 1210 | public function insert($project, Google_Service_Storage_Bucket $postBody, $optParams = array()) |
| 1211 | 1211 | { |
| 1212 | - $params = array('project' => $project, 'postBody' => $postBody); |
|
| 1213 | - $params = array_merge($params, $optParams); |
|
| 1214 | - return $this->call('insert', array($params), "Google_Service_Storage_Bucket"); |
|
| 1212 | + $params = array('project' => $project, 'postBody' => $postBody); |
|
| 1213 | + $params = array_merge($params, $optParams); |
|
| 1214 | + return $this->call('insert', array($params), "Google_Service_Storage_Bucket"); |
|
| 1215 | 1215 | } |
| 1216 | 1216 | |
| 1217 | 1217 | /** |
@@ -1230,9 +1230,9 @@ discard block |
||
| 1230 | 1230 | */ |
| 1231 | 1231 | public function listBuckets($project, $optParams = array()) |
| 1232 | 1232 | { |
| 1233 | - $params = array('project' => $project); |
|
| 1234 | - $params = array_merge($params, $optParams); |
|
| 1235 | - return $this->call('list', array($params), "Google_Service_Storage_Buckets"); |
|
| 1233 | + $params = array('project' => $project); |
|
| 1234 | + $params = array_merge($params, $optParams); |
|
| 1235 | + return $this->call('list', array($params), "Google_Service_Storage_Buckets"); |
|
| 1236 | 1236 | } |
| 1237 | 1237 | |
| 1238 | 1238 | /** |
@@ -1257,9 +1257,9 @@ discard block |
||
| 1257 | 1257 | */ |
| 1258 | 1258 | public function patch($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array()) |
| 1259 | 1259 | { |
| 1260 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1261 | - $params = array_merge($params, $optParams); |
|
| 1262 | - return $this->call('patch', array($params), "Google_Service_Storage_Bucket"); |
|
| 1260 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1261 | + $params = array_merge($params, $optParams); |
|
| 1262 | + return $this->call('patch', array($params), "Google_Service_Storage_Bucket"); |
|
| 1263 | 1263 | } |
| 1264 | 1264 | |
| 1265 | 1265 | /** |
@@ -1284,9 +1284,9 @@ discard block |
||
| 1284 | 1284 | */ |
| 1285 | 1285 | public function update($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array()) |
| 1286 | 1286 | { |
| 1287 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1288 | - $params = array_merge($params, $optParams); |
|
| 1289 | - return $this->call('update', array($params), "Google_Service_Storage_Bucket"); |
|
| 1287 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1288 | + $params = array_merge($params, $optParams); |
|
| 1289 | + return $this->call('update', array($params), "Google_Service_Storage_Bucket"); |
|
| 1290 | 1290 | } |
| 1291 | 1291 | } |
| 1292 | 1292 | |
@@ -1309,9 +1309,9 @@ discard block |
||
| 1309 | 1309 | */ |
| 1310 | 1310 | public function stop(Google_Service_Storage_Channel $postBody, $optParams = array()) |
| 1311 | 1311 | { |
| 1312 | - $params = array('postBody' => $postBody); |
|
| 1313 | - $params = array_merge($params, $optParams); |
|
| 1314 | - return $this->call('stop', array($params)); |
|
| 1312 | + $params = array('postBody' => $postBody); |
|
| 1313 | + $params = array_merge($params, $optParams); |
|
| 1314 | + return $this->call('stop', array($params)); |
|
| 1315 | 1315 | } |
| 1316 | 1316 | } |
| 1317 | 1317 | |
@@ -1338,9 +1338,9 @@ discard block |
||
| 1338 | 1338 | */ |
| 1339 | 1339 | public function delete($bucket, $entity, $optParams = array()) |
| 1340 | 1340 | { |
| 1341 | - $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1342 | - $params = array_merge($params, $optParams); |
|
| 1343 | - return $this->call('delete', array($params)); |
|
| 1341 | + $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1342 | + $params = array_merge($params, $optParams); |
|
| 1343 | + return $this->call('delete', array($params)); |
|
| 1344 | 1344 | } |
| 1345 | 1345 | |
| 1346 | 1346 | /** |
@@ -1356,9 +1356,9 @@ discard block |
||
| 1356 | 1356 | */ |
| 1357 | 1357 | public function get($bucket, $entity, $optParams = array()) |
| 1358 | 1358 | { |
| 1359 | - $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1360 | - $params = array_merge($params, $optParams); |
|
| 1361 | - return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1359 | + $params = array('bucket' => $bucket, 'entity' => $entity); |
|
| 1360 | + $params = array_merge($params, $optParams); |
|
| 1361 | + return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1362 | 1362 | } |
| 1363 | 1363 | |
| 1364 | 1364 | /** |
@@ -1372,9 +1372,9 @@ discard block |
||
| 1372 | 1372 | */ |
| 1373 | 1373 | public function insert($bucket, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1374 | 1374 | { |
| 1375 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1376 | - $params = array_merge($params, $optParams); |
|
| 1377 | - return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1375 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1376 | + $params = array_merge($params, $optParams); |
|
| 1377 | + return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1378 | 1378 | } |
| 1379 | 1379 | |
| 1380 | 1380 | /** |
@@ -1393,9 +1393,9 @@ discard block |
||
| 1393 | 1393 | */ |
| 1394 | 1394 | public function listDefaultObjectAccessControls($bucket, $optParams = array()) |
| 1395 | 1395 | { |
| 1396 | - $params = array('bucket' => $bucket); |
|
| 1397 | - $params = array_merge($params, $optParams); |
|
| 1398 | - return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); |
|
| 1396 | + $params = array('bucket' => $bucket); |
|
| 1397 | + $params = array_merge($params, $optParams); |
|
| 1398 | + return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); |
|
| 1399 | 1399 | } |
| 1400 | 1400 | |
| 1401 | 1401 | /** |
@@ -1412,9 +1412,9 @@ discard block |
||
| 1412 | 1412 | */ |
| 1413 | 1413 | public function patch($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1414 | 1414 | { |
| 1415 | - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1416 | - $params = array_merge($params, $optParams); |
|
| 1417 | - return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1415 | + $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1416 | + $params = array_merge($params, $optParams); |
|
| 1417 | + return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1418 | 1418 | } |
| 1419 | 1419 | |
| 1420 | 1420 | /** |
@@ -1431,9 +1431,9 @@ discard block |
||
| 1431 | 1431 | */ |
| 1432 | 1432 | public function update($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1433 | 1433 | { |
| 1434 | - $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1435 | - $params = array_merge($params, $optParams); |
|
| 1436 | - return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1434 | + $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1435 | + $params = array_merge($params, $optParams); |
|
| 1436 | + return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1437 | 1437 | } |
| 1438 | 1438 | } |
| 1439 | 1439 | |
@@ -1464,9 +1464,9 @@ discard block |
||
| 1464 | 1464 | */ |
| 1465 | 1465 | public function delete($bucket, $object, $entity, $optParams = array()) |
| 1466 | 1466 | { |
| 1467 | - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); |
|
| 1468 | - $params = array_merge($params, $optParams); |
|
| 1469 | - return $this->call('delete', array($params)); |
|
| 1467 | + $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); |
|
| 1468 | + $params = array_merge($params, $optParams); |
|
| 1469 | + return $this->call('delete', array($params)); |
|
| 1470 | 1470 | } |
| 1471 | 1471 | |
| 1472 | 1472 | /** |
@@ -1486,9 +1486,9 @@ discard block |
||
| 1486 | 1486 | */ |
| 1487 | 1487 | public function get($bucket, $object, $entity, $optParams = array()) |
| 1488 | 1488 | { |
| 1489 | - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); |
|
| 1490 | - $params = array_merge($params, $optParams); |
|
| 1491 | - return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1489 | + $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity); |
|
| 1490 | + $params = array_merge($params, $optParams); |
|
| 1491 | + return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1492 | 1492 | } |
| 1493 | 1493 | |
| 1494 | 1494 | /** |
@@ -1506,9 +1506,9 @@ discard block |
||
| 1506 | 1506 | */ |
| 1507 | 1507 | public function insert($bucket, $object, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1508 | 1508 | { |
| 1509 | - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1510 | - $params = array_merge($params, $optParams); |
|
| 1511 | - return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1509 | + $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1510 | + $params = array_merge($params, $optParams); |
|
| 1511 | + return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1512 | 1512 | } |
| 1513 | 1513 | |
| 1514 | 1514 | /** |
@@ -1525,9 +1525,9 @@ discard block |
||
| 1525 | 1525 | */ |
| 1526 | 1526 | public function listObjectAccessControls($bucket, $object, $optParams = array()) |
| 1527 | 1527 | { |
| 1528 | - $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1529 | - $params = array_merge($params, $optParams); |
|
| 1530 | - return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); |
|
| 1528 | + $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1529 | + $params = array_merge($params, $optParams); |
|
| 1530 | + return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls"); |
|
| 1531 | 1531 | } |
| 1532 | 1532 | |
| 1533 | 1533 | /** |
@@ -1548,9 +1548,9 @@ discard block |
||
| 1548 | 1548 | */ |
| 1549 | 1549 | public function patch($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1550 | 1550 | { |
| 1551 | - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1552 | - $params = array_merge($params, $optParams); |
|
| 1553 | - return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1551 | + $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1552 | + $params = array_merge($params, $optParams); |
|
| 1553 | + return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1554 | 1554 | } |
| 1555 | 1555 | |
| 1556 | 1556 | /** |
@@ -1570,9 +1570,9 @@ discard block |
||
| 1570 | 1570 | */ |
| 1571 | 1571 | public function update($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array()) |
| 1572 | 1572 | { |
| 1573 | - $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1574 | - $params = array_merge($params, $optParams); |
|
| 1575 | - return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1573 | + $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody); |
|
| 1574 | + $params = array_merge($params, $optParams); |
|
| 1575 | + return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl"); |
|
| 1576 | 1576 | } |
| 1577 | 1577 | } |
| 1578 | 1578 | |
@@ -1607,9 +1607,9 @@ discard block |
||
| 1607 | 1607 | */ |
| 1608 | 1608 | public function compose($destinationBucket, $destinationObject, Google_Service_Storage_ComposeRequest $postBody, $optParams = array()) |
| 1609 | 1609 | { |
| 1610 | - $params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1611 | - $params = array_merge($params, $optParams); |
|
| 1612 | - return $this->call('compose', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1610 | + $params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1611 | + $params = array_merge($params, $optParams); |
|
| 1612 | + return $this->call('compose', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1613 | 1613 | } |
| 1614 | 1614 | |
| 1615 | 1615 | /** |
@@ -1659,9 +1659,9 @@ discard block |
||
| 1659 | 1659 | */ |
| 1660 | 1660 | public function copy($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array()) |
| 1661 | 1661 | { |
| 1662 | - $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1663 | - $params = array_merge($params, $optParams); |
|
| 1664 | - return $this->call('copy', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1662 | + $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1663 | + $params = array_merge($params, $optParams); |
|
| 1664 | + return $this->call('copy', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1665 | 1665 | } |
| 1666 | 1666 | |
| 1667 | 1667 | /** |
@@ -1686,9 +1686,9 @@ discard block |
||
| 1686 | 1686 | */ |
| 1687 | 1687 | public function delete($bucket, $object, $optParams = array()) |
| 1688 | 1688 | { |
| 1689 | - $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1690 | - $params = array_merge($params, $optParams); |
|
| 1691 | - return $this->call('delete', array($params)); |
|
| 1689 | + $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1690 | + $params = array_merge($params, $optParams); |
|
| 1691 | + return $this->call('delete', array($params)); |
|
| 1692 | 1692 | } |
| 1693 | 1693 | |
| 1694 | 1694 | /** |
@@ -1713,9 +1713,9 @@ discard block |
||
| 1713 | 1713 | */ |
| 1714 | 1714 | public function get($bucket, $object, $optParams = array()) |
| 1715 | 1715 | { |
| 1716 | - $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1717 | - $params = array_merge($params, $optParams); |
|
| 1718 | - return $this->call('get', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1716 | + $params = array('bucket' => $bucket, 'object' => $object); |
|
| 1717 | + $params = array_merge($params, $optParams); |
|
| 1718 | + return $this->call('get', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1719 | 1719 | } |
| 1720 | 1720 | |
| 1721 | 1721 | /** |
@@ -1751,9 +1751,9 @@ discard block |
||
| 1751 | 1751 | */ |
| 1752 | 1752 | public function insert($bucket, Google_Service_Storage_StorageObject $postBody, $optParams = array()) |
| 1753 | 1753 | { |
| 1754 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1755 | - $params = array_merge($params, $optParams); |
|
| 1756 | - return $this->call('insert', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1754 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1755 | + $params = array_merge($params, $optParams); |
|
| 1756 | + return $this->call('insert', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1757 | 1757 | } |
| 1758 | 1758 | |
| 1759 | 1759 | /** |
@@ -1781,9 +1781,9 @@ discard block |
||
| 1781 | 1781 | */ |
| 1782 | 1782 | public function listObjects($bucket, $optParams = array()) |
| 1783 | 1783 | { |
| 1784 | - $params = array('bucket' => $bucket); |
|
| 1785 | - $params = array_merge($params, $optParams); |
|
| 1786 | - return $this->call('list', array($params), "Google_Service_Storage_Objects"); |
|
| 1784 | + $params = array('bucket' => $bucket); |
|
| 1785 | + $params = array_merge($params, $optParams); |
|
| 1786 | + return $this->call('list', array($params), "Google_Service_Storage_Objects"); |
|
| 1787 | 1787 | } |
| 1788 | 1788 | |
| 1789 | 1789 | /** |
@@ -1812,9 +1812,9 @@ discard block |
||
| 1812 | 1812 | */ |
| 1813 | 1813 | public function patch($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array()) |
| 1814 | 1814 | { |
| 1815 | - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1816 | - $params = array_merge($params, $optParams); |
|
| 1817 | - return $this->call('patch', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1815 | + $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1816 | + $params = array_merge($params, $optParams); |
|
| 1817 | + return $this->call('patch', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1818 | 1818 | } |
| 1819 | 1819 | |
| 1820 | 1820 | /** |
@@ -1876,9 +1876,9 @@ discard block |
||
| 1876 | 1876 | */ |
| 1877 | 1877 | public function rewrite($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array()) |
| 1878 | 1878 | { |
| 1879 | - $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1880 | - $params = array_merge($params, $optParams); |
|
| 1881 | - return $this->call('rewrite', array($params), "Google_Service_Storage_RewriteResponse"); |
|
| 1879 | + $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody); |
|
| 1880 | + $params = array_merge($params, $optParams); |
|
| 1881 | + return $this->call('rewrite', array($params), "Google_Service_Storage_RewriteResponse"); |
|
| 1882 | 1882 | } |
| 1883 | 1883 | |
| 1884 | 1884 | /** |
@@ -1906,9 +1906,9 @@ discard block |
||
| 1906 | 1906 | */ |
| 1907 | 1907 | public function update($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array()) |
| 1908 | 1908 | { |
| 1909 | - $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1910 | - $params = array_merge($params, $optParams); |
|
| 1911 | - return $this->call('update', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1909 | + $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody); |
|
| 1910 | + $params = array_merge($params, $optParams); |
|
| 1911 | + return $this->call('update', array($params), "Google_Service_Storage_StorageObject"); |
|
| 1912 | 1912 | } |
| 1913 | 1913 | |
| 1914 | 1914 | /** |
@@ -1937,9 +1937,9 @@ discard block |
||
| 1937 | 1937 | */ |
| 1938 | 1938 | public function watchAll($bucket, Google_Service_Storage_Channel $postBody, $optParams = array()) |
| 1939 | 1939 | { |
| 1940 | - $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1941 | - $params = array_merge($params, $optParams); |
|
| 1942 | - return $this->call('watchAll', array($params), "Google_Service_Storage_Channel"); |
|
| 1940 | + $params = array('bucket' => $bucket, 'postBody' => $postBody); |
|
| 1941 | + $params = array_merge($params, $optParams); |
|
| 1942 | + return $this->call('watchAll', array($params), "Google_Service_Storage_Channel"); |
|
| 1943 | 1943 | } |
| 1944 | 1944 | } |
| 1945 | 1945 | |
@@ -1981,147 +1981,147 @@ discard block |
||
| 1981 | 1981 | |
| 1982 | 1982 | public function setAcl($acl) |
| 1983 | 1983 | { |
| 1984 | - $this->acl = $acl; |
|
| 1984 | + $this->acl = $acl; |
|
| 1985 | 1985 | } |
| 1986 | 1986 | public function getAcl() |
| 1987 | 1987 | { |
| 1988 | - return $this->acl; |
|
| 1988 | + return $this->acl; |
|
| 1989 | 1989 | } |
| 1990 | 1990 | public function setCors($cors) |
| 1991 | 1991 | { |
| 1992 | - $this->cors = $cors; |
|
| 1992 | + $this->cors = $cors; |
|
| 1993 | 1993 | } |
| 1994 | 1994 | public function getCors() |
| 1995 | 1995 | { |
| 1996 | - return $this->cors; |
|
| 1996 | + return $this->cors; |
|
| 1997 | 1997 | } |
| 1998 | 1998 | public function setDefaultObjectAcl($defaultObjectAcl) |
| 1999 | 1999 | { |
| 2000 | - $this->defaultObjectAcl = $defaultObjectAcl; |
|
| 2000 | + $this->defaultObjectAcl = $defaultObjectAcl; |
|
| 2001 | 2001 | } |
| 2002 | 2002 | public function getDefaultObjectAcl() |
| 2003 | 2003 | { |
| 2004 | - return $this->defaultObjectAcl; |
|
| 2004 | + return $this->defaultObjectAcl; |
|
| 2005 | 2005 | } |
| 2006 | 2006 | public function setEtag($etag) |
| 2007 | 2007 | { |
| 2008 | - $this->etag = $etag; |
|
| 2008 | + $this->etag = $etag; |
|
| 2009 | 2009 | } |
| 2010 | 2010 | public function getEtag() |
| 2011 | 2011 | { |
| 2012 | - return $this->etag; |
|
| 2012 | + return $this->etag; |
|
| 2013 | 2013 | } |
| 2014 | 2014 | public function setId($id) |
| 2015 | 2015 | { |
| 2016 | - $this->id = $id; |
|
| 2016 | + $this->id = $id; |
|
| 2017 | 2017 | } |
| 2018 | 2018 | public function getId() |
| 2019 | 2019 | { |
| 2020 | - return $this->id; |
|
| 2020 | + return $this->id; |
|
| 2021 | 2021 | } |
| 2022 | 2022 | public function setKind($kind) |
| 2023 | 2023 | { |
| 2024 | - $this->kind = $kind; |
|
| 2024 | + $this->kind = $kind; |
|
| 2025 | 2025 | } |
| 2026 | 2026 | public function getKind() |
| 2027 | 2027 | { |
| 2028 | - return $this->kind; |
|
| 2028 | + return $this->kind; |
|
| 2029 | 2029 | } |
| 2030 | 2030 | public function setLifecycle(Google_Service_Storage_BucketLifecycle $lifecycle) |
| 2031 | 2031 | { |
| 2032 | - $this->lifecycle = $lifecycle; |
|
| 2032 | + $this->lifecycle = $lifecycle; |
|
| 2033 | 2033 | } |
| 2034 | 2034 | public function getLifecycle() |
| 2035 | 2035 | { |
| 2036 | - return $this->lifecycle; |
|
| 2036 | + return $this->lifecycle; |
|
| 2037 | 2037 | } |
| 2038 | 2038 | public function setLocation($location) |
| 2039 | 2039 | { |
| 2040 | - $this->location = $location; |
|
| 2040 | + $this->location = $location; |
|
| 2041 | 2041 | } |
| 2042 | 2042 | public function getLocation() |
| 2043 | 2043 | { |
| 2044 | - return $this->location; |
|
| 2044 | + return $this->location; |
|
| 2045 | 2045 | } |
| 2046 | 2046 | public function setLogging(Google_Service_Storage_BucketLogging $logging) |
| 2047 | 2047 | { |
| 2048 | - $this->logging = $logging; |
|
| 2048 | + $this->logging = $logging; |
|
| 2049 | 2049 | } |
| 2050 | 2050 | public function getLogging() |
| 2051 | 2051 | { |
| 2052 | - return $this->logging; |
|
| 2052 | + return $this->logging; |
|
| 2053 | 2053 | } |
| 2054 | 2054 | public function setMetageneration($metageneration) |
| 2055 | 2055 | { |
| 2056 | - $this->metageneration = $metageneration; |
|
| 2056 | + $this->metageneration = $metageneration; |
|
| 2057 | 2057 | } |
| 2058 | 2058 | public function getMetageneration() |
| 2059 | 2059 | { |
| 2060 | - return $this->metageneration; |
|
| 2060 | + return $this->metageneration; |
|
| 2061 | 2061 | } |
| 2062 | 2062 | public function setName($name) |
| 2063 | 2063 | { |
| 2064 | - $this->name = $name; |
|
| 2064 | + $this->name = $name; |
|
| 2065 | 2065 | } |
| 2066 | 2066 | public function getName() |
| 2067 | 2067 | { |
| 2068 | - return $this->name; |
|
| 2068 | + return $this->name; |
|
| 2069 | 2069 | } |
| 2070 | 2070 | public function setOwner(Google_Service_Storage_BucketOwner $owner) |
| 2071 | 2071 | { |
| 2072 | - $this->owner = $owner; |
|
| 2072 | + $this->owner = $owner; |
|
| 2073 | 2073 | } |
| 2074 | 2074 | public function getOwner() |
| 2075 | 2075 | { |
| 2076 | - return $this->owner; |
|
| 2076 | + return $this->owner; |
|
| 2077 | 2077 | } |
| 2078 | 2078 | public function setProjectNumber($projectNumber) |
| 2079 | 2079 | { |
| 2080 | - $this->projectNumber = $projectNumber; |
|
| 2080 | + $this->projectNumber = $projectNumber; |
|
| 2081 | 2081 | } |
| 2082 | 2082 | public function getProjectNumber() |
| 2083 | 2083 | { |
| 2084 | - return $this->projectNumber; |
|
| 2084 | + return $this->projectNumber; |
|
| 2085 | 2085 | } |
| 2086 | 2086 | public function setSelfLink($selfLink) |
| 2087 | 2087 | { |
| 2088 | - $this->selfLink = $selfLink; |
|
| 2088 | + $this->selfLink = $selfLink; |
|
| 2089 | 2089 | } |
| 2090 | 2090 | public function getSelfLink() |
| 2091 | 2091 | { |
| 2092 | - return $this->selfLink; |
|
| 2092 | + return $this->selfLink; |
|
| 2093 | 2093 | } |
| 2094 | 2094 | public function setStorageClass($storageClass) |
| 2095 | 2095 | { |
| 2096 | - $this->storageClass = $storageClass; |
|
| 2096 | + $this->storageClass = $storageClass; |
|
| 2097 | 2097 | } |
| 2098 | 2098 | public function getStorageClass() |
| 2099 | 2099 | { |
| 2100 | - return $this->storageClass; |
|
| 2100 | + return $this->storageClass; |
|
| 2101 | 2101 | } |
| 2102 | 2102 | public function setTimeCreated($timeCreated) |
| 2103 | 2103 | { |
| 2104 | - $this->timeCreated = $timeCreated; |
|
| 2104 | + $this->timeCreated = $timeCreated; |
|
| 2105 | 2105 | } |
| 2106 | 2106 | public function getTimeCreated() |
| 2107 | 2107 | { |
| 2108 | - return $this->timeCreated; |
|
| 2108 | + return $this->timeCreated; |
|
| 2109 | 2109 | } |
| 2110 | 2110 | public function setVersioning(Google_Service_Storage_BucketVersioning $versioning) |
| 2111 | 2111 | { |
| 2112 | - $this->versioning = $versioning; |
|
| 2112 | + $this->versioning = $versioning; |
|
| 2113 | 2113 | } |
| 2114 | 2114 | public function getVersioning() |
| 2115 | 2115 | { |
| 2116 | - return $this->versioning; |
|
| 2116 | + return $this->versioning; |
|
| 2117 | 2117 | } |
| 2118 | 2118 | public function setWebsite(Google_Service_Storage_BucketWebsite $website) |
| 2119 | 2119 | { |
| 2120 | - $this->website = $website; |
|
| 2120 | + $this->website = $website; |
|
| 2121 | 2121 | } |
| 2122 | 2122 | public function getWebsite() |
| 2123 | 2123 | { |
| 2124 | - return $this->website; |
|
| 2124 | + return $this->website; |
|
| 2125 | 2125 | } |
| 2126 | 2126 | } |
| 2127 | 2127 | |
@@ -2145,91 +2145,91 @@ discard block |
||
| 2145 | 2145 | |
| 2146 | 2146 | public function setBucket($bucket) |
| 2147 | 2147 | { |
| 2148 | - $this->bucket = $bucket; |
|
| 2148 | + $this->bucket = $bucket; |
|
| 2149 | 2149 | } |
| 2150 | 2150 | public function getBucket() |
| 2151 | 2151 | { |
| 2152 | - return $this->bucket; |
|
| 2152 | + return $this->bucket; |
|
| 2153 | 2153 | } |
| 2154 | 2154 | public function setDomain($domain) |
| 2155 | 2155 | { |
| 2156 | - $this->domain = $domain; |
|
| 2156 | + $this->domain = $domain; |
|
| 2157 | 2157 | } |
| 2158 | 2158 | public function getDomain() |
| 2159 | 2159 | { |
| 2160 | - return $this->domain; |
|
| 2160 | + return $this->domain; |
|
| 2161 | 2161 | } |
| 2162 | 2162 | public function setEmail($email) |
| 2163 | 2163 | { |
| 2164 | - $this->email = $email; |
|
| 2164 | + $this->email = $email; |
|
| 2165 | 2165 | } |
| 2166 | 2166 | public function getEmail() |
| 2167 | 2167 | { |
| 2168 | - return $this->email; |
|
| 2168 | + return $this->email; |
|
| 2169 | 2169 | } |
| 2170 | 2170 | public function setEntity($entity) |
| 2171 | 2171 | { |
| 2172 | - $this->entity = $entity; |
|
| 2172 | + $this->entity = $entity; |
|
| 2173 | 2173 | } |
| 2174 | 2174 | public function getEntity() |
| 2175 | 2175 | { |
| 2176 | - return $this->entity; |
|
| 2176 | + return $this->entity; |
|
| 2177 | 2177 | } |
| 2178 | 2178 | public function setEntityId($entityId) |
| 2179 | 2179 | { |
| 2180 | - $this->entityId = $entityId; |
|
| 2180 | + $this->entityId = $entityId; |
|
| 2181 | 2181 | } |
| 2182 | 2182 | public function getEntityId() |
| 2183 | 2183 | { |
| 2184 | - return $this->entityId; |
|
| 2184 | + return $this->entityId; |
|
| 2185 | 2185 | } |
| 2186 | 2186 | public function setEtag($etag) |
| 2187 | 2187 | { |
| 2188 | - $this->etag = $etag; |
|
| 2188 | + $this->etag = $etag; |
|
| 2189 | 2189 | } |
| 2190 | 2190 | public function getEtag() |
| 2191 | 2191 | { |
| 2192 | - return $this->etag; |
|
| 2192 | + return $this->etag; |
|
| 2193 | 2193 | } |
| 2194 | 2194 | public function setId($id) |
| 2195 | 2195 | { |
| 2196 | - $this->id = $id; |
|
| 2196 | + $this->id = $id; |
|
| 2197 | 2197 | } |
| 2198 | 2198 | public function getId() |
| 2199 | 2199 | { |
| 2200 | - return $this->id; |
|
| 2200 | + return $this->id; |
|
| 2201 | 2201 | } |
| 2202 | 2202 | public function setKind($kind) |
| 2203 | 2203 | { |
| 2204 | - $this->kind = $kind; |
|
| 2204 | + $this->kind = $kind; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | public function getKind() |
| 2207 | 2207 | { |
| 2208 | - return $this->kind; |
|
| 2208 | + return $this->kind; |
|
| 2209 | 2209 | } |
| 2210 | 2210 | public function setProjectTeam(Google_Service_Storage_BucketAccessControlProjectTeam $projectTeam) |
| 2211 | 2211 | { |
| 2212 | - $this->projectTeam = $projectTeam; |
|
| 2212 | + $this->projectTeam = $projectTeam; |
|
| 2213 | 2213 | } |
| 2214 | 2214 | public function getProjectTeam() |
| 2215 | 2215 | { |
| 2216 | - return $this->projectTeam; |
|
| 2216 | + return $this->projectTeam; |
|
| 2217 | 2217 | } |
| 2218 | 2218 | public function setRole($role) |
| 2219 | 2219 | { |
| 2220 | - $this->role = $role; |
|
| 2220 | + $this->role = $role; |
|
| 2221 | 2221 | } |
| 2222 | 2222 | public function getRole() |
| 2223 | 2223 | { |
| 2224 | - return $this->role; |
|
| 2224 | + return $this->role; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | public function setSelfLink($selfLink) |
| 2227 | 2227 | { |
| 2228 | - $this->selfLink = $selfLink; |
|
| 2228 | + $this->selfLink = $selfLink; |
|
| 2229 | 2229 | } |
| 2230 | 2230 | public function getSelfLink() |
| 2231 | 2231 | { |
| 2232 | - return $this->selfLink; |
|
| 2232 | + return $this->selfLink; |
|
| 2233 | 2233 | } |
| 2234 | 2234 | } |
| 2235 | 2235 | |
@@ -2243,19 +2243,19 @@ discard block |
||
| 2243 | 2243 | |
| 2244 | 2244 | public function setProjectNumber($projectNumber) |
| 2245 | 2245 | { |
| 2246 | - $this->projectNumber = $projectNumber; |
|
| 2246 | + $this->projectNumber = $projectNumber; |
|
| 2247 | 2247 | } |
| 2248 | 2248 | public function getProjectNumber() |
| 2249 | 2249 | { |
| 2250 | - return $this->projectNumber; |
|
| 2250 | + return $this->projectNumber; |
|
| 2251 | 2251 | } |
| 2252 | 2252 | public function setTeam($team) |
| 2253 | 2253 | { |
| 2254 | - $this->team = $team; |
|
| 2254 | + $this->team = $team; |
|
| 2255 | 2255 | } |
| 2256 | 2256 | public function getTeam() |
| 2257 | 2257 | { |
| 2258 | - return $this->team; |
|
| 2258 | + return $this->team; |
|
| 2259 | 2259 | } |
| 2260 | 2260 | } |
| 2261 | 2261 | |
@@ -2271,19 +2271,19 @@ discard block |
||
| 2271 | 2271 | |
| 2272 | 2272 | public function setItems($items) |
| 2273 | 2273 | { |
| 2274 | - $this->items = $items; |
|
| 2274 | + $this->items = $items; |
|
| 2275 | 2275 | } |
| 2276 | 2276 | public function getItems() |
| 2277 | 2277 | { |
| 2278 | - return $this->items; |
|
| 2278 | + return $this->items; |
|
| 2279 | 2279 | } |
| 2280 | 2280 | public function setKind($kind) |
| 2281 | 2281 | { |
| 2282 | - $this->kind = $kind; |
|
| 2282 | + $this->kind = $kind; |
|
| 2283 | 2283 | } |
| 2284 | 2284 | public function getKind() |
| 2285 | 2285 | { |
| 2286 | - return $this->kind; |
|
| 2286 | + return $this->kind; |
|
| 2287 | 2287 | } |
| 2288 | 2288 | } |
| 2289 | 2289 | |
@@ -2300,35 +2300,35 @@ discard block |
||
| 2300 | 2300 | |
| 2301 | 2301 | public function setMaxAgeSeconds($maxAgeSeconds) |
| 2302 | 2302 | { |
| 2303 | - $this->maxAgeSeconds = $maxAgeSeconds; |
|
| 2303 | + $this->maxAgeSeconds = $maxAgeSeconds; |
|
| 2304 | 2304 | } |
| 2305 | 2305 | public function getMaxAgeSeconds() |
| 2306 | 2306 | { |
| 2307 | - return $this->maxAgeSeconds; |
|
| 2307 | + return $this->maxAgeSeconds; |
|
| 2308 | 2308 | } |
| 2309 | 2309 | public function setMethod($method) |
| 2310 | 2310 | { |
| 2311 | - $this->method = $method; |
|
| 2311 | + $this->method = $method; |
|
| 2312 | 2312 | } |
| 2313 | 2313 | public function getMethod() |
| 2314 | 2314 | { |
| 2315 | - return $this->method; |
|
| 2315 | + return $this->method; |
|
| 2316 | 2316 | } |
| 2317 | 2317 | public function setOrigin($origin) |
| 2318 | 2318 | { |
| 2319 | - $this->origin = $origin; |
|
| 2319 | + $this->origin = $origin; |
|
| 2320 | 2320 | } |
| 2321 | 2321 | public function getOrigin() |
| 2322 | 2322 | { |
| 2323 | - return $this->origin; |
|
| 2323 | + return $this->origin; |
|
| 2324 | 2324 | } |
| 2325 | 2325 | public function setResponseHeader($responseHeader) |
| 2326 | 2326 | { |
| 2327 | - $this->responseHeader = $responseHeader; |
|
| 2327 | + $this->responseHeader = $responseHeader; |
|
| 2328 | 2328 | } |
| 2329 | 2329 | public function getResponseHeader() |
| 2330 | 2330 | { |
| 2331 | - return $this->responseHeader; |
|
| 2331 | + return $this->responseHeader; |
|
| 2332 | 2332 | } |
| 2333 | 2333 | } |
| 2334 | 2334 | |
@@ -2343,11 +2343,11 @@ discard block |
||
| 2343 | 2343 | |
| 2344 | 2344 | public function setRule($rule) |
| 2345 | 2345 | { |
| 2346 | - $this->rule = $rule; |
|
| 2346 | + $this->rule = $rule; |
|
| 2347 | 2347 | } |
| 2348 | 2348 | public function getRule() |
| 2349 | 2349 | { |
| 2350 | - return $this->rule; |
|
| 2350 | + return $this->rule; |
|
| 2351 | 2351 | } |
| 2352 | 2352 | } |
| 2353 | 2353 | |
@@ -2363,19 +2363,19 @@ discard block |
||
| 2363 | 2363 | |
| 2364 | 2364 | public function setAction(Google_Service_Storage_BucketLifecycleRuleAction $action) |
| 2365 | 2365 | { |
| 2366 | - $this->action = $action; |
|
| 2366 | + $this->action = $action; |
|
| 2367 | 2367 | } |
| 2368 | 2368 | public function getAction() |
| 2369 | 2369 | { |
| 2370 | - return $this->action; |
|
| 2370 | + return $this->action; |
|
| 2371 | 2371 | } |
| 2372 | 2372 | public function setCondition(Google_Service_Storage_BucketLifecycleRuleCondition $condition) |
| 2373 | 2373 | { |
| 2374 | - $this->condition = $condition; |
|
| 2374 | + $this->condition = $condition; |
|
| 2375 | 2375 | } |
| 2376 | 2376 | public function getCondition() |
| 2377 | 2377 | { |
| 2378 | - return $this->condition; |
|
| 2378 | + return $this->condition; |
|
| 2379 | 2379 | } |
| 2380 | 2380 | } |
| 2381 | 2381 | |
@@ -2388,11 +2388,11 @@ discard block |
||
| 2388 | 2388 | |
| 2389 | 2389 | public function setType($type) |
| 2390 | 2390 | { |
| 2391 | - $this->type = $type; |
|
| 2391 | + $this->type = $type; |
|
| 2392 | 2392 | } |
| 2393 | 2393 | public function getType() |
| 2394 | 2394 | { |
| 2395 | - return $this->type; |
|
| 2395 | + return $this->type; |
|
| 2396 | 2396 | } |
| 2397 | 2397 | } |
| 2398 | 2398 | |
@@ -2408,35 +2408,35 @@ discard block |
||
| 2408 | 2408 | |
| 2409 | 2409 | public function setAge($age) |
| 2410 | 2410 | { |
| 2411 | - $this->age = $age; |
|
| 2411 | + $this->age = $age; |
|
| 2412 | 2412 | } |
| 2413 | 2413 | public function getAge() |
| 2414 | 2414 | { |
| 2415 | - return $this->age; |
|
| 2415 | + return $this->age; |
|
| 2416 | 2416 | } |
| 2417 | 2417 | public function setCreatedBefore($createdBefore) |
| 2418 | 2418 | { |
| 2419 | - $this->createdBefore = $createdBefore; |
|
| 2419 | + $this->createdBefore = $createdBefore; |
|
| 2420 | 2420 | } |
| 2421 | 2421 | public function getCreatedBefore() |
| 2422 | 2422 | { |
| 2423 | - return $this->createdBefore; |
|
| 2423 | + return $this->createdBefore; |
|
| 2424 | 2424 | } |
| 2425 | 2425 | public function setIsLive($isLive) |
| 2426 | 2426 | { |
| 2427 | - $this->isLive = $isLive; |
|
| 2427 | + $this->isLive = $isLive; |
|
| 2428 | 2428 | } |
| 2429 | 2429 | public function getIsLive() |
| 2430 | 2430 | { |
| 2431 | - return $this->isLive; |
|
| 2431 | + return $this->isLive; |
|
| 2432 | 2432 | } |
| 2433 | 2433 | public function setNumNewerVersions($numNewerVersions) |
| 2434 | 2434 | { |
| 2435 | - $this->numNewerVersions = $numNewerVersions; |
|
| 2435 | + $this->numNewerVersions = $numNewerVersions; |
|
| 2436 | 2436 | } |
| 2437 | 2437 | public function getNumNewerVersions() |
| 2438 | 2438 | { |
| 2439 | - return $this->numNewerVersions; |
|
| 2439 | + return $this->numNewerVersions; |
|
| 2440 | 2440 | } |
| 2441 | 2441 | } |
| 2442 | 2442 | |
@@ -2450,19 +2450,19 @@ discard block |
||
| 2450 | 2450 | |
| 2451 | 2451 | public function setLogBucket($logBucket) |
| 2452 | 2452 | { |
| 2453 | - $this->logBucket = $logBucket; |
|
| 2453 | + $this->logBucket = $logBucket; |
|
| 2454 | 2454 | } |
| 2455 | 2455 | public function getLogBucket() |
| 2456 | 2456 | { |
| 2457 | - return $this->logBucket; |
|
| 2457 | + return $this->logBucket; |
|
| 2458 | 2458 | } |
| 2459 | 2459 | public function setLogObjectPrefix($logObjectPrefix) |
| 2460 | 2460 | { |
| 2461 | - $this->logObjectPrefix = $logObjectPrefix; |
|
| 2461 | + $this->logObjectPrefix = $logObjectPrefix; |
|
| 2462 | 2462 | } |
| 2463 | 2463 | public function getLogObjectPrefix() |
| 2464 | 2464 | { |
| 2465 | - return $this->logObjectPrefix; |
|
| 2465 | + return $this->logObjectPrefix; |
|
| 2466 | 2466 | } |
| 2467 | 2467 | } |
| 2468 | 2468 | |
@@ -2476,19 +2476,19 @@ discard block |
||
| 2476 | 2476 | |
| 2477 | 2477 | public function setEntity($entity) |
| 2478 | 2478 | { |
| 2479 | - $this->entity = $entity; |
|
| 2479 | + $this->entity = $entity; |
|
| 2480 | 2480 | } |
| 2481 | 2481 | public function getEntity() |
| 2482 | 2482 | { |
| 2483 | - return $this->entity; |
|
| 2483 | + return $this->entity; |
|
| 2484 | 2484 | } |
| 2485 | 2485 | public function setEntityId($entityId) |
| 2486 | 2486 | { |
| 2487 | - $this->entityId = $entityId; |
|
| 2487 | + $this->entityId = $entityId; |
|
| 2488 | 2488 | } |
| 2489 | 2489 | public function getEntityId() |
| 2490 | 2490 | { |
| 2491 | - return $this->entityId; |
|
| 2491 | + return $this->entityId; |
|
| 2492 | 2492 | } |
| 2493 | 2493 | } |
| 2494 | 2494 | |
@@ -2501,11 +2501,11 @@ discard block |
||
| 2501 | 2501 | |
| 2502 | 2502 | public function setEnabled($enabled) |
| 2503 | 2503 | { |
| 2504 | - $this->enabled = $enabled; |
|
| 2504 | + $this->enabled = $enabled; |
|
| 2505 | 2505 | } |
| 2506 | 2506 | public function getEnabled() |
| 2507 | 2507 | { |
| 2508 | - return $this->enabled; |
|
| 2508 | + return $this->enabled; |
|
| 2509 | 2509 | } |
| 2510 | 2510 | } |
| 2511 | 2511 | |
@@ -2519,19 +2519,19 @@ discard block |
||
| 2519 | 2519 | |
| 2520 | 2520 | public function setMainPageSuffix($mainPageSuffix) |
| 2521 | 2521 | { |
| 2522 | - $this->mainPageSuffix = $mainPageSuffix; |
|
| 2522 | + $this->mainPageSuffix = $mainPageSuffix; |
|
| 2523 | 2523 | } |
| 2524 | 2524 | public function getMainPageSuffix() |
| 2525 | 2525 | { |
| 2526 | - return $this->mainPageSuffix; |
|
| 2526 | + return $this->mainPageSuffix; |
|
| 2527 | 2527 | } |
| 2528 | 2528 | public function setNotFoundPage($notFoundPage) |
| 2529 | 2529 | { |
| 2530 | - $this->notFoundPage = $notFoundPage; |
|
| 2530 | + $this->notFoundPage = $notFoundPage; |
|
| 2531 | 2531 | } |
| 2532 | 2532 | public function getNotFoundPage() |
| 2533 | 2533 | { |
| 2534 | - return $this->notFoundPage; |
|
| 2534 | + return $this->notFoundPage; |
|
| 2535 | 2535 | } |
| 2536 | 2536 | } |
| 2537 | 2537 | |
@@ -2548,27 +2548,27 @@ discard block |
||
| 2548 | 2548 | |
| 2549 | 2549 | public function setItems($items) |
| 2550 | 2550 | { |
| 2551 | - $this->items = $items; |
|
| 2551 | + $this->items = $items; |
|
| 2552 | 2552 | } |
| 2553 | 2553 | public function getItems() |
| 2554 | 2554 | { |
| 2555 | - return $this->items; |
|
| 2555 | + return $this->items; |
|
| 2556 | 2556 | } |
| 2557 | 2557 | public function setKind($kind) |
| 2558 | 2558 | { |
| 2559 | - $this->kind = $kind; |
|
| 2559 | + $this->kind = $kind; |
|
| 2560 | 2560 | } |
| 2561 | 2561 | public function getKind() |
| 2562 | 2562 | { |
| 2563 | - return $this->kind; |
|
| 2563 | + return $this->kind; |
|
| 2564 | 2564 | } |
| 2565 | 2565 | public function setNextPageToken($nextPageToken) |
| 2566 | 2566 | { |
| 2567 | - $this->nextPageToken = $nextPageToken; |
|
| 2567 | + $this->nextPageToken = $nextPageToken; |
|
| 2568 | 2568 | } |
| 2569 | 2569 | public function getNextPageToken() |
| 2570 | 2570 | { |
| 2571 | - return $this->nextPageToken; |
|
| 2571 | + return $this->nextPageToken; |
|
| 2572 | 2572 | } |
| 2573 | 2573 | } |
| 2574 | 2574 | |
@@ -2590,83 +2590,83 @@ discard block |
||
| 2590 | 2590 | |
| 2591 | 2591 | public function setAddress($address) |
| 2592 | 2592 | { |
| 2593 | - $this->address = $address; |
|
| 2593 | + $this->address = $address; |
|
| 2594 | 2594 | } |
| 2595 | 2595 | public function getAddress() |
| 2596 | 2596 | { |
| 2597 | - return $this->address; |
|
| 2597 | + return $this->address; |
|
| 2598 | 2598 | } |
| 2599 | 2599 | public function setExpiration($expiration) |
| 2600 | 2600 | { |
| 2601 | - $this->expiration = $expiration; |
|
| 2601 | + $this->expiration = $expiration; |
|
| 2602 | 2602 | } |
| 2603 | 2603 | public function getExpiration() |
| 2604 | 2604 | { |
| 2605 | - return $this->expiration; |
|
| 2605 | + return $this->expiration; |
|
| 2606 | 2606 | } |
| 2607 | 2607 | public function setId($id) |
| 2608 | 2608 | { |
| 2609 | - $this->id = $id; |
|
| 2609 | + $this->id = $id; |
|
| 2610 | 2610 | } |
| 2611 | 2611 | public function getId() |
| 2612 | 2612 | { |
| 2613 | - return $this->id; |
|
| 2613 | + return $this->id; |
|
| 2614 | 2614 | } |
| 2615 | 2615 | public function setKind($kind) |
| 2616 | 2616 | { |
| 2617 | - $this->kind = $kind; |
|
| 2617 | + $this->kind = $kind; |
|
| 2618 | 2618 | } |
| 2619 | 2619 | public function getKind() |
| 2620 | 2620 | { |
| 2621 | - return $this->kind; |
|
| 2621 | + return $this->kind; |
|
| 2622 | 2622 | } |
| 2623 | 2623 | public function setParams($params) |
| 2624 | 2624 | { |
| 2625 | - $this->params = $params; |
|
| 2625 | + $this->params = $params; |
|
| 2626 | 2626 | } |
| 2627 | 2627 | public function getParams() |
| 2628 | 2628 | { |
| 2629 | - return $this->params; |
|
| 2629 | + return $this->params; |
|
| 2630 | 2630 | } |
| 2631 | 2631 | public function setPayload($payload) |
| 2632 | 2632 | { |
| 2633 | - $this->payload = $payload; |
|
| 2633 | + $this->payload = $payload; |
|
| 2634 | 2634 | } |
| 2635 | 2635 | public function getPayload() |
| 2636 | 2636 | { |
| 2637 | - return $this->payload; |
|
| 2637 | + return $this->payload; |
|
| 2638 | 2638 | } |
| 2639 | 2639 | public function setResourceId($resourceId) |
| 2640 | 2640 | { |
| 2641 | - $this->resourceId = $resourceId; |
|
| 2641 | + $this->resourceId = $resourceId; |
|
| 2642 | 2642 | } |
| 2643 | 2643 | public function getResourceId() |
| 2644 | 2644 | { |
| 2645 | - return $this->resourceId; |
|
| 2645 | + return $this->resourceId; |
|
| 2646 | 2646 | } |
| 2647 | 2647 | public function setResourceUri($resourceUri) |
| 2648 | 2648 | { |
| 2649 | - $this->resourceUri = $resourceUri; |
|
| 2649 | + $this->resourceUri = $resourceUri; |
|
| 2650 | 2650 | } |
| 2651 | 2651 | public function getResourceUri() |
| 2652 | 2652 | { |
| 2653 | - return $this->resourceUri; |
|
| 2653 | + return $this->resourceUri; |
|
| 2654 | 2654 | } |
| 2655 | 2655 | public function setToken($token) |
| 2656 | 2656 | { |
| 2657 | - $this->token = $token; |
|
| 2657 | + $this->token = $token; |
|
| 2658 | 2658 | } |
| 2659 | 2659 | public function getToken() |
| 2660 | 2660 | { |
| 2661 | - return $this->token; |
|
| 2661 | + return $this->token; |
|
| 2662 | 2662 | } |
| 2663 | 2663 | public function setType($type) |
| 2664 | 2664 | { |
| 2665 | - $this->type = $type; |
|
| 2665 | + $this->type = $type; |
|
| 2666 | 2666 | } |
| 2667 | 2667 | public function getType() |
| 2668 | 2668 | { |
| 2669 | - return $this->type; |
|
| 2669 | + return $this->type; |
|
| 2670 | 2670 | } |
| 2671 | 2671 | } |
| 2672 | 2672 | |
@@ -2688,27 +2688,27 @@ discard block |
||
| 2688 | 2688 | |
| 2689 | 2689 | public function setDestination(Google_Service_Storage_StorageObject $destination) |
| 2690 | 2690 | { |
| 2691 | - $this->destination = $destination; |
|
| 2691 | + $this->destination = $destination; |
|
| 2692 | 2692 | } |
| 2693 | 2693 | public function getDestination() |
| 2694 | 2694 | { |
| 2695 | - return $this->destination; |
|
| 2695 | + return $this->destination; |
|
| 2696 | 2696 | } |
| 2697 | 2697 | public function setKind($kind) |
| 2698 | 2698 | { |
| 2699 | - $this->kind = $kind; |
|
| 2699 | + $this->kind = $kind; |
|
| 2700 | 2700 | } |
| 2701 | 2701 | public function getKind() |
| 2702 | 2702 | { |
| 2703 | - return $this->kind; |
|
| 2703 | + return $this->kind; |
|
| 2704 | 2704 | } |
| 2705 | 2705 | public function setSourceObjects($sourceObjects) |
| 2706 | 2706 | { |
| 2707 | - $this->sourceObjects = $sourceObjects; |
|
| 2707 | + $this->sourceObjects = $sourceObjects; |
|
| 2708 | 2708 | } |
| 2709 | 2709 | public function getSourceObjects() |
| 2710 | 2710 | { |
| 2711 | - return $this->sourceObjects; |
|
| 2711 | + return $this->sourceObjects; |
|
| 2712 | 2712 | } |
| 2713 | 2713 | } |
| 2714 | 2714 | |
@@ -2724,27 +2724,27 @@ discard block |
||
| 2724 | 2724 | |
| 2725 | 2725 | public function setGeneration($generation) |
| 2726 | 2726 | { |
| 2727 | - $this->generation = $generation; |
|
| 2727 | + $this->generation = $generation; |
|
| 2728 | 2728 | } |
| 2729 | 2729 | public function getGeneration() |
| 2730 | 2730 | { |
| 2731 | - return $this->generation; |
|
| 2731 | + return $this->generation; |
|
| 2732 | 2732 | } |
| 2733 | 2733 | public function setName($name) |
| 2734 | 2734 | { |
| 2735 | - $this->name = $name; |
|
| 2735 | + $this->name = $name; |
|
| 2736 | 2736 | } |
| 2737 | 2737 | public function getName() |
| 2738 | 2738 | { |
| 2739 | - return $this->name; |
|
| 2739 | + return $this->name; |
|
| 2740 | 2740 | } |
| 2741 | 2741 | public function setObjectPreconditions(Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions $objectPreconditions) |
| 2742 | 2742 | { |
| 2743 | - $this->objectPreconditions = $objectPreconditions; |
|
| 2743 | + $this->objectPreconditions = $objectPreconditions; |
|
| 2744 | 2744 | } |
| 2745 | 2745 | public function getObjectPreconditions() |
| 2746 | 2746 | { |
| 2747 | - return $this->objectPreconditions; |
|
| 2747 | + return $this->objectPreconditions; |
|
| 2748 | 2748 | } |
| 2749 | 2749 | } |
| 2750 | 2750 | |
@@ -2757,11 +2757,11 @@ discard block |
||
| 2757 | 2757 | |
| 2758 | 2758 | public function setIfGenerationMatch($ifGenerationMatch) |
| 2759 | 2759 | { |
| 2760 | - $this->ifGenerationMatch = $ifGenerationMatch; |
|
| 2760 | + $this->ifGenerationMatch = $ifGenerationMatch; |
|
| 2761 | 2761 | } |
| 2762 | 2762 | public function getIfGenerationMatch() |
| 2763 | 2763 | { |
| 2764 | - return $this->ifGenerationMatch; |
|
| 2764 | + return $this->ifGenerationMatch; |
|
| 2765 | 2765 | } |
| 2766 | 2766 | } |
| 2767 | 2767 | |
@@ -2787,107 +2787,107 @@ discard block |
||
| 2787 | 2787 | |
| 2788 | 2788 | public function setBucket($bucket) |
| 2789 | 2789 | { |
| 2790 | - $this->bucket = $bucket; |
|
| 2790 | + $this->bucket = $bucket; |
|
| 2791 | 2791 | } |
| 2792 | 2792 | public function getBucket() |
| 2793 | 2793 | { |
| 2794 | - return $this->bucket; |
|
| 2794 | + return $this->bucket; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | public function setDomain($domain) |
| 2797 | 2797 | { |
| 2798 | - $this->domain = $domain; |
|
| 2798 | + $this->domain = $domain; |
|
| 2799 | 2799 | } |
| 2800 | 2800 | public function getDomain() |
| 2801 | 2801 | { |
| 2802 | - return $this->domain; |
|
| 2802 | + return $this->domain; |
|
| 2803 | 2803 | } |
| 2804 | 2804 | public function setEmail($email) |
| 2805 | 2805 | { |
| 2806 | - $this->email = $email; |
|
| 2806 | + $this->email = $email; |
|
| 2807 | 2807 | } |
| 2808 | 2808 | public function getEmail() |
| 2809 | 2809 | { |
| 2810 | - return $this->email; |
|
| 2810 | + return $this->email; |
|
| 2811 | 2811 | } |
| 2812 | 2812 | public function setEntity($entity) |
| 2813 | 2813 | { |
| 2814 | - $this->entity = $entity; |
|
| 2814 | + $this->entity = $entity; |
|
| 2815 | 2815 | } |
| 2816 | 2816 | public function getEntity() |
| 2817 | 2817 | { |
| 2818 | - return $this->entity; |
|
| 2818 | + return $this->entity; |
|
| 2819 | 2819 | } |
| 2820 | 2820 | public function setEntityId($entityId) |
| 2821 | 2821 | { |
| 2822 | - $this->entityId = $entityId; |
|
| 2822 | + $this->entityId = $entityId; |
|
| 2823 | 2823 | } |
| 2824 | 2824 | public function getEntityId() |
| 2825 | 2825 | { |
| 2826 | - return $this->entityId; |
|
| 2826 | + return $this->entityId; |
|
| 2827 | 2827 | } |
| 2828 | 2828 | public function setEtag($etag) |
| 2829 | 2829 | { |
| 2830 | - $this->etag = $etag; |
|
| 2830 | + $this->etag = $etag; |
|
| 2831 | 2831 | } |
| 2832 | 2832 | public function getEtag() |
| 2833 | 2833 | { |
| 2834 | - return $this->etag; |
|
| 2834 | + return $this->etag; |
|
| 2835 | 2835 | } |
| 2836 | 2836 | public function setGeneration($generation) |
| 2837 | 2837 | { |
| 2838 | - $this->generation = $generation; |
|
| 2838 | + $this->generation = $generation; |
|
| 2839 | 2839 | } |
| 2840 | 2840 | public function getGeneration() |
| 2841 | 2841 | { |
| 2842 | - return $this->generation; |
|
| 2842 | + return $this->generation; |
|
| 2843 | 2843 | } |
| 2844 | 2844 | public function setId($id) |
| 2845 | 2845 | { |
| 2846 | - $this->id = $id; |
|
| 2846 | + $this->id = $id; |
|
| 2847 | 2847 | } |
| 2848 | 2848 | public function getId() |
| 2849 | 2849 | { |
| 2850 | - return $this->id; |
|
| 2850 | + return $this->id; |
|
| 2851 | 2851 | } |
| 2852 | 2852 | public function setKind($kind) |
| 2853 | 2853 | { |
| 2854 | - $this->kind = $kind; |
|
| 2854 | + $this->kind = $kind; |
|
| 2855 | 2855 | } |
| 2856 | 2856 | public function getKind() |
| 2857 | 2857 | { |
| 2858 | - return $this->kind; |
|
| 2858 | + return $this->kind; |
|
| 2859 | 2859 | } |
| 2860 | 2860 | public function setObject($object) |
| 2861 | 2861 | { |
| 2862 | - $this->object = $object; |
|
| 2862 | + $this->object = $object; |
|
| 2863 | 2863 | } |
| 2864 | 2864 | public function getObject() |
| 2865 | 2865 | { |
| 2866 | - return $this->object; |
|
| 2866 | + return $this->object; |
|
| 2867 | 2867 | } |
| 2868 | 2868 | public function setProjectTeam(Google_Service_Storage_ObjectAccessControlProjectTeam $projectTeam) |
| 2869 | 2869 | { |
| 2870 | - $this->projectTeam = $projectTeam; |
|
| 2870 | + $this->projectTeam = $projectTeam; |
|
| 2871 | 2871 | } |
| 2872 | 2872 | public function getProjectTeam() |
| 2873 | 2873 | { |
| 2874 | - return $this->projectTeam; |
|
| 2874 | + return $this->projectTeam; |
|
| 2875 | 2875 | } |
| 2876 | 2876 | public function setRole($role) |
| 2877 | 2877 | { |
| 2878 | - $this->role = $role; |
|
| 2878 | + $this->role = $role; |
|
| 2879 | 2879 | } |
| 2880 | 2880 | public function getRole() |
| 2881 | 2881 | { |
| 2882 | - return $this->role; |
|
| 2882 | + return $this->role; |
|
| 2883 | 2883 | } |
| 2884 | 2884 | public function setSelfLink($selfLink) |
| 2885 | 2885 | { |
| 2886 | - $this->selfLink = $selfLink; |
|
| 2886 | + $this->selfLink = $selfLink; |
|
| 2887 | 2887 | } |
| 2888 | 2888 | public function getSelfLink() |
| 2889 | 2889 | { |
| 2890 | - return $this->selfLink; |
|
| 2890 | + return $this->selfLink; |
|
| 2891 | 2891 | } |
| 2892 | 2892 | } |
| 2893 | 2893 | |
@@ -2901,19 +2901,19 @@ discard block |
||
| 2901 | 2901 | |
| 2902 | 2902 | public function setProjectNumber($projectNumber) |
| 2903 | 2903 | { |
| 2904 | - $this->projectNumber = $projectNumber; |
|
| 2904 | + $this->projectNumber = $projectNumber; |
|
| 2905 | 2905 | } |
| 2906 | 2906 | public function getProjectNumber() |
| 2907 | 2907 | { |
| 2908 | - return $this->projectNumber; |
|
| 2908 | + return $this->projectNumber; |
|
| 2909 | 2909 | } |
| 2910 | 2910 | public function setTeam($team) |
| 2911 | 2911 | { |
| 2912 | - $this->team = $team; |
|
| 2912 | + $this->team = $team; |
|
| 2913 | 2913 | } |
| 2914 | 2914 | public function getTeam() |
| 2915 | 2915 | { |
| 2916 | - return $this->team; |
|
| 2916 | + return $this->team; |
|
| 2917 | 2917 | } |
| 2918 | 2918 | } |
| 2919 | 2919 | |
@@ -2928,19 +2928,19 @@ discard block |
||
| 2928 | 2928 | |
| 2929 | 2929 | public function setItems($items) |
| 2930 | 2930 | { |
| 2931 | - $this->items = $items; |
|
| 2931 | + $this->items = $items; |
|
| 2932 | 2932 | } |
| 2933 | 2933 | public function getItems() |
| 2934 | 2934 | { |
| 2935 | - return $this->items; |
|
| 2935 | + return $this->items; |
|
| 2936 | 2936 | } |
| 2937 | 2937 | public function setKind($kind) |
| 2938 | 2938 | { |
| 2939 | - $this->kind = $kind; |
|
| 2939 | + $this->kind = $kind; |
|
| 2940 | 2940 | } |
| 2941 | 2941 | public function getKind() |
| 2942 | 2942 | { |
| 2943 | - return $this->kind; |
|
| 2943 | + return $this->kind; |
|
| 2944 | 2944 | } |
| 2945 | 2945 | } |
| 2946 | 2946 | |
@@ -2958,35 +2958,35 @@ discard block |
||
| 2958 | 2958 | |
| 2959 | 2959 | public function setItems($items) |
| 2960 | 2960 | { |
| 2961 | - $this->items = $items; |
|
| 2961 | + $this->items = $items; |
|
| 2962 | 2962 | } |
| 2963 | 2963 | public function getItems() |
| 2964 | 2964 | { |
| 2965 | - return $this->items; |
|
| 2965 | + return $this->items; |
|
| 2966 | 2966 | } |
| 2967 | 2967 | public function setKind($kind) |
| 2968 | 2968 | { |
| 2969 | - $this->kind = $kind; |
|
| 2969 | + $this->kind = $kind; |
|
| 2970 | 2970 | } |
| 2971 | 2971 | public function getKind() |
| 2972 | 2972 | { |
| 2973 | - return $this->kind; |
|
| 2973 | + return $this->kind; |
|
| 2974 | 2974 | } |
| 2975 | 2975 | public function setNextPageToken($nextPageToken) |
| 2976 | 2976 | { |
| 2977 | - $this->nextPageToken = $nextPageToken; |
|
| 2977 | + $this->nextPageToken = $nextPageToken; |
|
| 2978 | 2978 | } |
| 2979 | 2979 | public function getNextPageToken() |
| 2980 | 2980 | { |
| 2981 | - return $this->nextPageToken; |
|
| 2981 | + return $this->nextPageToken; |
|
| 2982 | 2982 | } |
| 2983 | 2983 | public function setPrefixes($prefixes) |
| 2984 | 2984 | { |
| 2985 | - $this->prefixes = $prefixes; |
|
| 2985 | + $this->prefixes = $prefixes; |
|
| 2986 | 2986 | } |
| 2987 | 2987 | public function getPrefixes() |
| 2988 | 2988 | { |
| 2989 | - return $this->prefixes; |
|
| 2989 | + return $this->prefixes; |
|
| 2990 | 2990 | } |
| 2991 | 2991 | } |
| 2992 | 2992 | |
@@ -3005,51 +3005,51 @@ discard block |
||
| 3005 | 3005 | |
| 3006 | 3006 | public function setDone($done) |
| 3007 | 3007 | { |
| 3008 | - $this->done = $done; |
|
| 3008 | + $this->done = $done; |
|
| 3009 | 3009 | } |
| 3010 | 3010 | public function getDone() |
| 3011 | 3011 | { |
| 3012 | - return $this->done; |
|
| 3012 | + return $this->done; |
|
| 3013 | 3013 | } |
| 3014 | 3014 | public function setKind($kind) |
| 3015 | 3015 | { |
| 3016 | - $this->kind = $kind; |
|
| 3016 | + $this->kind = $kind; |
|
| 3017 | 3017 | } |
| 3018 | 3018 | public function getKind() |
| 3019 | 3019 | { |
| 3020 | - return $this->kind; |
|
| 3020 | + return $this->kind; |
|
| 3021 | 3021 | } |
| 3022 | 3022 | public function setObjectSize($objectSize) |
| 3023 | 3023 | { |
| 3024 | - $this->objectSize = $objectSize; |
|
| 3024 | + $this->objectSize = $objectSize; |
|
| 3025 | 3025 | } |
| 3026 | 3026 | public function getObjectSize() |
| 3027 | 3027 | { |
| 3028 | - return $this->objectSize; |
|
| 3028 | + return $this->objectSize; |
|
| 3029 | 3029 | } |
| 3030 | 3030 | public function setResource(Google_Service_Storage_StorageObject $resource) |
| 3031 | 3031 | { |
| 3032 | - $this->resource = $resource; |
|
| 3032 | + $this->resource = $resource; |
|
| 3033 | 3033 | } |
| 3034 | 3034 | public function getResource() |
| 3035 | 3035 | { |
| 3036 | - return $this->resource; |
|
| 3036 | + return $this->resource; |
|
| 3037 | 3037 | } |
| 3038 | 3038 | public function setRewriteToken($rewriteToken) |
| 3039 | 3039 | { |
| 3040 | - $this->rewriteToken = $rewriteToken; |
|
| 3040 | + $this->rewriteToken = $rewriteToken; |
|
| 3041 | 3041 | } |
| 3042 | 3042 | public function getRewriteToken() |
| 3043 | 3043 | { |
| 3044 | - return $this->rewriteToken; |
|
| 3044 | + return $this->rewriteToken; |
|
| 3045 | 3045 | } |
| 3046 | 3046 | public function setTotalBytesRewritten($totalBytesRewritten) |
| 3047 | 3047 | { |
| 3048 | - $this->totalBytesRewritten = $totalBytesRewritten; |
|
| 3048 | + $this->totalBytesRewritten = $totalBytesRewritten; |
|
| 3049 | 3049 | } |
| 3050 | 3050 | public function getTotalBytesRewritten() |
| 3051 | 3051 | { |
| 3052 | - return $this->totalBytesRewritten; |
|
| 3052 | + return $this->totalBytesRewritten; |
|
| 3053 | 3053 | } |
| 3054 | 3054 | } |
| 3055 | 3055 | |
@@ -3088,195 +3088,195 @@ discard block |
||
| 3088 | 3088 | |
| 3089 | 3089 | public function setAcl($acl) |
| 3090 | 3090 | { |
| 3091 | - $this->acl = $acl; |
|
| 3091 | + $this->acl = $acl; |
|
| 3092 | 3092 | } |
| 3093 | 3093 | public function getAcl() |
| 3094 | 3094 | { |
| 3095 | - return $this->acl; |
|
| 3095 | + return $this->acl; |
|
| 3096 | 3096 | } |
| 3097 | 3097 | public function setBucket($bucket) |
| 3098 | 3098 | { |
| 3099 | - $this->bucket = $bucket; |
|
| 3099 | + $this->bucket = $bucket; |
|
| 3100 | 3100 | } |
| 3101 | 3101 | public function getBucket() |
| 3102 | 3102 | { |
| 3103 | - return $this->bucket; |
|
| 3103 | + return $this->bucket; |
|
| 3104 | 3104 | } |
| 3105 | 3105 | public function setCacheControl($cacheControl) |
| 3106 | 3106 | { |
| 3107 | - $this->cacheControl = $cacheControl; |
|
| 3107 | + $this->cacheControl = $cacheControl; |
|
| 3108 | 3108 | } |
| 3109 | 3109 | public function getCacheControl() |
| 3110 | 3110 | { |
| 3111 | - return $this->cacheControl; |
|
| 3111 | + return $this->cacheControl; |
|
| 3112 | 3112 | } |
| 3113 | 3113 | public function setComponentCount($componentCount) |
| 3114 | 3114 | { |
| 3115 | - $this->componentCount = $componentCount; |
|
| 3115 | + $this->componentCount = $componentCount; |
|
| 3116 | 3116 | } |
| 3117 | 3117 | public function getComponentCount() |
| 3118 | 3118 | { |
| 3119 | - return $this->componentCount; |
|
| 3119 | + return $this->componentCount; |
|
| 3120 | 3120 | } |
| 3121 | 3121 | public function setContentDisposition($contentDisposition) |
| 3122 | 3122 | { |
| 3123 | - $this->contentDisposition = $contentDisposition; |
|
| 3123 | + $this->contentDisposition = $contentDisposition; |
|
| 3124 | 3124 | } |
| 3125 | 3125 | public function getContentDisposition() |
| 3126 | 3126 | { |
| 3127 | - return $this->contentDisposition; |
|
| 3127 | + return $this->contentDisposition; |
|
| 3128 | 3128 | } |
| 3129 | 3129 | public function setContentEncoding($contentEncoding) |
| 3130 | 3130 | { |
| 3131 | - $this->contentEncoding = $contentEncoding; |
|
| 3131 | + $this->contentEncoding = $contentEncoding; |
|
| 3132 | 3132 | } |
| 3133 | 3133 | public function getContentEncoding() |
| 3134 | 3134 | { |
| 3135 | - return $this->contentEncoding; |
|
| 3135 | + return $this->contentEncoding; |
|
| 3136 | 3136 | } |
| 3137 | 3137 | public function setContentLanguage($contentLanguage) |
| 3138 | 3138 | { |
| 3139 | - $this->contentLanguage = $contentLanguage; |
|
| 3139 | + $this->contentLanguage = $contentLanguage; |
|
| 3140 | 3140 | } |
| 3141 | 3141 | public function getContentLanguage() |
| 3142 | 3142 | { |
| 3143 | - return $this->contentLanguage; |
|
| 3143 | + return $this->contentLanguage; |
|
| 3144 | 3144 | } |
| 3145 | 3145 | public function setContentType($contentType) |
| 3146 | 3146 | { |
| 3147 | - $this->contentType = $contentType; |
|
| 3147 | + $this->contentType = $contentType; |
|
| 3148 | 3148 | } |
| 3149 | 3149 | public function getContentType() |
| 3150 | 3150 | { |
| 3151 | - return $this->contentType; |
|
| 3151 | + return $this->contentType; |
|
| 3152 | 3152 | } |
| 3153 | 3153 | public function setCrc32c($crc32c) |
| 3154 | 3154 | { |
| 3155 | - $this->crc32c = $crc32c; |
|
| 3155 | + $this->crc32c = $crc32c; |
|
| 3156 | 3156 | } |
| 3157 | 3157 | public function getCrc32c() |
| 3158 | 3158 | { |
| 3159 | - return $this->crc32c; |
|
| 3159 | + return $this->crc32c; |
|
| 3160 | 3160 | } |
| 3161 | 3161 | public function setEtag($etag) |
| 3162 | 3162 | { |
| 3163 | - $this->etag = $etag; |
|
| 3163 | + $this->etag = $etag; |
|
| 3164 | 3164 | } |
| 3165 | 3165 | public function getEtag() |
| 3166 | 3166 | { |
| 3167 | - return $this->etag; |
|
| 3167 | + return $this->etag; |
|
| 3168 | 3168 | } |
| 3169 | 3169 | public function setGeneration($generation) |
| 3170 | 3170 | { |
| 3171 | - $this->generation = $generation; |
|
| 3171 | + $this->generation = $generation; |
|
| 3172 | 3172 | } |
| 3173 | 3173 | public function getGeneration() |
| 3174 | 3174 | { |
| 3175 | - return $this->generation; |
|
| 3175 | + return $this->generation; |
|
| 3176 | 3176 | } |
| 3177 | 3177 | public function setId($id) |
| 3178 | 3178 | { |
| 3179 | - $this->id = $id; |
|
| 3179 | + $this->id = $id; |
|
| 3180 | 3180 | } |
| 3181 | 3181 | public function getId() |
| 3182 | 3182 | { |
| 3183 | - return $this->id; |
|
| 3183 | + return $this->id; |
|
| 3184 | 3184 | } |
| 3185 | 3185 | public function setKind($kind) |
| 3186 | 3186 | { |
| 3187 | - $this->kind = $kind; |
|
| 3187 | + $this->kind = $kind; |
|
| 3188 | 3188 | } |
| 3189 | 3189 | public function getKind() |
| 3190 | 3190 | { |
| 3191 | - return $this->kind; |
|
| 3191 | + return $this->kind; |
|
| 3192 | 3192 | } |
| 3193 | 3193 | public function setMd5Hash($md5Hash) |
| 3194 | 3194 | { |
| 3195 | - $this->md5Hash = $md5Hash; |
|
| 3195 | + $this->md5Hash = $md5Hash; |
|
| 3196 | 3196 | } |
| 3197 | 3197 | public function getMd5Hash() |
| 3198 | 3198 | { |
| 3199 | - return $this->md5Hash; |
|
| 3199 | + return $this->md5Hash; |
|
| 3200 | 3200 | } |
| 3201 | 3201 | public function setMediaLink($mediaLink) |
| 3202 | 3202 | { |
| 3203 | - $this->mediaLink = $mediaLink; |
|
| 3203 | + $this->mediaLink = $mediaLink; |
|
| 3204 | 3204 | } |
| 3205 | 3205 | public function getMediaLink() |
| 3206 | 3206 | { |
| 3207 | - return $this->mediaLink; |
|
| 3207 | + return $this->mediaLink; |
|
| 3208 | 3208 | } |
| 3209 | 3209 | public function setMetadata($metadata) |
| 3210 | 3210 | { |
| 3211 | - $this->metadata = $metadata; |
|
| 3211 | + $this->metadata = $metadata; |
|
| 3212 | 3212 | } |
| 3213 | 3213 | public function getMetadata() |
| 3214 | 3214 | { |
| 3215 | - return $this->metadata; |
|
| 3215 | + return $this->metadata; |
|
| 3216 | 3216 | } |
| 3217 | 3217 | public function setMetageneration($metageneration) |
| 3218 | 3218 | { |
| 3219 | - $this->metageneration = $metageneration; |
|
| 3219 | + $this->metageneration = $metageneration; |
|
| 3220 | 3220 | } |
| 3221 | 3221 | public function getMetageneration() |
| 3222 | 3222 | { |
| 3223 | - return $this->metageneration; |
|
| 3223 | + return $this->metageneration; |
|
| 3224 | 3224 | } |
| 3225 | 3225 | public function setName($name) |
| 3226 | 3226 | { |
| 3227 | - $this->name = $name; |
|
| 3227 | + $this->name = $name; |
|
| 3228 | 3228 | } |
| 3229 | 3229 | public function getName() |
| 3230 | 3230 | { |
| 3231 | - return $this->name; |
|
| 3231 | + return $this->name; |
|
| 3232 | 3232 | } |
| 3233 | 3233 | public function setOwner(Google_Service_Storage_StorageObjectOwner $owner) |
| 3234 | 3234 | { |
| 3235 | - $this->owner = $owner; |
|
| 3235 | + $this->owner = $owner; |
|
| 3236 | 3236 | } |
| 3237 | 3237 | public function getOwner() |
| 3238 | 3238 | { |
| 3239 | - return $this->owner; |
|
| 3239 | + return $this->owner; |
|
| 3240 | 3240 | } |
| 3241 | 3241 | public function setSelfLink($selfLink) |
| 3242 | 3242 | { |
| 3243 | - $this->selfLink = $selfLink; |
|
| 3243 | + $this->selfLink = $selfLink; |
|
| 3244 | 3244 | } |
| 3245 | 3245 | public function getSelfLink() |
| 3246 | 3246 | { |
| 3247 | - return $this->selfLink; |
|
| 3247 | + return $this->selfLink; |
|
| 3248 | 3248 | } |
| 3249 | 3249 | public function setSize($size) |
| 3250 | 3250 | { |
| 3251 | - $this->size = $size; |
|
| 3251 | + $this->size = $size; |
|
| 3252 | 3252 | } |
| 3253 | 3253 | public function getSize() |
| 3254 | 3254 | { |
| 3255 | - return $this->size; |
|
| 3255 | + return $this->size; |
|
| 3256 | 3256 | } |
| 3257 | 3257 | public function setStorageClass($storageClass) |
| 3258 | 3258 | { |
| 3259 | - $this->storageClass = $storageClass; |
|
| 3259 | + $this->storageClass = $storageClass; |
|
| 3260 | 3260 | } |
| 3261 | 3261 | public function getStorageClass() |
| 3262 | 3262 | { |
| 3263 | - return $this->storageClass; |
|
| 3263 | + return $this->storageClass; |
|
| 3264 | 3264 | } |
| 3265 | 3265 | public function setTimeDeleted($timeDeleted) |
| 3266 | 3266 | { |
| 3267 | - $this->timeDeleted = $timeDeleted; |
|
| 3267 | + $this->timeDeleted = $timeDeleted; |
|
| 3268 | 3268 | } |
| 3269 | 3269 | public function getTimeDeleted() |
| 3270 | 3270 | { |
| 3271 | - return $this->timeDeleted; |
|
| 3271 | + return $this->timeDeleted; |
|
| 3272 | 3272 | } |
| 3273 | 3273 | public function setUpdated($updated) |
| 3274 | 3274 | { |
| 3275 | - $this->updated = $updated; |
|
| 3275 | + $this->updated = $updated; |
|
| 3276 | 3276 | } |
| 3277 | 3277 | public function getUpdated() |
| 3278 | 3278 | { |
| 3279 | - return $this->updated; |
|
| 3279 | + return $this->updated; |
|
| 3280 | 3280 | } |
| 3281 | 3281 | } |
| 3282 | 3282 | |
@@ -3294,18 +3294,18 @@ discard block |
||
| 3294 | 3294 | |
| 3295 | 3295 | public function setEntity($entity) |
| 3296 | 3296 | { |
| 3297 | - $this->entity = $entity; |
|
| 3297 | + $this->entity = $entity; |
|
| 3298 | 3298 | } |
| 3299 | 3299 | public function getEntity() |
| 3300 | 3300 | { |
| 3301 | - return $this->entity; |
|
| 3301 | + return $this->entity; |
|
| 3302 | 3302 | } |
| 3303 | 3303 | public function setEntityId($entityId) |
| 3304 | 3304 | { |
| 3305 | - $this->entityId = $entityId; |
|
| 3305 | + $this->entityId = $entityId; |
|
| 3306 | 3306 | } |
| 3307 | 3307 | public function getEntityId() |
| 3308 | 3308 | { |
| 3309 | - return $this->entityId; |
|
| 3309 | + return $this->entityId; |
|
| 3310 | 3310 | } |
| 3311 | 3311 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | 'required' => true, |
| 86 | 86 | ), |
| 87 | 87 | ), |
| 88 | - ),'get' => array( |
|
| 88 | + ), 'get' => array( |
|
| 89 | 89 | 'path' => 'b/{bucket}/acl/{entity}', |
| 90 | 90 | 'httpMethod' => 'GET', |
| 91 | 91 | 'parameters' => array( |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | 'required' => true, |
| 101 | 101 | ), |
| 102 | 102 | ), |
| 103 | - ),'insert' => array( |
|
| 103 | + ), 'insert' => array( |
|
| 104 | 104 | 'path' => 'b/{bucket}/acl', |
| 105 | 105 | 'httpMethod' => 'POST', |
| 106 | 106 | 'parameters' => array( |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | 'required' => true, |
| 111 | 111 | ), |
| 112 | 112 | ), |
| 113 | - ),'list' => array( |
|
| 113 | + ), 'list' => array( |
|
| 114 | 114 | 'path' => 'b/{bucket}/acl', |
| 115 | 115 | 'httpMethod' => 'GET', |
| 116 | 116 | 'parameters' => array( |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | 'required' => true, |
| 121 | 121 | ), |
| 122 | 122 | ), |
| 123 | - ),'patch' => array( |
|
| 123 | + ), 'patch' => array( |
|
| 124 | 124 | 'path' => 'b/{bucket}/acl/{entity}', |
| 125 | 125 | 'httpMethod' => 'PATCH', |
| 126 | 126 | 'parameters' => array( |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | 'required' => true, |
| 136 | 136 | ), |
| 137 | 137 | ), |
| 138 | - ),'update' => array( |
|
| 138 | + ), 'update' => array( |
|
| 139 | 139 | 'path' => 'b/{bucket}/acl/{entity}', |
| 140 | 140 | 'httpMethod' => 'PUT', |
| 141 | 141 | 'parameters' => array( |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | 'type' => 'string', |
| 179 | 179 | ), |
| 180 | 180 | ), |
| 181 | - ),'get' => array( |
|
| 181 | + ), 'get' => array( |
|
| 182 | 182 | 'path' => 'b/{bucket}', |
| 183 | 183 | 'httpMethod' => 'GET', |
| 184 | 184 | 'parameters' => array( |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | 'type' => 'string', |
| 201 | 201 | ), |
| 202 | 202 | ), |
| 203 | - ),'insert' => array( |
|
| 203 | + ), 'insert' => array( |
|
| 204 | 204 | 'path' => 'b', |
| 205 | 205 | 'httpMethod' => 'POST', |
| 206 | 206 | 'parameters' => array( |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | 'type' => 'string', |
| 223 | 223 | ), |
| 224 | 224 | ), |
| 225 | - ),'list' => array( |
|
| 225 | + ), 'list' => array( |
|
| 226 | 226 | 'path' => 'b', |
| 227 | 227 | 'httpMethod' => 'GET', |
| 228 | 228 | 'parameters' => array( |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | 'type' => 'integer', |
| 249 | 249 | ), |
| 250 | 250 | ), |
| 251 | - ),'patch' => array( |
|
| 251 | + ), 'patch' => array( |
|
| 252 | 252 | 'path' => 'b/{bucket}', |
| 253 | 253 | 'httpMethod' => 'PATCH', |
| 254 | 254 | 'parameters' => array( |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | 'type' => 'string', |
| 279 | 279 | ), |
| 280 | 280 | ), |
| 281 | - ),'update' => array( |
|
| 281 | + ), 'update' => array( |
|
| 282 | 282 | 'path' => 'b/{bucket}', |
| 283 | 283 | 'httpMethod' => 'PUT', |
| 284 | 284 | 'parameters' => array( |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | 'required' => true, |
| 348 | 348 | ), |
| 349 | 349 | ), |
| 350 | - ),'get' => array( |
|
| 350 | + ), 'get' => array( |
|
| 351 | 351 | 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
| 352 | 352 | 'httpMethod' => 'GET', |
| 353 | 353 | 'parameters' => array( |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | 'required' => true, |
| 363 | 363 | ), |
| 364 | 364 | ), |
| 365 | - ),'insert' => array( |
|
| 365 | + ), 'insert' => array( |
|
| 366 | 366 | 'path' => 'b/{bucket}/defaultObjectAcl', |
| 367 | 367 | 'httpMethod' => 'POST', |
| 368 | 368 | 'parameters' => array( |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | 'required' => true, |
| 373 | 373 | ), |
| 374 | 374 | ), |
| 375 | - ),'list' => array( |
|
| 375 | + ), 'list' => array( |
|
| 376 | 376 | 'path' => 'b/{bucket}/defaultObjectAcl', |
| 377 | 377 | 'httpMethod' => 'GET', |
| 378 | 378 | 'parameters' => array( |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | 'type' => 'string', |
| 391 | 391 | ), |
| 392 | 392 | ), |
| 393 | - ),'patch' => array( |
|
| 393 | + ), 'patch' => array( |
|
| 394 | 394 | 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
| 395 | 395 | 'httpMethod' => 'PATCH', |
| 396 | 396 | 'parameters' => array( |
@@ -405,7 +405,7 @@ discard block |
||
| 405 | 405 | 'required' => true, |
| 406 | 406 | ), |
| 407 | 407 | ), |
| 408 | - ),'update' => array( |
|
| 408 | + ), 'update' => array( |
|
| 409 | 409 | 'path' => 'b/{bucket}/defaultObjectAcl/{entity}', |
| 410 | 410 | 'httpMethod' => 'PUT', |
| 411 | 411 | 'parameters' => array( |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | 'type' => 'string', |
| 455 | 455 | ), |
| 456 | 456 | ), |
| 457 | - ),'get' => array( |
|
| 457 | + ), 'get' => array( |
|
| 458 | 458 | 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
| 459 | 459 | 'httpMethod' => 'GET', |
| 460 | 460 | 'parameters' => array( |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | 'type' => 'string', |
| 479 | 479 | ), |
| 480 | 480 | ), |
| 481 | - ),'insert' => array( |
|
| 481 | + ), 'insert' => array( |
|
| 482 | 482 | 'path' => 'b/{bucket}/o/{object}/acl', |
| 483 | 483 | 'httpMethod' => 'POST', |
| 484 | 484 | 'parameters' => array( |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | 'type' => 'string', |
| 498 | 498 | ), |
| 499 | 499 | ), |
| 500 | - ),'list' => array( |
|
| 500 | + ), 'list' => array( |
|
| 501 | 501 | 'path' => 'b/{bucket}/o/{object}/acl', |
| 502 | 502 | 'httpMethod' => 'GET', |
| 503 | 503 | 'parameters' => array( |
@@ -516,7 +516,7 @@ discard block |
||
| 516 | 516 | 'type' => 'string', |
| 517 | 517 | ), |
| 518 | 518 | ), |
| 519 | - ),'patch' => array( |
|
| 519 | + ), 'patch' => array( |
|
| 520 | 520 | 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
| 521 | 521 | 'httpMethod' => 'PATCH', |
| 522 | 522 | 'parameters' => array( |
@@ -540,7 +540,7 @@ discard block |
||
| 540 | 540 | 'type' => 'string', |
| 541 | 541 | ), |
| 542 | 542 | ), |
| 543 | - ),'update' => array( |
|
| 543 | + ), 'update' => array( |
|
| 544 | 544 | 'path' => 'b/{bucket}/o/{object}/acl/{entity}', |
| 545 | 545 | 'httpMethod' => 'PUT', |
| 546 | 546 | 'parameters' => array( |
@@ -601,7 +601,7 @@ discard block |
||
| 601 | 601 | 'type' => 'string', |
| 602 | 602 | ), |
| 603 | 603 | ), |
| 604 | - ),'copy' => array( |
|
| 604 | + ), 'copy' => array( |
|
| 605 | 605 | 'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}', |
| 606 | 606 | 'httpMethod' => 'POST', |
| 607 | 607 | 'parameters' => array( |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | 'type' => 'string', |
| 671 | 671 | ), |
| 672 | 672 | ), |
| 673 | - ),'delete' => array( |
|
| 673 | + ), 'delete' => array( |
|
| 674 | 674 | 'path' => 'b/{bucket}/o/{object}', |
| 675 | 675 | 'httpMethod' => 'DELETE', |
| 676 | 676 | 'parameters' => array( |
@@ -705,7 +705,7 @@ discard block |
||
| 705 | 705 | 'type' => 'string', |
| 706 | 706 | ), |
| 707 | 707 | ), |
| 708 | - ),'get' => array( |
|
| 708 | + ), 'get' => array( |
|
| 709 | 709 | 'path' => 'b/{bucket}/o/{object}', |
| 710 | 710 | 'httpMethod' => 'GET', |
| 711 | 711 | 'parameters' => array( |
@@ -744,7 +744,7 @@ discard block |
||
| 744 | 744 | 'type' => 'string', |
| 745 | 745 | ), |
| 746 | 746 | ), |
| 747 | - ),'insert' => array( |
|
| 747 | + ), 'insert' => array( |
|
| 748 | 748 | 'path' => 'b/{bucket}/o', |
| 749 | 749 | 'httpMethod' => 'POST', |
| 750 | 750 | 'parameters' => array( |
@@ -786,7 +786,7 @@ discard block |
||
| 786 | 786 | 'type' => 'string', |
| 787 | 787 | ), |
| 788 | 788 | ), |
| 789 | - ),'list' => array( |
|
| 789 | + ), 'list' => array( |
|
| 790 | 790 | 'path' => 'b/{bucket}/o', |
| 791 | 791 | 'httpMethod' => 'GET', |
| 792 | 792 | 'parameters' => array( |
@@ -820,7 +820,7 @@ discard block |
||
| 820 | 820 | 'type' => 'string', |
| 821 | 821 | ), |
| 822 | 822 | ), |
| 823 | - ),'patch' => array( |
|
| 823 | + ), 'patch' => array( |
|
| 824 | 824 | 'path' => 'b/{bucket}/o/{object}', |
| 825 | 825 | 'httpMethod' => 'PATCH', |
| 826 | 826 | 'parameters' => array( |
@@ -863,7 +863,7 @@ discard block |
||
| 863 | 863 | 'type' => 'string', |
| 864 | 864 | ), |
| 865 | 865 | ), |
| 866 | - ),'rewrite' => array( |
|
| 866 | + ), 'rewrite' => array( |
|
| 867 | 867 | 'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}', |
| 868 | 868 | 'httpMethod' => 'POST', |
| 869 | 869 | 'parameters' => array( |
@@ -940,7 +940,7 @@ discard block |
||
| 940 | 940 | 'type' => 'string', |
| 941 | 941 | ), |
| 942 | 942 | ), |
| 943 | - ),'update' => array( |
|
| 943 | + ), 'update' => array( |
|
| 944 | 944 | 'path' => 'b/{bucket}/o/{object}', |
| 945 | 945 | 'httpMethod' => 'PUT', |
| 946 | 946 | 'parameters' => array( |
@@ -983,7 +983,7 @@ discard block |
||
| 983 | 983 | 'type' => 'string', |
| 984 | 984 | ), |
| 985 | 985 | ), |
| 986 | - ),'watchAll' => array( |
|
| 986 | + ), 'watchAll' => array( |
|
| 987 | 987 | 'path' => 'b/{bucket}/o/watch', |
| 988 | 988 | 'httpMethod' => 'POST', |
| 989 | 989 | 'parameters' => array( |
@@ -33,19 +33,19 @@ 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 and manage your Google Compute Engine resources. */ |
| 38 | 38 | const COMPUTE = |
| 39 | - "https://www.googleapis.com/auth/compute"; |
|
| 39 | + "https://www.googleapis.com/auth/compute"; |
|
| 40 | 40 | /** View your Google Compute Engine resources. */ |
| 41 | 41 | const COMPUTE_READONLY = |
| 42 | - "https://www.googleapis.com/auth/compute.readonly"; |
|
| 42 | + "https://www.googleapis.com/auth/compute.readonly"; |
|
| 43 | 43 | /** View and manage your Google Cloud Platform management resources and deployment status information. */ |
| 44 | 44 | const NDEV_CLOUDMAN = |
| 45 | - "https://www.googleapis.com/auth/ndev.cloudman"; |
|
| 45 | + "https://www.googleapis.com/auth/ndev.cloudman"; |
|
| 46 | 46 | /** View your Google Cloud Platform management resources and deployment status information. */ |
| 47 | 47 | const NDEV_CLOUDMAN_READONLY = |
| 48 | - "https://www.googleapis.com/auth/ndev.cloudman.readonly"; |
|
| 48 | + "https://www.googleapis.com/auth/ndev.cloudman.readonly"; |
|
| 49 | 49 | |
| 50 | 50 | public $zoneOperations; |
| 51 | 51 | public $zoneViews; |
@@ -58,281 +58,281 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function __construct(Google_Client $client) |
| 60 | 60 | { |
| 61 | - parent::__construct($client); |
|
| 62 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 63 | - $this->servicePath = 'resourceviews/v1beta2/projects/'; |
|
| 64 | - $this->version = 'v1beta2'; |
|
| 65 | - $this->serviceName = 'resourceviews'; |
|
| 66 | - |
|
| 67 | - $this->zoneOperations = new Google_Service_Resourceviews_ZoneOperations_Resource( |
|
| 68 | - $this, |
|
| 69 | - $this->serviceName, |
|
| 70 | - 'zoneOperations', |
|
| 71 | - array( |
|
| 72 | - 'methods' => array( |
|
| 73 | - 'get' => array( |
|
| 74 | - 'path' => '{project}/zones/{zone}/operations/{operation}', |
|
| 75 | - 'httpMethod' => 'GET', |
|
| 76 | - 'parameters' => array( |
|
| 77 | - 'project' => array( |
|
| 78 | - 'location' => 'path', |
|
| 79 | - 'type' => 'string', |
|
| 80 | - 'required' => true, |
|
| 81 | - ), |
|
| 82 | - 'zone' => array( |
|
| 83 | - 'location' => 'path', |
|
| 84 | - 'type' => 'string', |
|
| 85 | - 'required' => true, |
|
| 86 | - ), |
|
| 87 | - 'operation' => array( |
|
| 88 | - 'location' => 'path', |
|
| 89 | - 'type' => 'string', |
|
| 90 | - 'required' => true, |
|
| 91 | - ), |
|
| 92 | - ), |
|
| 93 | - ),'list' => array( |
|
| 94 | - 'path' => '{project}/zones/{zone}/operations', |
|
| 95 | - 'httpMethod' => 'GET', |
|
| 96 | - 'parameters' => array( |
|
| 97 | - 'project' => array( |
|
| 98 | - 'location' => 'path', |
|
| 99 | - 'type' => 'string', |
|
| 100 | - 'required' => true, |
|
| 101 | - ), |
|
| 102 | - 'zone' => array( |
|
| 103 | - 'location' => 'path', |
|
| 104 | - 'type' => 'string', |
|
| 105 | - 'required' => true, |
|
| 106 | - ), |
|
| 107 | - 'filter' => array( |
|
| 108 | - 'location' => 'query', |
|
| 109 | - 'type' => 'string', |
|
| 110 | - ), |
|
| 111 | - 'pageToken' => array( |
|
| 112 | - 'location' => 'query', |
|
| 113 | - 'type' => 'string', |
|
| 114 | - ), |
|
| 115 | - 'maxResults' => array( |
|
| 116 | - 'location' => 'query', |
|
| 117 | - 'type' => 'integer', |
|
| 118 | - ), |
|
| 119 | - ), |
|
| 120 | - ), |
|
| 121 | - ) |
|
| 122 | - ) |
|
| 123 | - ); |
|
| 124 | - $this->zoneViews = new Google_Service_Resourceviews_ZoneViews_Resource( |
|
| 125 | - $this, |
|
| 126 | - $this->serviceName, |
|
| 127 | - 'zoneViews', |
|
| 128 | - array( |
|
| 129 | - 'methods' => array( |
|
| 130 | - 'addResources' => array( |
|
| 131 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources', |
|
| 132 | - 'httpMethod' => 'POST', |
|
| 133 | - 'parameters' => array( |
|
| 134 | - 'project' => array( |
|
| 135 | - 'location' => 'path', |
|
| 136 | - 'type' => 'string', |
|
| 137 | - 'required' => true, |
|
| 138 | - ), |
|
| 139 | - 'zone' => array( |
|
| 140 | - 'location' => 'path', |
|
| 141 | - 'type' => 'string', |
|
| 142 | - 'required' => true, |
|
| 143 | - ), |
|
| 144 | - 'resourceView' => array( |
|
| 145 | - 'location' => 'path', |
|
| 146 | - 'type' => 'string', |
|
| 147 | - 'required' => true, |
|
| 148 | - ), |
|
| 149 | - ), |
|
| 150 | - ),'delete' => array( |
|
| 151 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', |
|
| 152 | - 'httpMethod' => 'DELETE', |
|
| 153 | - 'parameters' => array( |
|
| 154 | - 'project' => array( |
|
| 155 | - 'location' => 'path', |
|
| 156 | - 'type' => 'string', |
|
| 157 | - 'required' => true, |
|
| 158 | - ), |
|
| 159 | - 'zone' => array( |
|
| 160 | - 'location' => 'path', |
|
| 161 | - 'type' => 'string', |
|
| 162 | - 'required' => true, |
|
| 163 | - ), |
|
| 164 | - 'resourceView' => array( |
|
| 165 | - 'location' => 'path', |
|
| 166 | - 'type' => 'string', |
|
| 167 | - 'required' => true, |
|
| 168 | - ), |
|
| 169 | - ), |
|
| 170 | - ),'get' => array( |
|
| 171 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', |
|
| 172 | - 'httpMethod' => 'GET', |
|
| 173 | - 'parameters' => array( |
|
| 174 | - 'project' => array( |
|
| 175 | - 'location' => 'path', |
|
| 176 | - 'type' => 'string', |
|
| 177 | - 'required' => true, |
|
| 178 | - ), |
|
| 179 | - 'zone' => array( |
|
| 180 | - 'location' => 'path', |
|
| 181 | - 'type' => 'string', |
|
| 182 | - 'required' => true, |
|
| 183 | - ), |
|
| 184 | - 'resourceView' => array( |
|
| 185 | - 'location' => 'path', |
|
| 186 | - 'type' => 'string', |
|
| 187 | - 'required' => true, |
|
| 188 | - ), |
|
| 189 | - ), |
|
| 190 | - ),'getService' => array( |
|
| 191 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService', |
|
| 192 | - 'httpMethod' => 'POST', |
|
| 193 | - 'parameters' => array( |
|
| 194 | - 'project' => array( |
|
| 195 | - 'location' => 'path', |
|
| 196 | - 'type' => 'string', |
|
| 197 | - 'required' => true, |
|
| 198 | - ), |
|
| 199 | - 'zone' => array( |
|
| 200 | - 'location' => 'path', |
|
| 201 | - 'type' => 'string', |
|
| 202 | - 'required' => true, |
|
| 203 | - ), |
|
| 204 | - 'resourceView' => array( |
|
| 205 | - 'location' => 'path', |
|
| 206 | - 'type' => 'string', |
|
| 207 | - 'required' => true, |
|
| 208 | - ), |
|
| 209 | - 'resourceName' => array( |
|
| 210 | - 'location' => 'query', |
|
| 211 | - 'type' => 'string', |
|
| 212 | - ), |
|
| 213 | - ), |
|
| 214 | - ),'insert' => array( |
|
| 215 | - 'path' => '{project}/zones/{zone}/resourceViews', |
|
| 216 | - 'httpMethod' => 'POST', |
|
| 217 | - 'parameters' => array( |
|
| 218 | - 'project' => array( |
|
| 219 | - 'location' => 'path', |
|
| 220 | - 'type' => 'string', |
|
| 221 | - 'required' => true, |
|
| 222 | - ), |
|
| 223 | - 'zone' => array( |
|
| 224 | - 'location' => 'path', |
|
| 225 | - 'type' => 'string', |
|
| 226 | - 'required' => true, |
|
| 227 | - ), |
|
| 228 | - ), |
|
| 229 | - ),'list' => array( |
|
| 230 | - 'path' => '{project}/zones/{zone}/resourceViews', |
|
| 231 | - 'httpMethod' => 'GET', |
|
| 232 | - 'parameters' => array( |
|
| 233 | - 'project' => array( |
|
| 234 | - 'location' => 'path', |
|
| 235 | - 'type' => 'string', |
|
| 236 | - 'required' => true, |
|
| 237 | - ), |
|
| 238 | - 'zone' => array( |
|
| 239 | - 'location' => 'path', |
|
| 240 | - 'type' => 'string', |
|
| 241 | - 'required' => true, |
|
| 242 | - ), |
|
| 243 | - 'pageToken' => array( |
|
| 244 | - 'location' => 'query', |
|
| 245 | - 'type' => 'string', |
|
| 246 | - ), |
|
| 247 | - 'maxResults' => array( |
|
| 248 | - 'location' => 'query', |
|
| 249 | - 'type' => 'integer', |
|
| 250 | - ), |
|
| 251 | - ), |
|
| 252 | - ),'listResources' => array( |
|
| 253 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources', |
|
| 254 | - 'httpMethod' => 'GET', |
|
| 255 | - 'parameters' => array( |
|
| 256 | - 'project' => array( |
|
| 257 | - 'location' => 'path', |
|
| 258 | - 'type' => 'string', |
|
| 259 | - 'required' => true, |
|
| 260 | - ), |
|
| 261 | - 'zone' => array( |
|
| 262 | - 'location' => 'path', |
|
| 263 | - 'type' => 'string', |
|
| 264 | - 'required' => true, |
|
| 265 | - ), |
|
| 266 | - 'resourceView' => array( |
|
| 267 | - 'location' => 'path', |
|
| 268 | - 'type' => 'string', |
|
| 269 | - 'required' => true, |
|
| 270 | - ), |
|
| 271 | - 'listState' => array( |
|
| 272 | - 'location' => 'query', |
|
| 273 | - 'type' => 'string', |
|
| 274 | - ), |
|
| 275 | - 'format' => array( |
|
| 276 | - 'location' => 'query', |
|
| 277 | - 'type' => 'string', |
|
| 278 | - ), |
|
| 279 | - 'maxResults' => array( |
|
| 280 | - 'location' => 'query', |
|
| 281 | - 'type' => 'integer', |
|
| 282 | - ), |
|
| 283 | - 'pageToken' => array( |
|
| 284 | - 'location' => 'query', |
|
| 285 | - 'type' => 'string', |
|
| 286 | - ), |
|
| 287 | - 'serviceName' => array( |
|
| 288 | - 'location' => 'query', |
|
| 289 | - 'type' => 'string', |
|
| 290 | - ), |
|
| 291 | - ), |
|
| 292 | - ),'removeResources' => array( |
|
| 293 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources', |
|
| 294 | - 'httpMethod' => 'POST', |
|
| 295 | - 'parameters' => array( |
|
| 296 | - 'project' => array( |
|
| 297 | - 'location' => 'path', |
|
| 298 | - 'type' => 'string', |
|
| 299 | - 'required' => true, |
|
| 300 | - ), |
|
| 301 | - 'zone' => array( |
|
| 302 | - 'location' => 'path', |
|
| 303 | - 'type' => 'string', |
|
| 304 | - 'required' => true, |
|
| 305 | - ), |
|
| 306 | - 'resourceView' => array( |
|
| 307 | - 'location' => 'path', |
|
| 308 | - 'type' => 'string', |
|
| 309 | - 'required' => true, |
|
| 310 | - ), |
|
| 311 | - ), |
|
| 312 | - ),'setService' => array( |
|
| 313 | - 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService', |
|
| 314 | - 'httpMethod' => 'POST', |
|
| 315 | - 'parameters' => array( |
|
| 316 | - 'project' => array( |
|
| 317 | - 'location' => 'path', |
|
| 318 | - 'type' => 'string', |
|
| 319 | - 'required' => true, |
|
| 320 | - ), |
|
| 321 | - 'zone' => array( |
|
| 322 | - 'location' => 'path', |
|
| 323 | - 'type' => 'string', |
|
| 324 | - 'required' => true, |
|
| 325 | - ), |
|
| 326 | - 'resourceView' => array( |
|
| 327 | - 'location' => 'path', |
|
| 328 | - 'type' => 'string', |
|
| 329 | - 'required' => true, |
|
| 330 | - ), |
|
| 331 | - ), |
|
| 332 | - ), |
|
| 333 | - ) |
|
| 334 | - ) |
|
| 335 | - ); |
|
| 61 | + parent::__construct($client); |
|
| 62 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 63 | + $this->servicePath = 'resourceviews/v1beta2/projects/'; |
|
| 64 | + $this->version = 'v1beta2'; |
|
| 65 | + $this->serviceName = 'resourceviews'; |
|
| 66 | + |
|
| 67 | + $this->zoneOperations = new Google_Service_Resourceviews_ZoneOperations_Resource( |
|
| 68 | + $this, |
|
| 69 | + $this->serviceName, |
|
| 70 | + 'zoneOperations', |
|
| 71 | + array( |
|
| 72 | + 'methods' => array( |
|
| 73 | + 'get' => array( |
|
| 74 | + 'path' => '{project}/zones/{zone}/operations/{operation}', |
|
| 75 | + 'httpMethod' => 'GET', |
|
| 76 | + 'parameters' => array( |
|
| 77 | + 'project' => array( |
|
| 78 | + 'location' => 'path', |
|
| 79 | + 'type' => 'string', |
|
| 80 | + 'required' => true, |
|
| 81 | + ), |
|
| 82 | + 'zone' => array( |
|
| 83 | + 'location' => 'path', |
|
| 84 | + 'type' => 'string', |
|
| 85 | + 'required' => true, |
|
| 86 | + ), |
|
| 87 | + 'operation' => array( |
|
| 88 | + 'location' => 'path', |
|
| 89 | + 'type' => 'string', |
|
| 90 | + 'required' => true, |
|
| 91 | + ), |
|
| 92 | + ), |
|
| 93 | + ),'list' => array( |
|
| 94 | + 'path' => '{project}/zones/{zone}/operations', |
|
| 95 | + 'httpMethod' => 'GET', |
|
| 96 | + 'parameters' => array( |
|
| 97 | + 'project' => array( |
|
| 98 | + 'location' => 'path', |
|
| 99 | + 'type' => 'string', |
|
| 100 | + 'required' => true, |
|
| 101 | + ), |
|
| 102 | + 'zone' => array( |
|
| 103 | + 'location' => 'path', |
|
| 104 | + 'type' => 'string', |
|
| 105 | + 'required' => true, |
|
| 106 | + ), |
|
| 107 | + 'filter' => array( |
|
| 108 | + 'location' => 'query', |
|
| 109 | + 'type' => 'string', |
|
| 110 | + ), |
|
| 111 | + 'pageToken' => array( |
|
| 112 | + 'location' => 'query', |
|
| 113 | + 'type' => 'string', |
|
| 114 | + ), |
|
| 115 | + 'maxResults' => array( |
|
| 116 | + 'location' => 'query', |
|
| 117 | + 'type' => 'integer', |
|
| 118 | + ), |
|
| 119 | + ), |
|
| 120 | + ), |
|
| 121 | + ) |
|
| 122 | + ) |
|
| 123 | + ); |
|
| 124 | + $this->zoneViews = new Google_Service_Resourceviews_ZoneViews_Resource( |
|
| 125 | + $this, |
|
| 126 | + $this->serviceName, |
|
| 127 | + 'zoneViews', |
|
| 128 | + array( |
|
| 129 | + 'methods' => array( |
|
| 130 | + 'addResources' => array( |
|
| 131 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources', |
|
| 132 | + 'httpMethod' => 'POST', |
|
| 133 | + 'parameters' => array( |
|
| 134 | + 'project' => array( |
|
| 135 | + 'location' => 'path', |
|
| 136 | + 'type' => 'string', |
|
| 137 | + 'required' => true, |
|
| 138 | + ), |
|
| 139 | + 'zone' => array( |
|
| 140 | + 'location' => 'path', |
|
| 141 | + 'type' => 'string', |
|
| 142 | + 'required' => true, |
|
| 143 | + ), |
|
| 144 | + 'resourceView' => array( |
|
| 145 | + 'location' => 'path', |
|
| 146 | + 'type' => 'string', |
|
| 147 | + 'required' => true, |
|
| 148 | + ), |
|
| 149 | + ), |
|
| 150 | + ),'delete' => array( |
|
| 151 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', |
|
| 152 | + 'httpMethod' => 'DELETE', |
|
| 153 | + 'parameters' => array( |
|
| 154 | + 'project' => array( |
|
| 155 | + 'location' => 'path', |
|
| 156 | + 'type' => 'string', |
|
| 157 | + 'required' => true, |
|
| 158 | + ), |
|
| 159 | + 'zone' => array( |
|
| 160 | + 'location' => 'path', |
|
| 161 | + 'type' => 'string', |
|
| 162 | + 'required' => true, |
|
| 163 | + ), |
|
| 164 | + 'resourceView' => array( |
|
| 165 | + 'location' => 'path', |
|
| 166 | + 'type' => 'string', |
|
| 167 | + 'required' => true, |
|
| 168 | + ), |
|
| 169 | + ), |
|
| 170 | + ),'get' => array( |
|
| 171 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', |
|
| 172 | + 'httpMethod' => 'GET', |
|
| 173 | + 'parameters' => array( |
|
| 174 | + 'project' => array( |
|
| 175 | + 'location' => 'path', |
|
| 176 | + 'type' => 'string', |
|
| 177 | + 'required' => true, |
|
| 178 | + ), |
|
| 179 | + 'zone' => array( |
|
| 180 | + 'location' => 'path', |
|
| 181 | + 'type' => 'string', |
|
| 182 | + 'required' => true, |
|
| 183 | + ), |
|
| 184 | + 'resourceView' => array( |
|
| 185 | + 'location' => 'path', |
|
| 186 | + 'type' => 'string', |
|
| 187 | + 'required' => true, |
|
| 188 | + ), |
|
| 189 | + ), |
|
| 190 | + ),'getService' => array( |
|
| 191 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService', |
|
| 192 | + 'httpMethod' => 'POST', |
|
| 193 | + 'parameters' => array( |
|
| 194 | + 'project' => array( |
|
| 195 | + 'location' => 'path', |
|
| 196 | + 'type' => 'string', |
|
| 197 | + 'required' => true, |
|
| 198 | + ), |
|
| 199 | + 'zone' => array( |
|
| 200 | + 'location' => 'path', |
|
| 201 | + 'type' => 'string', |
|
| 202 | + 'required' => true, |
|
| 203 | + ), |
|
| 204 | + 'resourceView' => array( |
|
| 205 | + 'location' => 'path', |
|
| 206 | + 'type' => 'string', |
|
| 207 | + 'required' => true, |
|
| 208 | + ), |
|
| 209 | + 'resourceName' => array( |
|
| 210 | + 'location' => 'query', |
|
| 211 | + 'type' => 'string', |
|
| 212 | + ), |
|
| 213 | + ), |
|
| 214 | + ),'insert' => array( |
|
| 215 | + 'path' => '{project}/zones/{zone}/resourceViews', |
|
| 216 | + 'httpMethod' => 'POST', |
|
| 217 | + 'parameters' => array( |
|
| 218 | + 'project' => array( |
|
| 219 | + 'location' => 'path', |
|
| 220 | + 'type' => 'string', |
|
| 221 | + 'required' => true, |
|
| 222 | + ), |
|
| 223 | + 'zone' => array( |
|
| 224 | + 'location' => 'path', |
|
| 225 | + 'type' => 'string', |
|
| 226 | + 'required' => true, |
|
| 227 | + ), |
|
| 228 | + ), |
|
| 229 | + ),'list' => array( |
|
| 230 | + 'path' => '{project}/zones/{zone}/resourceViews', |
|
| 231 | + 'httpMethod' => 'GET', |
|
| 232 | + 'parameters' => array( |
|
| 233 | + 'project' => array( |
|
| 234 | + 'location' => 'path', |
|
| 235 | + 'type' => 'string', |
|
| 236 | + 'required' => true, |
|
| 237 | + ), |
|
| 238 | + 'zone' => array( |
|
| 239 | + 'location' => 'path', |
|
| 240 | + 'type' => 'string', |
|
| 241 | + 'required' => true, |
|
| 242 | + ), |
|
| 243 | + 'pageToken' => array( |
|
| 244 | + 'location' => 'query', |
|
| 245 | + 'type' => 'string', |
|
| 246 | + ), |
|
| 247 | + 'maxResults' => array( |
|
| 248 | + 'location' => 'query', |
|
| 249 | + 'type' => 'integer', |
|
| 250 | + ), |
|
| 251 | + ), |
|
| 252 | + ),'listResources' => array( |
|
| 253 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources', |
|
| 254 | + 'httpMethod' => 'GET', |
|
| 255 | + 'parameters' => array( |
|
| 256 | + 'project' => array( |
|
| 257 | + 'location' => 'path', |
|
| 258 | + 'type' => 'string', |
|
| 259 | + 'required' => true, |
|
| 260 | + ), |
|
| 261 | + 'zone' => array( |
|
| 262 | + 'location' => 'path', |
|
| 263 | + 'type' => 'string', |
|
| 264 | + 'required' => true, |
|
| 265 | + ), |
|
| 266 | + 'resourceView' => array( |
|
| 267 | + 'location' => 'path', |
|
| 268 | + 'type' => 'string', |
|
| 269 | + 'required' => true, |
|
| 270 | + ), |
|
| 271 | + 'listState' => array( |
|
| 272 | + 'location' => 'query', |
|
| 273 | + 'type' => 'string', |
|
| 274 | + ), |
|
| 275 | + 'format' => array( |
|
| 276 | + 'location' => 'query', |
|
| 277 | + 'type' => 'string', |
|
| 278 | + ), |
|
| 279 | + 'maxResults' => array( |
|
| 280 | + 'location' => 'query', |
|
| 281 | + 'type' => 'integer', |
|
| 282 | + ), |
|
| 283 | + 'pageToken' => array( |
|
| 284 | + 'location' => 'query', |
|
| 285 | + 'type' => 'string', |
|
| 286 | + ), |
|
| 287 | + 'serviceName' => array( |
|
| 288 | + 'location' => 'query', |
|
| 289 | + 'type' => 'string', |
|
| 290 | + ), |
|
| 291 | + ), |
|
| 292 | + ),'removeResources' => array( |
|
| 293 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources', |
|
| 294 | + 'httpMethod' => 'POST', |
|
| 295 | + 'parameters' => array( |
|
| 296 | + 'project' => array( |
|
| 297 | + 'location' => 'path', |
|
| 298 | + 'type' => 'string', |
|
| 299 | + 'required' => true, |
|
| 300 | + ), |
|
| 301 | + 'zone' => array( |
|
| 302 | + 'location' => 'path', |
|
| 303 | + 'type' => 'string', |
|
| 304 | + 'required' => true, |
|
| 305 | + ), |
|
| 306 | + 'resourceView' => array( |
|
| 307 | + 'location' => 'path', |
|
| 308 | + 'type' => 'string', |
|
| 309 | + 'required' => true, |
|
| 310 | + ), |
|
| 311 | + ), |
|
| 312 | + ),'setService' => array( |
|
| 313 | + 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService', |
|
| 314 | + 'httpMethod' => 'POST', |
|
| 315 | + 'parameters' => array( |
|
| 316 | + 'project' => array( |
|
| 317 | + 'location' => 'path', |
|
| 318 | + 'type' => 'string', |
|
| 319 | + 'required' => true, |
|
| 320 | + ), |
|
| 321 | + 'zone' => array( |
|
| 322 | + 'location' => 'path', |
|
| 323 | + 'type' => 'string', |
|
| 324 | + 'required' => true, |
|
| 325 | + ), |
|
| 326 | + 'resourceView' => array( |
|
| 327 | + 'location' => 'path', |
|
| 328 | + 'type' => 'string', |
|
| 329 | + 'required' => true, |
|
| 330 | + ), |
|
| 331 | + ), |
|
| 332 | + ), |
|
| 333 | + ) |
|
| 334 | + ) |
|
| 335 | + ); |
|
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | |
@@ -360,9 +360,9 @@ discard block |
||
| 360 | 360 | */ |
| 361 | 361 | public function get($project, $zone, $operation, $optParams = array()) |
| 362 | 362 | { |
| 363 | - $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); |
|
| 364 | - $params = array_merge($params, $optParams); |
|
| 365 | - return $this->call('get', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 363 | + $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation); |
|
| 364 | + $params = array_merge($params, $optParams); |
|
| 365 | + return $this->call('get', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -383,9 +383,9 @@ discard block |
||
| 383 | 383 | */ |
| 384 | 384 | public function listZoneOperations($project, $zone, $optParams = array()) |
| 385 | 385 | { |
| 386 | - $params = array('project' => $project, 'zone' => $zone); |
|
| 387 | - $params = array_merge($params, $optParams); |
|
| 388 | - return $this->call('list', array($params), "Google_Service_Resourceviews_OperationList"); |
|
| 386 | + $params = array('project' => $project, 'zone' => $zone); |
|
| 387 | + $params = array_merge($params, $optParams); |
|
| 388 | + return $this->call('list', array($params), "Google_Service_Resourceviews_OperationList"); |
|
| 389 | 389 | } |
| 390 | 390 | } |
| 391 | 391 | |
@@ -412,9 +412,9 @@ discard block |
||
| 412 | 412 | */ |
| 413 | 413 | public function addResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody, $optParams = array()) |
| 414 | 414 | { |
| 415 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 416 | - $params = array_merge($params, $optParams); |
|
| 417 | - return $this->call('addResources', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 415 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 416 | + $params = array_merge($params, $optParams); |
|
| 417 | + return $this->call('addResources', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | /** |
@@ -428,9 +428,9 @@ discard block |
||
| 428 | 428 | */ |
| 429 | 429 | public function delete($project, $zone, $resourceView, $optParams = array()) |
| 430 | 430 | { |
| 431 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 432 | - $params = array_merge($params, $optParams); |
|
| 433 | - return $this->call('delete', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 431 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 432 | + $params = array_merge($params, $optParams); |
|
| 433 | + return $this->call('delete', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | /** |
@@ -444,9 +444,9 @@ discard block |
||
| 444 | 444 | */ |
| 445 | 445 | public function get($project, $zone, $resourceView, $optParams = array()) |
| 446 | 446 | { |
| 447 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 448 | - $params = array_merge($params, $optParams); |
|
| 449 | - return $this->call('get', array($params), "Google_Service_Resourceviews_ResourceView"); |
|
| 447 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 448 | + $params = array_merge($params, $optParams); |
|
| 449 | + return $this->call('get', array($params), "Google_Service_Resourceviews_ResourceView"); |
|
| 450 | 450 | } |
| 451 | 451 | |
| 452 | 452 | /** |
@@ -464,9 +464,9 @@ discard block |
||
| 464 | 464 | */ |
| 465 | 465 | public function getService($project, $zone, $resourceView, $optParams = array()) |
| 466 | 466 | { |
| 467 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 468 | - $params = array_merge($params, $optParams); |
|
| 469 | - return $this->call('getService', array($params), "Google_Service_Resourceviews_ZoneViewsGetServiceResponse"); |
|
| 467 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 468 | + $params = array_merge($params, $optParams); |
|
| 469 | + return $this->call('getService', array($params), "Google_Service_Resourceviews_ZoneViewsGetServiceResponse"); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | /** |
@@ -480,9 +480,9 @@ discard block |
||
| 480 | 480 | */ |
| 481 | 481 | public function insert($project, $zone, Google_Service_Resourceviews_ResourceView $postBody, $optParams = array()) |
| 482 | 482 | { |
| 483 | - $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); |
|
| 484 | - $params = array_merge($params, $optParams); |
|
| 485 | - return $this->call('insert', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 483 | + $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody); |
|
| 484 | + $params = array_merge($params, $optParams); |
|
| 485 | + return $this->call('insert', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 486 | 486 | } |
| 487 | 487 | |
| 488 | 488 | /** |
@@ -501,9 +501,9 @@ discard block |
||
| 501 | 501 | */ |
| 502 | 502 | public function listZoneViews($project, $zone, $optParams = array()) |
| 503 | 503 | { |
| 504 | - $params = array('project' => $project, 'zone' => $zone); |
|
| 505 | - $params = array_merge($params, $optParams); |
|
| 506 | - return $this->call('list', array($params), "Google_Service_Resourceviews_ZoneViewsList"); |
|
| 504 | + $params = array('project' => $project, 'zone' => $zone); |
|
| 505 | + $params = array_merge($params, $optParams); |
|
| 506 | + return $this->call('list', array($params), "Google_Service_Resourceviews_ZoneViewsList"); |
|
| 507 | 507 | } |
| 508 | 508 | |
| 509 | 509 | /** |
@@ -531,9 +531,9 @@ discard block |
||
| 531 | 531 | */ |
| 532 | 532 | public function listResources($project, $zone, $resourceView, $optParams = array()) |
| 533 | 533 | { |
| 534 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 535 | - $params = array_merge($params, $optParams); |
|
| 536 | - return $this->call('listResources', array($params), "Google_Service_Resourceviews_ZoneViewsListResourcesResponse"); |
|
| 534 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView); |
|
| 535 | + $params = array_merge($params, $optParams); |
|
| 536 | + return $this->call('listResources', array($params), "Google_Service_Resourceviews_ZoneViewsListResourcesResponse"); |
|
| 537 | 537 | } |
| 538 | 538 | |
| 539 | 539 | /** |
@@ -548,9 +548,9 @@ discard block |
||
| 548 | 548 | */ |
| 549 | 549 | public function removeResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody, $optParams = array()) |
| 550 | 550 | { |
| 551 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 552 | - $params = array_merge($params, $optParams); |
|
| 553 | - return $this->call('removeResources', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 551 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 552 | + $params = array_merge($params, $optParams); |
|
| 553 | + return $this->call('removeResources', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 554 | 554 | } |
| 555 | 555 | |
| 556 | 556 | /** |
@@ -566,9 +566,9 @@ discard block |
||
| 566 | 566 | */ |
| 567 | 567 | public function setService($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody, $optParams = array()) |
| 568 | 568 | { |
| 569 | - $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 570 | - $params = array_merge($params, $optParams); |
|
| 571 | - return $this->call('setService', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 569 | + $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody); |
|
| 570 | + $params = array_merge($params, $optParams); |
|
| 571 | + return $this->call('setService', array($params), "Google_Service_Resourceviews_Operation"); |
|
| 572 | 572 | } |
| 573 | 573 | } |
| 574 | 574 | |
@@ -585,19 +585,19 @@ discard block |
||
| 585 | 585 | |
| 586 | 586 | public function setKey($key) |
| 587 | 587 | { |
| 588 | - $this->key = $key; |
|
| 588 | + $this->key = $key; |
|
| 589 | 589 | } |
| 590 | 590 | public function getKey() |
| 591 | 591 | { |
| 592 | - return $this->key; |
|
| 592 | + return $this->key; |
|
| 593 | 593 | } |
| 594 | 594 | public function setValue($value) |
| 595 | 595 | { |
| 596 | - $this->value = $value; |
|
| 596 | + $this->value = $value; |
|
| 597 | 597 | } |
| 598 | 598 | public function getValue() |
| 599 | 599 | { |
| 600 | - return $this->value; |
|
| 600 | + return $this->value; |
|
| 601 | 601 | } |
| 602 | 602 | } |
| 603 | 603 | |
@@ -611,19 +611,19 @@ discard block |
||
| 611 | 611 | |
| 612 | 612 | public function setEndpoints($endpoints) |
| 613 | 613 | { |
| 614 | - $this->endpoints = $endpoints; |
|
| 614 | + $this->endpoints = $endpoints; |
|
| 615 | 615 | } |
| 616 | 616 | public function getEndpoints() |
| 617 | 617 | { |
| 618 | - return $this->endpoints; |
|
| 618 | + return $this->endpoints; |
|
| 619 | 619 | } |
| 620 | 620 | public function setResource($resource) |
| 621 | 621 | { |
| 622 | - $this->resource = $resource; |
|
| 622 | + $this->resource = $resource; |
|
| 623 | 623 | } |
| 624 | 624 | public function getResource() |
| 625 | 625 | { |
| 626 | - return $this->resource; |
|
| 626 | + return $this->resource; |
|
| 627 | 627 | } |
| 628 | 628 | } |
| 629 | 629 | |
@@ -664,179 +664,179 @@ discard block |
||
| 664 | 664 | |
| 665 | 665 | public function setClientOperationId($clientOperationId) |
| 666 | 666 | { |
| 667 | - $this->clientOperationId = $clientOperationId; |
|
| 667 | + $this->clientOperationId = $clientOperationId; |
|
| 668 | 668 | } |
| 669 | 669 | public function getClientOperationId() |
| 670 | 670 | { |
| 671 | - return $this->clientOperationId; |
|
| 671 | + return $this->clientOperationId; |
|
| 672 | 672 | } |
| 673 | 673 | public function setCreationTimestamp($creationTimestamp) |
| 674 | 674 | { |
| 675 | - $this->creationTimestamp = $creationTimestamp; |
|
| 675 | + $this->creationTimestamp = $creationTimestamp; |
|
| 676 | 676 | } |
| 677 | 677 | public function getCreationTimestamp() |
| 678 | 678 | { |
| 679 | - return $this->creationTimestamp; |
|
| 679 | + return $this->creationTimestamp; |
|
| 680 | 680 | } |
| 681 | 681 | public function setEndTime($endTime) |
| 682 | 682 | { |
| 683 | - $this->endTime = $endTime; |
|
| 683 | + $this->endTime = $endTime; |
|
| 684 | 684 | } |
| 685 | 685 | public function getEndTime() |
| 686 | 686 | { |
| 687 | - return $this->endTime; |
|
| 687 | + return $this->endTime; |
|
| 688 | 688 | } |
| 689 | 689 | public function setError(Google_Service_Resourceviews_OperationError $error) |
| 690 | 690 | { |
| 691 | - $this->error = $error; |
|
| 691 | + $this->error = $error; |
|
| 692 | 692 | } |
| 693 | 693 | public function getError() |
| 694 | 694 | { |
| 695 | - return $this->error; |
|
| 695 | + return $this->error; |
|
| 696 | 696 | } |
| 697 | 697 | public function setHttpErrorMessage($httpErrorMessage) |
| 698 | 698 | { |
| 699 | - $this->httpErrorMessage = $httpErrorMessage; |
|
| 699 | + $this->httpErrorMessage = $httpErrorMessage; |
|
| 700 | 700 | } |
| 701 | 701 | public function getHttpErrorMessage() |
| 702 | 702 | { |
| 703 | - return $this->httpErrorMessage; |
|
| 703 | + return $this->httpErrorMessage; |
|
| 704 | 704 | } |
| 705 | 705 | public function setHttpErrorStatusCode($httpErrorStatusCode) |
| 706 | 706 | { |
| 707 | - $this->httpErrorStatusCode = $httpErrorStatusCode; |
|
| 707 | + $this->httpErrorStatusCode = $httpErrorStatusCode; |
|
| 708 | 708 | } |
| 709 | 709 | public function getHttpErrorStatusCode() |
| 710 | 710 | { |
| 711 | - return $this->httpErrorStatusCode; |
|
| 711 | + return $this->httpErrorStatusCode; |
|
| 712 | 712 | } |
| 713 | 713 | public function setId($id) |
| 714 | 714 | { |
| 715 | - $this->id = $id; |
|
| 715 | + $this->id = $id; |
|
| 716 | 716 | } |
| 717 | 717 | public function getId() |
| 718 | 718 | { |
| 719 | - return $this->id; |
|
| 719 | + return $this->id; |
|
| 720 | 720 | } |
| 721 | 721 | public function setInsertTime($insertTime) |
| 722 | 722 | { |
| 723 | - $this->insertTime = $insertTime; |
|
| 723 | + $this->insertTime = $insertTime; |
|
| 724 | 724 | } |
| 725 | 725 | public function getInsertTime() |
| 726 | 726 | { |
| 727 | - return $this->insertTime; |
|
| 727 | + return $this->insertTime; |
|
| 728 | 728 | } |
| 729 | 729 | public function setKind($kind) |
| 730 | 730 | { |
| 731 | - $this->kind = $kind; |
|
| 731 | + $this->kind = $kind; |
|
| 732 | 732 | } |
| 733 | 733 | public function getKind() |
| 734 | 734 | { |
| 735 | - return $this->kind; |
|
| 735 | + return $this->kind; |
|
| 736 | 736 | } |
| 737 | 737 | public function setName($name) |
| 738 | 738 | { |
| 739 | - $this->name = $name; |
|
| 739 | + $this->name = $name; |
|
| 740 | 740 | } |
| 741 | 741 | public function getName() |
| 742 | 742 | { |
| 743 | - return $this->name; |
|
| 743 | + return $this->name; |
|
| 744 | 744 | } |
| 745 | 745 | public function setOperationType($operationType) |
| 746 | 746 | { |
| 747 | - $this->operationType = $operationType; |
|
| 747 | + $this->operationType = $operationType; |
|
| 748 | 748 | } |
| 749 | 749 | public function getOperationType() |
| 750 | 750 | { |
| 751 | - return $this->operationType; |
|
| 751 | + return $this->operationType; |
|
| 752 | 752 | } |
| 753 | 753 | public function setProgress($progress) |
| 754 | 754 | { |
| 755 | - $this->progress = $progress; |
|
| 755 | + $this->progress = $progress; |
|
| 756 | 756 | } |
| 757 | 757 | public function getProgress() |
| 758 | 758 | { |
| 759 | - return $this->progress; |
|
| 759 | + return $this->progress; |
|
| 760 | 760 | } |
| 761 | 761 | public function setRegion($region) |
| 762 | 762 | { |
| 763 | - $this->region = $region; |
|
| 763 | + $this->region = $region; |
|
| 764 | 764 | } |
| 765 | 765 | public function getRegion() |
| 766 | 766 | { |
| 767 | - return $this->region; |
|
| 767 | + return $this->region; |
|
| 768 | 768 | } |
| 769 | 769 | public function setSelfLink($selfLink) |
| 770 | 770 | { |
| 771 | - $this->selfLink = $selfLink; |
|
| 771 | + $this->selfLink = $selfLink; |
|
| 772 | 772 | } |
| 773 | 773 | public function getSelfLink() |
| 774 | 774 | { |
| 775 | - return $this->selfLink; |
|
| 775 | + return $this->selfLink; |
|
| 776 | 776 | } |
| 777 | 777 | public function setStartTime($startTime) |
| 778 | 778 | { |
| 779 | - $this->startTime = $startTime; |
|
| 779 | + $this->startTime = $startTime; |
|
| 780 | 780 | } |
| 781 | 781 | public function getStartTime() |
| 782 | 782 | { |
| 783 | - return $this->startTime; |
|
| 783 | + return $this->startTime; |
|
| 784 | 784 | } |
| 785 | 785 | public function setStatus($status) |
| 786 | 786 | { |
| 787 | - $this->status = $status; |
|
| 787 | + $this->status = $status; |
|
| 788 | 788 | } |
| 789 | 789 | public function getStatus() |
| 790 | 790 | { |
| 791 | - return $this->status; |
|
| 791 | + return $this->status; |
|
| 792 | 792 | } |
| 793 | 793 | public function setStatusMessage($statusMessage) |
| 794 | 794 | { |
| 795 | - $this->statusMessage = $statusMessage; |
|
| 795 | + $this->statusMessage = $statusMessage; |
|
| 796 | 796 | } |
| 797 | 797 | public function getStatusMessage() |
| 798 | 798 | { |
| 799 | - return $this->statusMessage; |
|
| 799 | + return $this->statusMessage; |
|
| 800 | 800 | } |
| 801 | 801 | public function setTargetId($targetId) |
| 802 | 802 | { |
| 803 | - $this->targetId = $targetId; |
|
| 803 | + $this->targetId = $targetId; |
|
| 804 | 804 | } |
| 805 | 805 | public function getTargetId() |
| 806 | 806 | { |
| 807 | - return $this->targetId; |
|
| 807 | + return $this->targetId; |
|
| 808 | 808 | } |
| 809 | 809 | public function setTargetLink($targetLink) |
| 810 | 810 | { |
| 811 | - $this->targetLink = $targetLink; |
|
| 811 | + $this->targetLink = $targetLink; |
|
| 812 | 812 | } |
| 813 | 813 | public function getTargetLink() |
| 814 | 814 | { |
| 815 | - return $this->targetLink; |
|
| 815 | + return $this->targetLink; |
|
| 816 | 816 | } |
| 817 | 817 | public function setUser($user) |
| 818 | 818 | { |
| 819 | - $this->user = $user; |
|
| 819 | + $this->user = $user; |
|
| 820 | 820 | } |
| 821 | 821 | public function getUser() |
| 822 | 822 | { |
| 823 | - return $this->user; |
|
| 823 | + return $this->user; |
|
| 824 | 824 | } |
| 825 | 825 | public function setWarnings($warnings) |
| 826 | 826 | { |
| 827 | - $this->warnings = $warnings; |
|
| 827 | + $this->warnings = $warnings; |
|
| 828 | 828 | } |
| 829 | 829 | public function getWarnings() |
| 830 | 830 | { |
| 831 | - return $this->warnings; |
|
| 831 | + return $this->warnings; |
|
| 832 | 832 | } |
| 833 | 833 | public function setZone($zone) |
| 834 | 834 | { |
| 835 | - $this->zone = $zone; |
|
| 835 | + $this->zone = $zone; |
|
| 836 | 836 | } |
| 837 | 837 | public function getZone() |
| 838 | 838 | { |
| 839 | - return $this->zone; |
|
| 839 | + return $this->zone; |
|
| 840 | 840 | } |
| 841 | 841 | } |
| 842 | 842 | |
@@ -851,11 +851,11 @@ discard block |
||
| 851 | 851 | |
| 852 | 852 | public function setErrors($errors) |
| 853 | 853 | { |
| 854 | - $this->errors = $errors; |
|
| 854 | + $this->errors = $errors; |
|
| 855 | 855 | } |
| 856 | 856 | public function getErrors() |
| 857 | 857 | { |
| 858 | - return $this->errors; |
|
| 858 | + return $this->errors; |
|
| 859 | 859 | } |
| 860 | 860 | } |
| 861 | 861 | |
@@ -870,27 +870,27 @@ discard block |
||
| 870 | 870 | |
| 871 | 871 | public function setCode($code) |
| 872 | 872 | { |
| 873 | - $this->code = $code; |
|
| 873 | + $this->code = $code; |
|
| 874 | 874 | } |
| 875 | 875 | public function getCode() |
| 876 | 876 | { |
| 877 | - return $this->code; |
|
| 877 | + return $this->code; |
|
| 878 | 878 | } |
| 879 | 879 | public function setLocation($location) |
| 880 | 880 | { |
| 881 | - $this->location = $location; |
|
| 881 | + $this->location = $location; |
|
| 882 | 882 | } |
| 883 | 883 | public function getLocation() |
| 884 | 884 | { |
| 885 | - return $this->location; |
|
| 885 | + return $this->location; |
|
| 886 | 886 | } |
| 887 | 887 | public function setMessage($message) |
| 888 | 888 | { |
| 889 | - $this->message = $message; |
|
| 889 | + $this->message = $message; |
|
| 890 | 890 | } |
| 891 | 891 | public function getMessage() |
| 892 | 892 | { |
| 893 | - return $this->message; |
|
| 893 | + return $this->message; |
|
| 894 | 894 | } |
| 895 | 895 | } |
| 896 | 896 | |
@@ -909,43 +909,43 @@ discard block |
||
| 909 | 909 | |
| 910 | 910 | public function setId($id) |
| 911 | 911 | { |
| 912 | - $this->id = $id; |
|
| 912 | + $this->id = $id; |
|
| 913 | 913 | } |
| 914 | 914 | public function getId() |
| 915 | 915 | { |
| 916 | - return $this->id; |
|
| 916 | + return $this->id; |
|
| 917 | 917 | } |
| 918 | 918 | public function setItems($items) |
| 919 | 919 | { |
| 920 | - $this->items = $items; |
|
| 920 | + $this->items = $items; |
|
| 921 | 921 | } |
| 922 | 922 | public function getItems() |
| 923 | 923 | { |
| 924 | - return $this->items; |
|
| 924 | + return $this->items; |
|
| 925 | 925 | } |
| 926 | 926 | public function setKind($kind) |
| 927 | 927 | { |
| 928 | - $this->kind = $kind; |
|
| 928 | + $this->kind = $kind; |
|
| 929 | 929 | } |
| 930 | 930 | public function getKind() |
| 931 | 931 | { |
| 932 | - return $this->kind; |
|
| 932 | + return $this->kind; |
|
| 933 | 933 | } |
| 934 | 934 | public function setNextPageToken($nextPageToken) |
| 935 | 935 | { |
| 936 | - $this->nextPageToken = $nextPageToken; |
|
| 936 | + $this->nextPageToken = $nextPageToken; |
|
| 937 | 937 | } |
| 938 | 938 | public function getNextPageToken() |
| 939 | 939 | { |
| 940 | - return $this->nextPageToken; |
|
| 940 | + return $this->nextPageToken; |
|
| 941 | 941 | } |
| 942 | 942 | public function setSelfLink($selfLink) |
| 943 | 943 | { |
| 944 | - $this->selfLink = $selfLink; |
|
| 944 | + $this->selfLink = $selfLink; |
|
| 945 | 945 | } |
| 946 | 946 | public function getSelfLink() |
| 947 | 947 | { |
| 948 | - return $this->selfLink; |
|
| 948 | + return $this->selfLink; |
|
| 949 | 949 | } |
| 950 | 950 | } |
| 951 | 951 | |
@@ -962,27 +962,27 @@ discard block |
||
| 962 | 962 | |
| 963 | 963 | public function setCode($code) |
| 964 | 964 | { |
| 965 | - $this->code = $code; |
|
| 965 | + $this->code = $code; |
|
| 966 | 966 | } |
| 967 | 967 | public function getCode() |
| 968 | 968 | { |
| 969 | - return $this->code; |
|
| 969 | + return $this->code; |
|
| 970 | 970 | } |
| 971 | 971 | public function setData($data) |
| 972 | 972 | { |
| 973 | - $this->data = $data; |
|
| 973 | + $this->data = $data; |
|
| 974 | 974 | } |
| 975 | 975 | public function getData() |
| 976 | 976 | { |
| 977 | - return $this->data; |
|
| 977 | + return $this->data; |
|
| 978 | 978 | } |
| 979 | 979 | public function setMessage($message) |
| 980 | 980 | { |
| 981 | - $this->message = $message; |
|
| 981 | + $this->message = $message; |
|
| 982 | 982 | } |
| 983 | 983 | public function getMessage() |
| 984 | 984 | { |
| 985 | - return $this->message; |
|
| 985 | + return $this->message; |
|
| 986 | 986 | } |
| 987 | 987 | } |
| 988 | 988 | |
@@ -996,19 +996,19 @@ discard block |
||
| 996 | 996 | |
| 997 | 997 | public function setKey($key) |
| 998 | 998 | { |
| 999 | - $this->key = $key; |
|
| 999 | + $this->key = $key; |
|
| 1000 | 1000 | } |
| 1001 | 1001 | public function getKey() |
| 1002 | 1002 | { |
| 1003 | - return $this->key; |
|
| 1003 | + return $this->key; |
|
| 1004 | 1004 | } |
| 1005 | 1005 | public function setValue($value) |
| 1006 | 1006 | { |
| 1007 | - $this->value = $value; |
|
| 1007 | + $this->value = $value; |
|
| 1008 | 1008 | } |
| 1009 | 1009 | public function getValue() |
| 1010 | 1010 | { |
| 1011 | - return $this->value; |
|
| 1011 | + return $this->value; |
|
| 1012 | 1012 | } |
| 1013 | 1013 | } |
| 1014 | 1014 | |
@@ -1035,99 +1035,99 @@ discard block |
||
| 1035 | 1035 | |
| 1036 | 1036 | public function setCreationTimestamp($creationTimestamp) |
| 1037 | 1037 | { |
| 1038 | - $this->creationTimestamp = $creationTimestamp; |
|
| 1038 | + $this->creationTimestamp = $creationTimestamp; |
|
| 1039 | 1039 | } |
| 1040 | 1040 | public function getCreationTimestamp() |
| 1041 | 1041 | { |
| 1042 | - return $this->creationTimestamp; |
|
| 1042 | + return $this->creationTimestamp; |
|
| 1043 | 1043 | } |
| 1044 | 1044 | public function setDescription($description) |
| 1045 | 1045 | { |
| 1046 | - $this->description = $description; |
|
| 1046 | + $this->description = $description; |
|
| 1047 | 1047 | } |
| 1048 | 1048 | public function getDescription() |
| 1049 | 1049 | { |
| 1050 | - return $this->description; |
|
| 1050 | + return $this->description; |
|
| 1051 | 1051 | } |
| 1052 | 1052 | public function setEndpoints($endpoints) |
| 1053 | 1053 | { |
| 1054 | - $this->endpoints = $endpoints; |
|
| 1054 | + $this->endpoints = $endpoints; |
|
| 1055 | 1055 | } |
| 1056 | 1056 | public function getEndpoints() |
| 1057 | 1057 | { |
| 1058 | - return $this->endpoints; |
|
| 1058 | + return $this->endpoints; |
|
| 1059 | 1059 | } |
| 1060 | 1060 | public function setFingerprint($fingerprint) |
| 1061 | 1061 | { |
| 1062 | - $this->fingerprint = $fingerprint; |
|
| 1062 | + $this->fingerprint = $fingerprint; |
|
| 1063 | 1063 | } |
| 1064 | 1064 | public function getFingerprint() |
| 1065 | 1065 | { |
| 1066 | - return $this->fingerprint; |
|
| 1066 | + return $this->fingerprint; |
|
| 1067 | 1067 | } |
| 1068 | 1068 | public function setId($id) |
| 1069 | 1069 | { |
| 1070 | - $this->id = $id; |
|
| 1070 | + $this->id = $id; |
|
| 1071 | 1071 | } |
| 1072 | 1072 | public function getId() |
| 1073 | 1073 | { |
| 1074 | - return $this->id; |
|
| 1074 | + return $this->id; |
|
| 1075 | 1075 | } |
| 1076 | 1076 | public function setKind($kind) |
| 1077 | 1077 | { |
| 1078 | - $this->kind = $kind; |
|
| 1078 | + $this->kind = $kind; |
|
| 1079 | 1079 | } |
| 1080 | 1080 | public function getKind() |
| 1081 | 1081 | { |
| 1082 | - return $this->kind; |
|
| 1082 | + return $this->kind; |
|
| 1083 | 1083 | } |
| 1084 | 1084 | public function setLabels($labels) |
| 1085 | 1085 | { |
| 1086 | - $this->labels = $labels; |
|
| 1086 | + $this->labels = $labels; |
|
| 1087 | 1087 | } |
| 1088 | 1088 | public function getLabels() |
| 1089 | 1089 | { |
| 1090 | - return $this->labels; |
|
| 1090 | + return $this->labels; |
|
| 1091 | 1091 | } |
| 1092 | 1092 | public function setName($name) |
| 1093 | 1093 | { |
| 1094 | - $this->name = $name; |
|
| 1094 | + $this->name = $name; |
|
| 1095 | 1095 | } |
| 1096 | 1096 | public function getName() |
| 1097 | 1097 | { |
| 1098 | - return $this->name; |
|
| 1098 | + return $this->name; |
|
| 1099 | 1099 | } |
| 1100 | 1100 | public function setNetwork($network) |
| 1101 | 1101 | { |
| 1102 | - $this->network = $network; |
|
| 1102 | + $this->network = $network; |
|
| 1103 | 1103 | } |
| 1104 | 1104 | public function getNetwork() |
| 1105 | 1105 | { |
| 1106 | - return $this->network; |
|
| 1106 | + return $this->network; |
|
| 1107 | 1107 | } |
| 1108 | 1108 | public function setResources($resources) |
| 1109 | 1109 | { |
| 1110 | - $this->resources = $resources; |
|
| 1110 | + $this->resources = $resources; |
|
| 1111 | 1111 | } |
| 1112 | 1112 | public function getResources() |
| 1113 | 1113 | { |
| 1114 | - return $this->resources; |
|
| 1114 | + return $this->resources; |
|
| 1115 | 1115 | } |
| 1116 | 1116 | public function setSelfLink($selfLink) |
| 1117 | 1117 | { |
| 1118 | - $this->selfLink = $selfLink; |
|
| 1118 | + $this->selfLink = $selfLink; |
|
| 1119 | 1119 | } |
| 1120 | 1120 | public function getSelfLink() |
| 1121 | 1121 | { |
| 1122 | - return $this->selfLink; |
|
| 1122 | + return $this->selfLink; |
|
| 1123 | 1123 | } |
| 1124 | 1124 | public function setSize($size) |
| 1125 | 1125 | { |
| 1126 | - $this->size = $size; |
|
| 1126 | + $this->size = $size; |
|
| 1127 | 1127 | } |
| 1128 | 1128 | public function getSize() |
| 1129 | 1129 | { |
| 1130 | - return $this->size; |
|
| 1130 | + return $this->size; |
|
| 1131 | 1131 | } |
| 1132 | 1132 | } |
| 1133 | 1133 | |
@@ -1141,19 +1141,19 @@ discard block |
||
| 1141 | 1141 | |
| 1142 | 1142 | public function setName($name) |
| 1143 | 1143 | { |
| 1144 | - $this->name = $name; |
|
| 1144 | + $this->name = $name; |
|
| 1145 | 1145 | } |
| 1146 | 1146 | public function getName() |
| 1147 | 1147 | { |
| 1148 | - return $this->name; |
|
| 1148 | + return $this->name; |
|
| 1149 | 1149 | } |
| 1150 | 1150 | public function setPort($port) |
| 1151 | 1151 | { |
| 1152 | - $this->port = $port; |
|
| 1152 | + $this->port = $port; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | public function getPort() |
| 1155 | 1155 | { |
| 1156 | - return $this->port; |
|
| 1156 | + return $this->port; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | } |
| 1159 | 1159 | |
@@ -1167,11 +1167,11 @@ discard block |
||
| 1167 | 1167 | |
| 1168 | 1168 | public function setResources($resources) |
| 1169 | 1169 | { |
| 1170 | - $this->resources = $resources; |
|
| 1170 | + $this->resources = $resources; |
|
| 1171 | 1171 | } |
| 1172 | 1172 | public function getResources() |
| 1173 | 1173 | { |
| 1174 | - return $this->resources; |
|
| 1174 | + return $this->resources; |
|
| 1175 | 1175 | } |
| 1176 | 1176 | } |
| 1177 | 1177 | |
@@ -1187,19 +1187,19 @@ discard block |
||
| 1187 | 1187 | |
| 1188 | 1188 | public function setEndpoints($endpoints) |
| 1189 | 1189 | { |
| 1190 | - $this->endpoints = $endpoints; |
|
| 1190 | + $this->endpoints = $endpoints; |
|
| 1191 | 1191 | } |
| 1192 | 1192 | public function getEndpoints() |
| 1193 | 1193 | { |
| 1194 | - return $this->endpoints; |
|
| 1194 | + return $this->endpoints; |
|
| 1195 | 1195 | } |
| 1196 | 1196 | public function setFingerprint($fingerprint) |
| 1197 | 1197 | { |
| 1198 | - $this->fingerprint = $fingerprint; |
|
| 1198 | + $this->fingerprint = $fingerprint; |
|
| 1199 | 1199 | } |
| 1200 | 1200 | public function getFingerprint() |
| 1201 | 1201 | { |
| 1202 | - return $this->fingerprint; |
|
| 1202 | + return $this->fingerprint; |
|
| 1203 | 1203 | } |
| 1204 | 1204 | } |
| 1205 | 1205 | |
@@ -1217,35 +1217,35 @@ discard block |
||
| 1217 | 1217 | |
| 1218 | 1218 | public function setItems($items) |
| 1219 | 1219 | { |
| 1220 | - $this->items = $items; |
|
| 1220 | + $this->items = $items; |
|
| 1221 | 1221 | } |
| 1222 | 1222 | public function getItems() |
| 1223 | 1223 | { |
| 1224 | - return $this->items; |
|
| 1224 | + return $this->items; |
|
| 1225 | 1225 | } |
| 1226 | 1226 | public function setKind($kind) |
| 1227 | 1227 | { |
| 1228 | - $this->kind = $kind; |
|
| 1228 | + $this->kind = $kind; |
|
| 1229 | 1229 | } |
| 1230 | 1230 | public function getKind() |
| 1231 | 1231 | { |
| 1232 | - return $this->kind; |
|
| 1232 | + return $this->kind; |
|
| 1233 | 1233 | } |
| 1234 | 1234 | public function setNextPageToken($nextPageToken) |
| 1235 | 1235 | { |
| 1236 | - $this->nextPageToken = $nextPageToken; |
|
| 1236 | + $this->nextPageToken = $nextPageToken; |
|
| 1237 | 1237 | } |
| 1238 | 1238 | public function getNextPageToken() |
| 1239 | 1239 | { |
| 1240 | - return $this->nextPageToken; |
|
| 1240 | + return $this->nextPageToken; |
|
| 1241 | 1241 | } |
| 1242 | 1242 | public function setSelfLink($selfLink) |
| 1243 | 1243 | { |
| 1244 | - $this->selfLink = $selfLink; |
|
| 1244 | + $this->selfLink = $selfLink; |
|
| 1245 | 1245 | } |
| 1246 | 1246 | public function getSelfLink() |
| 1247 | 1247 | { |
| 1248 | - return $this->selfLink; |
|
| 1248 | + return $this->selfLink; |
|
| 1249 | 1249 | } |
| 1250 | 1250 | } |
| 1251 | 1251 | |
@@ -1262,27 +1262,27 @@ discard block |
||
| 1262 | 1262 | |
| 1263 | 1263 | public function setItems($items) |
| 1264 | 1264 | { |
| 1265 | - $this->items = $items; |
|
| 1265 | + $this->items = $items; |
|
| 1266 | 1266 | } |
| 1267 | 1267 | public function getItems() |
| 1268 | 1268 | { |
| 1269 | - return $this->items; |
|
| 1269 | + return $this->items; |
|
| 1270 | 1270 | } |
| 1271 | 1271 | public function setNetwork($network) |
| 1272 | 1272 | { |
| 1273 | - $this->network = $network; |
|
| 1273 | + $this->network = $network; |
|
| 1274 | 1274 | } |
| 1275 | 1275 | public function getNetwork() |
| 1276 | 1276 | { |
| 1277 | - return $this->network; |
|
| 1277 | + return $this->network; |
|
| 1278 | 1278 | } |
| 1279 | 1279 | public function setNextPageToken($nextPageToken) |
| 1280 | 1280 | { |
| 1281 | - $this->nextPageToken = $nextPageToken; |
|
| 1281 | + $this->nextPageToken = $nextPageToken; |
|
| 1282 | 1282 | } |
| 1283 | 1283 | public function getNextPageToken() |
| 1284 | 1284 | { |
| 1285 | - return $this->nextPageToken; |
|
| 1285 | + return $this->nextPageToken; |
|
| 1286 | 1286 | } |
| 1287 | 1287 | } |
| 1288 | 1288 | |
@@ -1296,11 +1296,11 @@ discard block |
||
| 1296 | 1296 | |
| 1297 | 1297 | public function setResources($resources) |
| 1298 | 1298 | { |
| 1299 | - $this->resources = $resources; |
|
| 1299 | + $this->resources = $resources; |
|
| 1300 | 1300 | } |
| 1301 | 1301 | public function getResources() |
| 1302 | 1302 | { |
| 1303 | - return $this->resources; |
|
| 1303 | + return $this->resources; |
|
| 1304 | 1304 | } |
| 1305 | 1305 | } |
| 1306 | 1306 | |
@@ -1317,26 +1317,26 @@ discard block |
||
| 1317 | 1317 | |
| 1318 | 1318 | public function setEndpoints($endpoints) |
| 1319 | 1319 | { |
| 1320 | - $this->endpoints = $endpoints; |
|
| 1320 | + $this->endpoints = $endpoints; |
|
| 1321 | 1321 | } |
| 1322 | 1322 | public function getEndpoints() |
| 1323 | 1323 | { |
| 1324 | - return $this->endpoints; |
|
| 1324 | + return $this->endpoints; |
|
| 1325 | 1325 | } |
| 1326 | 1326 | public function setFingerprint($fingerprint) |
| 1327 | 1327 | { |
| 1328 | - $this->fingerprint = $fingerprint; |
|
| 1328 | + $this->fingerprint = $fingerprint; |
|
| 1329 | 1329 | } |
| 1330 | 1330 | public function getFingerprint() |
| 1331 | 1331 | { |
| 1332 | - return $this->fingerprint; |
|
| 1332 | + return $this->fingerprint; |
|
| 1333 | 1333 | } |
| 1334 | 1334 | public function setResourceName($resourceName) |
| 1335 | 1335 | { |
| 1336 | - $this->resourceName = $resourceName; |
|
| 1336 | + $this->resourceName = $resourceName; |
|
| 1337 | 1337 | } |
| 1338 | 1338 | public function getResourceName() |
| 1339 | 1339 | { |
| 1340 | - return $this->resourceName; |
|
| 1340 | + return $this->resourceName; |
|
| 1341 | 1341 | } |
| 1342 | 1342 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | 'required' => true, |
| 91 | 91 | ), |
| 92 | 92 | ), |
| 93 | - ),'list' => array( |
|
| 93 | + ), 'list' => array( |
|
| 94 | 94 | 'path' => '{project}/zones/{zone}/operations', |
| 95 | 95 | 'httpMethod' => 'GET', |
| 96 | 96 | 'parameters' => array( |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'required' => true, |
| 148 | 148 | ), |
| 149 | 149 | ), |
| 150 | - ),'delete' => array( |
|
| 150 | + ), 'delete' => array( |
|
| 151 | 151 | 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}', |
| 152 | 152 | 'httpMethod' => 'DELETE', |
| 153 | 153 | '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}/zones/{zone}/resourceViews/{resourceView}', |
| 172 | 172 | 'httpMethod' => 'GET', |
| 173 | 173 | 'parameters' => array( |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | 'required' => true, |
| 188 | 188 | ), |
| 189 | 189 | ), |
| 190 | - ),'getService' => array( |
|
| 190 | + ), 'getService' => array( |
|
| 191 | 191 | 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService', |
| 192 | 192 | 'httpMethod' => 'POST', |
| 193 | 193 | 'parameters' => array( |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | 'type' => 'string', |
| 212 | 212 | ), |
| 213 | 213 | ), |
| 214 | - ),'insert' => array( |
|
| 214 | + ), 'insert' => array( |
|
| 215 | 215 | 'path' => '{project}/zones/{zone}/resourceViews', |
| 216 | 216 | 'httpMethod' => 'POST', |
| 217 | 217 | 'parameters' => array( |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | 'required' => true, |
| 227 | 227 | ), |
| 228 | 228 | ), |
| 229 | - ),'list' => array( |
|
| 229 | + ), 'list' => array( |
|
| 230 | 230 | 'path' => '{project}/zones/{zone}/resourceViews', |
| 231 | 231 | 'httpMethod' => 'GET', |
| 232 | 232 | 'parameters' => array( |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | 'type' => 'integer', |
| 250 | 250 | ), |
| 251 | 251 | ), |
| 252 | - ),'listResources' => array( |
|
| 252 | + ), 'listResources' => array( |
|
| 253 | 253 | 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources', |
| 254 | 254 | 'httpMethod' => 'GET', |
| 255 | 255 | 'parameters' => array( |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | 'type' => 'string', |
| 290 | 290 | ), |
| 291 | 291 | ), |
| 292 | - ),'removeResources' => array( |
|
| 292 | + ), 'removeResources' => array( |
|
| 293 | 293 | 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources', |
| 294 | 294 | 'httpMethod' => 'POST', |
| 295 | 295 | 'parameters' => array( |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | 'required' => true, |
| 310 | 310 | ), |
| 311 | 311 | ), |
| 312 | - ),'setService' => array( |
|
| 312 | + ), 'setService' => array( |
|
| 313 | 313 | 'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService', |
| 314 | 314 | 'httpMethod' => 'POST', |
| 315 | 315 | 'parameters' => array( |
@@ -42,156 +42,156 @@ discard block |
||
| 42 | 42 | */ |
| 43 | 43 | public function __construct(Google_Client $client) |
| 44 | 44 | { |
| 45 | - parent::__construct($client); |
|
| 46 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 47 | - $this->servicePath = 'customsearch/'; |
|
| 48 | - $this->version = 'v1'; |
|
| 49 | - $this->serviceName = 'customsearch'; |
|
| 45 | + parent::__construct($client); |
|
| 46 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 47 | + $this->servicePath = 'customsearch/'; |
|
| 48 | + $this->version = 'v1'; |
|
| 49 | + $this->serviceName = 'customsearch'; |
|
| 50 | 50 | |
| 51 | - $this->cse = new Google_Service_Customsearch_Cse_Resource( |
|
| 52 | - $this, |
|
| 53 | - $this->serviceName, |
|
| 54 | - 'cse', |
|
| 55 | - array( |
|
| 56 | - 'methods' => array( |
|
| 57 | - 'list' => array( |
|
| 58 | - 'path' => 'v1', |
|
| 59 | - 'httpMethod' => 'GET', |
|
| 60 | - 'parameters' => array( |
|
| 61 | - 'q' => array( |
|
| 62 | - 'location' => 'query', |
|
| 63 | - 'type' => 'string', |
|
| 64 | - 'required' => true, |
|
| 65 | - ), |
|
| 66 | - 'sort' => array( |
|
| 67 | - 'location' => 'query', |
|
| 68 | - 'type' => 'string', |
|
| 69 | - ), |
|
| 70 | - 'orTerms' => array( |
|
| 71 | - 'location' => 'query', |
|
| 72 | - 'type' => 'string', |
|
| 73 | - ), |
|
| 74 | - 'highRange' => array( |
|
| 75 | - 'location' => 'query', |
|
| 76 | - 'type' => 'string', |
|
| 77 | - ), |
|
| 78 | - 'num' => array( |
|
| 79 | - 'location' => 'query', |
|
| 80 | - 'type' => 'integer', |
|
| 81 | - ), |
|
| 82 | - 'cr' => array( |
|
| 83 | - 'location' => 'query', |
|
| 84 | - 'type' => 'string', |
|
| 85 | - ), |
|
| 86 | - 'imgType' => array( |
|
| 87 | - 'location' => 'query', |
|
| 88 | - 'type' => 'string', |
|
| 89 | - ), |
|
| 90 | - 'gl' => array( |
|
| 91 | - 'location' => 'query', |
|
| 92 | - 'type' => 'string', |
|
| 93 | - ), |
|
| 94 | - 'relatedSite' => array( |
|
| 95 | - 'location' => 'query', |
|
| 96 | - 'type' => 'string', |
|
| 97 | - ), |
|
| 98 | - 'searchType' => array( |
|
| 99 | - 'location' => 'query', |
|
| 100 | - 'type' => 'string', |
|
| 101 | - ), |
|
| 102 | - 'fileType' => array( |
|
| 103 | - 'location' => 'query', |
|
| 104 | - 'type' => 'string', |
|
| 105 | - ), |
|
| 106 | - 'start' => array( |
|
| 107 | - 'location' => 'query', |
|
| 108 | - 'type' => 'integer', |
|
| 109 | - ), |
|
| 110 | - 'imgDominantColor' => array( |
|
| 111 | - 'location' => 'query', |
|
| 112 | - 'type' => 'string', |
|
| 113 | - ), |
|
| 114 | - 'lr' => array( |
|
| 115 | - 'location' => 'query', |
|
| 116 | - 'type' => 'string', |
|
| 117 | - ), |
|
| 118 | - 'siteSearch' => array( |
|
| 119 | - 'location' => 'query', |
|
| 120 | - 'type' => 'string', |
|
| 121 | - ), |
|
| 122 | - 'cref' => array( |
|
| 123 | - 'location' => 'query', |
|
| 124 | - 'type' => 'string', |
|
| 125 | - ), |
|
| 126 | - 'dateRestrict' => array( |
|
| 127 | - 'location' => 'query', |
|
| 128 | - 'type' => 'string', |
|
| 129 | - ), |
|
| 130 | - 'safe' => array( |
|
| 131 | - 'location' => 'query', |
|
| 132 | - 'type' => 'string', |
|
| 133 | - ), |
|
| 134 | - 'c2coff' => array( |
|
| 135 | - 'location' => 'query', |
|
| 136 | - 'type' => 'string', |
|
| 137 | - ), |
|
| 138 | - 'googlehost' => array( |
|
| 139 | - 'location' => 'query', |
|
| 140 | - 'type' => 'string', |
|
| 141 | - ), |
|
| 142 | - 'hq' => array( |
|
| 143 | - 'location' => 'query', |
|
| 144 | - 'type' => 'string', |
|
| 145 | - ), |
|
| 146 | - 'exactTerms' => array( |
|
| 147 | - 'location' => 'query', |
|
| 148 | - 'type' => 'string', |
|
| 149 | - ), |
|
| 150 | - 'hl' => array( |
|
| 151 | - 'location' => 'query', |
|
| 152 | - 'type' => 'string', |
|
| 153 | - ), |
|
| 154 | - 'lowRange' => array( |
|
| 155 | - 'location' => 'query', |
|
| 156 | - 'type' => 'string', |
|
| 157 | - ), |
|
| 158 | - 'imgSize' => array( |
|
| 159 | - 'location' => 'query', |
|
| 160 | - 'type' => 'string', |
|
| 161 | - ), |
|
| 162 | - 'imgColorType' => array( |
|
| 163 | - 'location' => 'query', |
|
| 164 | - 'type' => 'string', |
|
| 165 | - ), |
|
| 166 | - 'rights' => array( |
|
| 167 | - 'location' => 'query', |
|
| 168 | - 'type' => 'string', |
|
| 169 | - ), |
|
| 170 | - 'excludeTerms' => array( |
|
| 171 | - 'location' => 'query', |
|
| 172 | - 'type' => 'string', |
|
| 173 | - ), |
|
| 174 | - 'filter' => array( |
|
| 175 | - 'location' => 'query', |
|
| 176 | - 'type' => 'string', |
|
| 177 | - ), |
|
| 178 | - 'linkSite' => array( |
|
| 179 | - 'location' => 'query', |
|
| 180 | - 'type' => 'string', |
|
| 181 | - ), |
|
| 182 | - 'cx' => array( |
|
| 183 | - 'location' => 'query', |
|
| 184 | - 'type' => 'string', |
|
| 185 | - ), |
|
| 186 | - 'siteSearchFilter' => array( |
|
| 187 | - 'location' => 'query', |
|
| 188 | - 'type' => 'string', |
|
| 189 | - ), |
|
| 190 | - ), |
|
| 191 | - ), |
|
| 192 | - ) |
|
| 193 | - ) |
|
| 194 | - ); |
|
| 51 | + $this->cse = new Google_Service_Customsearch_Cse_Resource( |
|
| 52 | + $this, |
|
| 53 | + $this->serviceName, |
|
| 54 | + 'cse', |
|
| 55 | + array( |
|
| 56 | + 'methods' => array( |
|
| 57 | + 'list' => array( |
|
| 58 | + 'path' => 'v1', |
|
| 59 | + 'httpMethod' => 'GET', |
|
| 60 | + 'parameters' => array( |
|
| 61 | + 'q' => array( |
|
| 62 | + 'location' => 'query', |
|
| 63 | + 'type' => 'string', |
|
| 64 | + 'required' => true, |
|
| 65 | + ), |
|
| 66 | + 'sort' => array( |
|
| 67 | + 'location' => 'query', |
|
| 68 | + 'type' => 'string', |
|
| 69 | + ), |
|
| 70 | + 'orTerms' => array( |
|
| 71 | + 'location' => 'query', |
|
| 72 | + 'type' => 'string', |
|
| 73 | + ), |
|
| 74 | + 'highRange' => array( |
|
| 75 | + 'location' => 'query', |
|
| 76 | + 'type' => 'string', |
|
| 77 | + ), |
|
| 78 | + 'num' => array( |
|
| 79 | + 'location' => 'query', |
|
| 80 | + 'type' => 'integer', |
|
| 81 | + ), |
|
| 82 | + 'cr' => array( |
|
| 83 | + 'location' => 'query', |
|
| 84 | + 'type' => 'string', |
|
| 85 | + ), |
|
| 86 | + 'imgType' => array( |
|
| 87 | + 'location' => 'query', |
|
| 88 | + 'type' => 'string', |
|
| 89 | + ), |
|
| 90 | + 'gl' => array( |
|
| 91 | + 'location' => 'query', |
|
| 92 | + 'type' => 'string', |
|
| 93 | + ), |
|
| 94 | + 'relatedSite' => array( |
|
| 95 | + 'location' => 'query', |
|
| 96 | + 'type' => 'string', |
|
| 97 | + ), |
|
| 98 | + 'searchType' => array( |
|
| 99 | + 'location' => 'query', |
|
| 100 | + 'type' => 'string', |
|
| 101 | + ), |
|
| 102 | + 'fileType' => array( |
|
| 103 | + 'location' => 'query', |
|
| 104 | + 'type' => 'string', |
|
| 105 | + ), |
|
| 106 | + 'start' => array( |
|
| 107 | + 'location' => 'query', |
|
| 108 | + 'type' => 'integer', |
|
| 109 | + ), |
|
| 110 | + 'imgDominantColor' => array( |
|
| 111 | + 'location' => 'query', |
|
| 112 | + 'type' => 'string', |
|
| 113 | + ), |
|
| 114 | + 'lr' => array( |
|
| 115 | + 'location' => 'query', |
|
| 116 | + 'type' => 'string', |
|
| 117 | + ), |
|
| 118 | + 'siteSearch' => array( |
|
| 119 | + 'location' => 'query', |
|
| 120 | + 'type' => 'string', |
|
| 121 | + ), |
|
| 122 | + 'cref' => array( |
|
| 123 | + 'location' => 'query', |
|
| 124 | + 'type' => 'string', |
|
| 125 | + ), |
|
| 126 | + 'dateRestrict' => array( |
|
| 127 | + 'location' => 'query', |
|
| 128 | + 'type' => 'string', |
|
| 129 | + ), |
|
| 130 | + 'safe' => array( |
|
| 131 | + 'location' => 'query', |
|
| 132 | + 'type' => 'string', |
|
| 133 | + ), |
|
| 134 | + 'c2coff' => array( |
|
| 135 | + 'location' => 'query', |
|
| 136 | + 'type' => 'string', |
|
| 137 | + ), |
|
| 138 | + 'googlehost' => array( |
|
| 139 | + 'location' => 'query', |
|
| 140 | + 'type' => 'string', |
|
| 141 | + ), |
|
| 142 | + 'hq' => array( |
|
| 143 | + 'location' => 'query', |
|
| 144 | + 'type' => 'string', |
|
| 145 | + ), |
|
| 146 | + 'exactTerms' => array( |
|
| 147 | + 'location' => 'query', |
|
| 148 | + 'type' => 'string', |
|
| 149 | + ), |
|
| 150 | + 'hl' => array( |
|
| 151 | + 'location' => 'query', |
|
| 152 | + 'type' => 'string', |
|
| 153 | + ), |
|
| 154 | + 'lowRange' => array( |
|
| 155 | + 'location' => 'query', |
|
| 156 | + 'type' => 'string', |
|
| 157 | + ), |
|
| 158 | + 'imgSize' => array( |
|
| 159 | + 'location' => 'query', |
|
| 160 | + 'type' => 'string', |
|
| 161 | + ), |
|
| 162 | + 'imgColorType' => array( |
|
| 163 | + 'location' => 'query', |
|
| 164 | + 'type' => 'string', |
|
| 165 | + ), |
|
| 166 | + 'rights' => array( |
|
| 167 | + 'location' => 'query', |
|
| 168 | + 'type' => 'string', |
|
| 169 | + ), |
|
| 170 | + 'excludeTerms' => array( |
|
| 171 | + 'location' => 'query', |
|
| 172 | + 'type' => 'string', |
|
| 173 | + ), |
|
| 174 | + 'filter' => array( |
|
| 175 | + 'location' => 'query', |
|
| 176 | + 'type' => 'string', |
|
| 177 | + ), |
|
| 178 | + 'linkSite' => array( |
|
| 179 | + 'location' => 'query', |
|
| 180 | + 'type' => 'string', |
|
| 181 | + ), |
|
| 182 | + 'cx' => array( |
|
| 183 | + 'location' => 'query', |
|
| 184 | + 'type' => 'string', |
|
| 185 | + ), |
|
| 186 | + 'siteSearchFilter' => array( |
|
| 187 | + 'location' => 'query', |
|
| 188 | + 'type' => 'string', |
|
| 189 | + ), |
|
| 190 | + ), |
|
| 191 | + ), |
|
| 192 | + ) |
|
| 193 | + ) |
|
| 194 | + ); |
|
| 195 | 195 | } |
| 196 | 196 | } |
| 197 | 197 | |
@@ -269,9 +269,9 @@ discard block |
||
| 269 | 269 | */ |
| 270 | 270 | public function listCse($q, $optParams = array()) |
| 271 | 271 | { |
| 272 | - $params = array('q' => $q); |
|
| 273 | - $params = array_merge($params, $optParams); |
|
| 274 | - return $this->call('list', array($params), "Google_Service_Customsearch_Search"); |
|
| 272 | + $params = array('q' => $q); |
|
| 273 | + $params = array_merge($params, $optParams); |
|
| 274 | + return $this->call('list', array($params), "Google_Service_Customsearch_Search"); |
|
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | |
@@ -290,26 +290,26 @@ discard block |
||
| 290 | 290 | |
| 291 | 291 | public function setFacets($facets) |
| 292 | 292 | { |
| 293 | - $this->facets = $facets; |
|
| 293 | + $this->facets = $facets; |
|
| 294 | 294 | } |
| 295 | 295 | public function getFacets() |
| 296 | 296 | { |
| 297 | - return $this->facets; |
|
| 297 | + return $this->facets; |
|
| 298 | 298 | } |
| 299 | 299 | public function setTitle($title) |
| 300 | 300 | { |
| 301 | - $this->title = $title; |
|
| 301 | + $this->title = $title; |
|
| 302 | 302 | } |
| 303 | 303 | public function getTitle() |
| 304 | 304 | { |
| 305 | - return $this->title; |
|
| 305 | + return $this->title; |
|
| 306 | 306 | } |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | class Google_Service_Customsearch_ContextFacets extends Google_Model |
| 310 | 310 | { |
| 311 | 311 | protected $internal_gapi_mappings = array( |
| 312 | - "labelWithOp" => "label_with_op", |
|
| 312 | + "labelWithOp" => "label_with_op", |
|
| 313 | 313 | ); |
| 314 | 314 | public $anchor; |
| 315 | 315 | public $label; |
@@ -318,27 +318,27 @@ discard block |
||
| 318 | 318 | |
| 319 | 319 | public function setAnchor($anchor) |
| 320 | 320 | { |
| 321 | - $this->anchor = $anchor; |
|
| 321 | + $this->anchor = $anchor; |
|
| 322 | 322 | } |
| 323 | 323 | public function getAnchor() |
| 324 | 324 | { |
| 325 | - return $this->anchor; |
|
| 325 | + return $this->anchor; |
|
| 326 | 326 | } |
| 327 | 327 | public function setLabel($label) |
| 328 | 328 | { |
| 329 | - $this->label = $label; |
|
| 329 | + $this->label = $label; |
|
| 330 | 330 | } |
| 331 | 331 | public function getLabel() |
| 332 | 332 | { |
| 333 | - return $this->label; |
|
| 333 | + return $this->label; |
|
| 334 | 334 | } |
| 335 | 335 | public function setLabelWithOp($labelWithOp) |
| 336 | 336 | { |
| 337 | - $this->labelWithOp = $labelWithOp; |
|
| 337 | + $this->labelWithOp = $labelWithOp; |
|
| 338 | 338 | } |
| 339 | 339 | public function getLabelWithOp() |
| 340 | 340 | { |
| 341 | - return $this->labelWithOp; |
|
| 341 | + return $this->labelWithOp; |
|
| 342 | 342 | } |
| 343 | 343 | } |
| 344 | 344 | |
@@ -359,51 +359,51 @@ discard block |
||
| 359 | 359 | |
| 360 | 360 | public function setBodyLines($bodyLines) |
| 361 | 361 | { |
| 362 | - $this->bodyLines = $bodyLines; |
|
| 362 | + $this->bodyLines = $bodyLines; |
|
| 363 | 363 | } |
| 364 | 364 | public function getBodyLines() |
| 365 | 365 | { |
| 366 | - return $this->bodyLines; |
|
| 366 | + return $this->bodyLines; |
|
| 367 | 367 | } |
| 368 | 368 | public function setDisplayLink($displayLink) |
| 369 | 369 | { |
| 370 | - $this->displayLink = $displayLink; |
|
| 370 | + $this->displayLink = $displayLink; |
|
| 371 | 371 | } |
| 372 | 372 | public function getDisplayLink() |
| 373 | 373 | { |
| 374 | - return $this->displayLink; |
|
| 374 | + return $this->displayLink; |
|
| 375 | 375 | } |
| 376 | 376 | public function setHtmlTitle($htmlTitle) |
| 377 | 377 | { |
| 378 | - $this->htmlTitle = $htmlTitle; |
|
| 378 | + $this->htmlTitle = $htmlTitle; |
|
| 379 | 379 | } |
| 380 | 380 | public function getHtmlTitle() |
| 381 | 381 | { |
| 382 | - return $this->htmlTitle; |
|
| 382 | + return $this->htmlTitle; |
|
| 383 | 383 | } |
| 384 | 384 | public function setImage(Google_Service_Customsearch_PromotionImage $image) |
| 385 | 385 | { |
| 386 | - $this->image = $image; |
|
| 386 | + $this->image = $image; |
|
| 387 | 387 | } |
| 388 | 388 | public function getImage() |
| 389 | 389 | { |
| 390 | - return $this->image; |
|
| 390 | + return $this->image; |
|
| 391 | 391 | } |
| 392 | 392 | public function setLink($link) |
| 393 | 393 | { |
| 394 | - $this->link = $link; |
|
| 394 | + $this->link = $link; |
|
| 395 | 395 | } |
| 396 | 396 | public function getLink() |
| 397 | 397 | { |
| 398 | - return $this->link; |
|
| 398 | + return $this->link; |
|
| 399 | 399 | } |
| 400 | 400 | public function setTitle($title) |
| 401 | 401 | { |
| 402 | - $this->title = $title; |
|
| 402 | + $this->title = $title; |
|
| 403 | 403 | } |
| 404 | 404 | public function getTitle() |
| 405 | 405 | { |
| 406 | - return $this->title; |
|
| 406 | + return $this->title; |
|
| 407 | 407 | } |
| 408 | 408 | } |
| 409 | 409 | |
@@ -419,35 +419,35 @@ discard block |
||
| 419 | 419 | |
| 420 | 420 | public function setHtmlTitle($htmlTitle) |
| 421 | 421 | { |
| 422 | - $this->htmlTitle = $htmlTitle; |
|
| 422 | + $this->htmlTitle = $htmlTitle; |
|
| 423 | 423 | } |
| 424 | 424 | public function getHtmlTitle() |
| 425 | 425 | { |
| 426 | - return $this->htmlTitle; |
|
| 426 | + return $this->htmlTitle; |
|
| 427 | 427 | } |
| 428 | 428 | public function setLink($link) |
| 429 | 429 | { |
| 430 | - $this->link = $link; |
|
| 430 | + $this->link = $link; |
|
| 431 | 431 | } |
| 432 | 432 | public function getLink() |
| 433 | 433 | { |
| 434 | - return $this->link; |
|
| 434 | + return $this->link; |
|
| 435 | 435 | } |
| 436 | 436 | public function setTitle($title) |
| 437 | 437 | { |
| 438 | - $this->title = $title; |
|
| 438 | + $this->title = $title; |
|
| 439 | 439 | } |
| 440 | 440 | public function getTitle() |
| 441 | 441 | { |
| 442 | - return $this->title; |
|
| 442 | + return $this->title; |
|
| 443 | 443 | } |
| 444 | 444 | public function setUrl($url) |
| 445 | 445 | { |
| 446 | - $this->url = $url; |
|
| 446 | + $this->url = $url; |
|
| 447 | 447 | } |
| 448 | 448 | public function getUrl() |
| 449 | 449 | { |
| 450 | - return $this->url; |
|
| 450 | + return $this->url; |
|
| 451 | 451 | } |
| 452 | 452 | } |
| 453 | 453 | |
@@ -462,27 +462,27 @@ discard block |
||
| 462 | 462 | |
| 463 | 463 | public function setHeight($height) |
| 464 | 464 | { |
| 465 | - $this->height = $height; |
|
| 465 | + $this->height = $height; |
|
| 466 | 466 | } |
| 467 | 467 | public function getHeight() |
| 468 | 468 | { |
| 469 | - return $this->height; |
|
| 469 | + return $this->height; |
|
| 470 | 470 | } |
| 471 | 471 | public function setSource($source) |
| 472 | 472 | { |
| 473 | - $this->source = $source; |
|
| 473 | + $this->source = $source; |
|
| 474 | 474 | } |
| 475 | 475 | public function getSource() |
| 476 | 476 | { |
| 477 | - return $this->source; |
|
| 477 | + return $this->source; |
|
| 478 | 478 | } |
| 479 | 479 | public function setWidth($width) |
| 480 | 480 | { |
| 481 | - $this->width = $width; |
|
| 481 | + $this->width = $width; |
|
| 482 | 482 | } |
| 483 | 483 | public function getWidth() |
| 484 | 484 | { |
| 485 | - return $this->width; |
|
| 485 | + return $this->width; |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | |
@@ -531,299 +531,299 @@ discard block |
||
| 531 | 531 | |
| 532 | 532 | public function setCount($count) |
| 533 | 533 | { |
| 534 | - $this->count = $count; |
|
| 534 | + $this->count = $count; |
|
| 535 | 535 | } |
| 536 | 536 | public function getCount() |
| 537 | 537 | { |
| 538 | - return $this->count; |
|
| 538 | + return $this->count; |
|
| 539 | 539 | } |
| 540 | 540 | public function setCr($cr) |
| 541 | 541 | { |
| 542 | - $this->cr = $cr; |
|
| 542 | + $this->cr = $cr; |
|
| 543 | 543 | } |
| 544 | 544 | public function getCr() |
| 545 | 545 | { |
| 546 | - return $this->cr; |
|
| 546 | + return $this->cr; |
|
| 547 | 547 | } |
| 548 | 548 | public function setCref($cref) |
| 549 | 549 | { |
| 550 | - $this->cref = $cref; |
|
| 550 | + $this->cref = $cref; |
|
| 551 | 551 | } |
| 552 | 552 | public function getCref() |
| 553 | 553 | { |
| 554 | - return $this->cref; |
|
| 554 | + return $this->cref; |
|
| 555 | 555 | } |
| 556 | 556 | public function setCx($cx) |
| 557 | 557 | { |
| 558 | - $this->cx = $cx; |
|
| 558 | + $this->cx = $cx; |
|
| 559 | 559 | } |
| 560 | 560 | public function getCx() |
| 561 | 561 | { |
| 562 | - return $this->cx; |
|
| 562 | + return $this->cx; |
|
| 563 | 563 | } |
| 564 | 564 | public function setDateRestrict($dateRestrict) |
| 565 | 565 | { |
| 566 | - $this->dateRestrict = $dateRestrict; |
|
| 566 | + $this->dateRestrict = $dateRestrict; |
|
| 567 | 567 | } |
| 568 | 568 | public function getDateRestrict() |
| 569 | 569 | { |
| 570 | - return $this->dateRestrict; |
|
| 570 | + return $this->dateRestrict; |
|
| 571 | 571 | } |
| 572 | 572 | public function setDisableCnTwTranslation($disableCnTwTranslation) |
| 573 | 573 | { |
| 574 | - $this->disableCnTwTranslation = $disableCnTwTranslation; |
|
| 574 | + $this->disableCnTwTranslation = $disableCnTwTranslation; |
|
| 575 | 575 | } |
| 576 | 576 | public function getDisableCnTwTranslation() |
| 577 | 577 | { |
| 578 | - return $this->disableCnTwTranslation; |
|
| 578 | + return $this->disableCnTwTranslation; |
|
| 579 | 579 | } |
| 580 | 580 | public function setExactTerms($exactTerms) |
| 581 | 581 | { |
| 582 | - $this->exactTerms = $exactTerms; |
|
| 582 | + $this->exactTerms = $exactTerms; |
|
| 583 | 583 | } |
| 584 | 584 | public function getExactTerms() |
| 585 | 585 | { |
| 586 | - return $this->exactTerms; |
|
| 586 | + return $this->exactTerms; |
|
| 587 | 587 | } |
| 588 | 588 | public function setExcludeTerms($excludeTerms) |
| 589 | 589 | { |
| 590 | - $this->excludeTerms = $excludeTerms; |
|
| 590 | + $this->excludeTerms = $excludeTerms; |
|
| 591 | 591 | } |
| 592 | 592 | public function getExcludeTerms() |
| 593 | 593 | { |
| 594 | - return $this->excludeTerms; |
|
| 594 | + return $this->excludeTerms; |
|
| 595 | 595 | } |
| 596 | 596 | public function setFileType($fileType) |
| 597 | 597 | { |
| 598 | - $this->fileType = $fileType; |
|
| 598 | + $this->fileType = $fileType; |
|
| 599 | 599 | } |
| 600 | 600 | public function getFileType() |
| 601 | 601 | { |
| 602 | - return $this->fileType; |
|
| 602 | + return $this->fileType; |
|
| 603 | 603 | } |
| 604 | 604 | public function setFilter($filter) |
| 605 | 605 | { |
| 606 | - $this->filter = $filter; |
|
| 606 | + $this->filter = $filter; |
|
| 607 | 607 | } |
| 608 | 608 | public function getFilter() |
| 609 | 609 | { |
| 610 | - return $this->filter; |
|
| 610 | + return $this->filter; |
|
| 611 | 611 | } |
| 612 | 612 | public function setGl($gl) |
| 613 | 613 | { |
| 614 | - $this->gl = $gl; |
|
| 614 | + $this->gl = $gl; |
|
| 615 | 615 | } |
| 616 | 616 | public function getGl() |
| 617 | 617 | { |
| 618 | - return $this->gl; |
|
| 618 | + return $this->gl; |
|
| 619 | 619 | } |
| 620 | 620 | public function setGoogleHost($googleHost) |
| 621 | 621 | { |
| 622 | - $this->googleHost = $googleHost; |
|
| 622 | + $this->googleHost = $googleHost; |
|
| 623 | 623 | } |
| 624 | 624 | public function getGoogleHost() |
| 625 | 625 | { |
| 626 | - return $this->googleHost; |
|
| 626 | + return $this->googleHost; |
|
| 627 | 627 | } |
| 628 | 628 | public function setHighRange($highRange) |
| 629 | 629 | { |
| 630 | - $this->highRange = $highRange; |
|
| 630 | + $this->highRange = $highRange; |
|
| 631 | 631 | } |
| 632 | 632 | public function getHighRange() |
| 633 | 633 | { |
| 634 | - return $this->highRange; |
|
| 634 | + return $this->highRange; |
|
| 635 | 635 | } |
| 636 | 636 | public function setHl($hl) |
| 637 | 637 | { |
| 638 | - $this->hl = $hl; |
|
| 638 | + $this->hl = $hl; |
|
| 639 | 639 | } |
| 640 | 640 | public function getHl() |
| 641 | 641 | { |
| 642 | - return $this->hl; |
|
| 642 | + return $this->hl; |
|
| 643 | 643 | } |
| 644 | 644 | public function setHq($hq) |
| 645 | 645 | { |
| 646 | - $this->hq = $hq; |
|
| 646 | + $this->hq = $hq; |
|
| 647 | 647 | } |
| 648 | 648 | public function getHq() |
| 649 | 649 | { |
| 650 | - return $this->hq; |
|
| 650 | + return $this->hq; |
|
| 651 | 651 | } |
| 652 | 652 | public function setImgColorType($imgColorType) |
| 653 | 653 | { |
| 654 | - $this->imgColorType = $imgColorType; |
|
| 654 | + $this->imgColorType = $imgColorType; |
|
| 655 | 655 | } |
| 656 | 656 | public function getImgColorType() |
| 657 | 657 | { |
| 658 | - return $this->imgColorType; |
|
| 658 | + return $this->imgColorType; |
|
| 659 | 659 | } |
| 660 | 660 | public function setImgDominantColor($imgDominantColor) |
| 661 | 661 | { |
| 662 | - $this->imgDominantColor = $imgDominantColor; |
|
| 662 | + $this->imgDominantColor = $imgDominantColor; |
|
| 663 | 663 | } |
| 664 | 664 | public function getImgDominantColor() |
| 665 | 665 | { |
| 666 | - return $this->imgDominantColor; |
|
| 666 | + return $this->imgDominantColor; |
|
| 667 | 667 | } |
| 668 | 668 | public function setImgSize($imgSize) |
| 669 | 669 | { |
| 670 | - $this->imgSize = $imgSize; |
|
| 670 | + $this->imgSize = $imgSize; |
|
| 671 | 671 | } |
| 672 | 672 | public function getImgSize() |
| 673 | 673 | { |
| 674 | - return $this->imgSize; |
|
| 674 | + return $this->imgSize; |
|
| 675 | 675 | } |
| 676 | 676 | public function setImgType($imgType) |
| 677 | 677 | { |
| 678 | - $this->imgType = $imgType; |
|
| 678 | + $this->imgType = $imgType; |
|
| 679 | 679 | } |
| 680 | 680 | public function getImgType() |
| 681 | 681 | { |
| 682 | - return $this->imgType; |
|
| 682 | + return $this->imgType; |
|
| 683 | 683 | } |
| 684 | 684 | public function setInputEncoding($inputEncoding) |
| 685 | 685 | { |
| 686 | - $this->inputEncoding = $inputEncoding; |
|
| 686 | + $this->inputEncoding = $inputEncoding; |
|
| 687 | 687 | } |
| 688 | 688 | public function getInputEncoding() |
| 689 | 689 | { |
| 690 | - return $this->inputEncoding; |
|
| 690 | + return $this->inputEncoding; |
|
| 691 | 691 | } |
| 692 | 692 | public function setLanguage($language) |
| 693 | 693 | { |
| 694 | - $this->language = $language; |
|
| 694 | + $this->language = $language; |
|
| 695 | 695 | } |
| 696 | 696 | public function getLanguage() |
| 697 | 697 | { |
| 698 | - return $this->language; |
|
| 698 | + return $this->language; |
|
| 699 | 699 | } |
| 700 | 700 | public function setLinkSite($linkSite) |
| 701 | 701 | { |
| 702 | - $this->linkSite = $linkSite; |
|
| 702 | + $this->linkSite = $linkSite; |
|
| 703 | 703 | } |
| 704 | 704 | public function getLinkSite() |
| 705 | 705 | { |
| 706 | - return $this->linkSite; |
|
| 706 | + return $this->linkSite; |
|
| 707 | 707 | } |
| 708 | 708 | public function setLowRange($lowRange) |
| 709 | 709 | { |
| 710 | - $this->lowRange = $lowRange; |
|
| 710 | + $this->lowRange = $lowRange; |
|
| 711 | 711 | } |
| 712 | 712 | public function getLowRange() |
| 713 | 713 | { |
| 714 | - return $this->lowRange; |
|
| 714 | + return $this->lowRange; |
|
| 715 | 715 | } |
| 716 | 716 | public function setOrTerms($orTerms) |
| 717 | 717 | { |
| 718 | - $this->orTerms = $orTerms; |
|
| 718 | + $this->orTerms = $orTerms; |
|
| 719 | 719 | } |
| 720 | 720 | public function getOrTerms() |
| 721 | 721 | { |
| 722 | - return $this->orTerms; |
|
| 722 | + return $this->orTerms; |
|
| 723 | 723 | } |
| 724 | 724 | public function setOutputEncoding($outputEncoding) |
| 725 | 725 | { |
| 726 | - $this->outputEncoding = $outputEncoding; |
|
| 726 | + $this->outputEncoding = $outputEncoding; |
|
| 727 | 727 | } |
| 728 | 728 | public function getOutputEncoding() |
| 729 | 729 | { |
| 730 | - return $this->outputEncoding; |
|
| 730 | + return $this->outputEncoding; |
|
| 731 | 731 | } |
| 732 | 732 | public function setRelatedSite($relatedSite) |
| 733 | 733 | { |
| 734 | - $this->relatedSite = $relatedSite; |
|
| 734 | + $this->relatedSite = $relatedSite; |
|
| 735 | 735 | } |
| 736 | 736 | public function getRelatedSite() |
| 737 | 737 | { |
| 738 | - return $this->relatedSite; |
|
| 738 | + return $this->relatedSite; |
|
| 739 | 739 | } |
| 740 | 740 | public function setRights($rights) |
| 741 | 741 | { |
| 742 | - $this->rights = $rights; |
|
| 742 | + $this->rights = $rights; |
|
| 743 | 743 | } |
| 744 | 744 | public function getRights() |
| 745 | 745 | { |
| 746 | - return $this->rights; |
|
| 746 | + return $this->rights; |
|
| 747 | 747 | } |
| 748 | 748 | public function setSafe($safe) |
| 749 | 749 | { |
| 750 | - $this->safe = $safe; |
|
| 750 | + $this->safe = $safe; |
|
| 751 | 751 | } |
| 752 | 752 | public function getSafe() |
| 753 | 753 | { |
| 754 | - return $this->safe; |
|
| 754 | + return $this->safe; |
|
| 755 | 755 | } |
| 756 | 756 | public function setSearchTerms($searchTerms) |
| 757 | 757 | { |
| 758 | - $this->searchTerms = $searchTerms; |
|
| 758 | + $this->searchTerms = $searchTerms; |
|
| 759 | 759 | } |
| 760 | 760 | public function getSearchTerms() |
| 761 | 761 | { |
| 762 | - return $this->searchTerms; |
|
| 762 | + return $this->searchTerms; |
|
| 763 | 763 | } |
| 764 | 764 | public function setSearchType($searchType) |
| 765 | 765 | { |
| 766 | - $this->searchType = $searchType; |
|
| 766 | + $this->searchType = $searchType; |
|
| 767 | 767 | } |
| 768 | 768 | public function getSearchType() |
| 769 | 769 | { |
| 770 | - return $this->searchType; |
|
| 770 | + return $this->searchType; |
|
| 771 | 771 | } |
| 772 | 772 | public function setSiteSearch($siteSearch) |
| 773 | 773 | { |
| 774 | - $this->siteSearch = $siteSearch; |
|
| 774 | + $this->siteSearch = $siteSearch; |
|
| 775 | 775 | } |
| 776 | 776 | public function getSiteSearch() |
| 777 | 777 | { |
| 778 | - return $this->siteSearch; |
|
| 778 | + return $this->siteSearch; |
|
| 779 | 779 | } |
| 780 | 780 | public function setSiteSearchFilter($siteSearchFilter) |
| 781 | 781 | { |
| 782 | - $this->siteSearchFilter = $siteSearchFilter; |
|
| 782 | + $this->siteSearchFilter = $siteSearchFilter; |
|
| 783 | 783 | } |
| 784 | 784 | public function getSiteSearchFilter() |
| 785 | 785 | { |
| 786 | - return $this->siteSearchFilter; |
|
| 786 | + return $this->siteSearchFilter; |
|
| 787 | 787 | } |
| 788 | 788 | public function setSort($sort) |
| 789 | 789 | { |
| 790 | - $this->sort = $sort; |
|
| 790 | + $this->sort = $sort; |
|
| 791 | 791 | } |
| 792 | 792 | public function getSort() |
| 793 | 793 | { |
| 794 | - return $this->sort; |
|
| 794 | + return $this->sort; |
|
| 795 | 795 | } |
| 796 | 796 | public function setStartIndex($startIndex) |
| 797 | 797 | { |
| 798 | - $this->startIndex = $startIndex; |
|
| 798 | + $this->startIndex = $startIndex; |
|
| 799 | 799 | } |
| 800 | 800 | public function getStartIndex() |
| 801 | 801 | { |
| 802 | - return $this->startIndex; |
|
| 802 | + return $this->startIndex; |
|
| 803 | 803 | } |
| 804 | 804 | public function setStartPage($startPage) |
| 805 | 805 | { |
| 806 | - $this->startPage = $startPage; |
|
| 806 | + $this->startPage = $startPage; |
|
| 807 | 807 | } |
| 808 | 808 | public function getStartPage() |
| 809 | 809 | { |
| 810 | - return $this->startPage; |
|
| 810 | + return $this->startPage; |
|
| 811 | 811 | } |
| 812 | 812 | public function setTitle($title) |
| 813 | 813 | { |
| 814 | - $this->title = $title; |
|
| 814 | + $this->title = $title; |
|
| 815 | 815 | } |
| 816 | 816 | public function getTitle() |
| 817 | 817 | { |
| 818 | - return $this->title; |
|
| 818 | + return $this->title; |
|
| 819 | 819 | } |
| 820 | 820 | public function setTotalResults($totalResults) |
| 821 | 821 | { |
| 822 | - $this->totalResults = $totalResults; |
|
| 822 | + $this->totalResults = $totalResults; |
|
| 823 | 823 | } |
| 824 | 824 | public function getTotalResults() |
| 825 | 825 | { |
| 826 | - return $this->totalResults; |
|
| 826 | + return $this->totalResults; |
|
| 827 | 827 | } |
| 828 | 828 | } |
| 829 | 829 | |
@@ -853,123 +853,123 @@ discard block |
||
| 853 | 853 | |
| 854 | 854 | public function setCacheId($cacheId) |
| 855 | 855 | { |
| 856 | - $this->cacheId = $cacheId; |
|
| 856 | + $this->cacheId = $cacheId; |
|
| 857 | 857 | } |
| 858 | 858 | public function getCacheId() |
| 859 | 859 | { |
| 860 | - return $this->cacheId; |
|
| 860 | + return $this->cacheId; |
|
| 861 | 861 | } |
| 862 | 862 | public function setDisplayLink($displayLink) |
| 863 | 863 | { |
| 864 | - $this->displayLink = $displayLink; |
|
| 864 | + $this->displayLink = $displayLink; |
|
| 865 | 865 | } |
| 866 | 866 | public function getDisplayLink() |
| 867 | 867 | { |
| 868 | - return $this->displayLink; |
|
| 868 | + return $this->displayLink; |
|
| 869 | 869 | } |
| 870 | 870 | public function setFileFormat($fileFormat) |
| 871 | 871 | { |
| 872 | - $this->fileFormat = $fileFormat; |
|
| 872 | + $this->fileFormat = $fileFormat; |
|
| 873 | 873 | } |
| 874 | 874 | public function getFileFormat() |
| 875 | 875 | { |
| 876 | - return $this->fileFormat; |
|
| 876 | + return $this->fileFormat; |
|
| 877 | 877 | } |
| 878 | 878 | public function setFormattedUrl($formattedUrl) |
| 879 | 879 | { |
| 880 | - $this->formattedUrl = $formattedUrl; |
|
| 880 | + $this->formattedUrl = $formattedUrl; |
|
| 881 | 881 | } |
| 882 | 882 | public function getFormattedUrl() |
| 883 | 883 | { |
| 884 | - return $this->formattedUrl; |
|
| 884 | + return $this->formattedUrl; |
|
| 885 | 885 | } |
| 886 | 886 | public function setHtmlFormattedUrl($htmlFormattedUrl) |
| 887 | 887 | { |
| 888 | - $this->htmlFormattedUrl = $htmlFormattedUrl; |
|
| 888 | + $this->htmlFormattedUrl = $htmlFormattedUrl; |
|
| 889 | 889 | } |
| 890 | 890 | public function getHtmlFormattedUrl() |
| 891 | 891 | { |
| 892 | - return $this->htmlFormattedUrl; |
|
| 892 | + return $this->htmlFormattedUrl; |
|
| 893 | 893 | } |
| 894 | 894 | public function setHtmlSnippet($htmlSnippet) |
| 895 | 895 | { |
| 896 | - $this->htmlSnippet = $htmlSnippet; |
|
| 896 | + $this->htmlSnippet = $htmlSnippet; |
|
| 897 | 897 | } |
| 898 | 898 | public function getHtmlSnippet() |
| 899 | 899 | { |
| 900 | - return $this->htmlSnippet; |
|
| 900 | + return $this->htmlSnippet; |
|
| 901 | 901 | } |
| 902 | 902 | public function setHtmlTitle($htmlTitle) |
| 903 | 903 | { |
| 904 | - $this->htmlTitle = $htmlTitle; |
|
| 904 | + $this->htmlTitle = $htmlTitle; |
|
| 905 | 905 | } |
| 906 | 906 | public function getHtmlTitle() |
| 907 | 907 | { |
| 908 | - return $this->htmlTitle; |
|
| 908 | + return $this->htmlTitle; |
|
| 909 | 909 | } |
| 910 | 910 | public function setImage(Google_Service_Customsearch_ResultImage $image) |
| 911 | 911 | { |
| 912 | - $this->image = $image; |
|
| 912 | + $this->image = $image; |
|
| 913 | 913 | } |
| 914 | 914 | public function getImage() |
| 915 | 915 | { |
| 916 | - return $this->image; |
|
| 916 | + return $this->image; |
|
| 917 | 917 | } |
| 918 | 918 | public function setKind($kind) |
| 919 | 919 | { |
| 920 | - $this->kind = $kind; |
|
| 920 | + $this->kind = $kind; |
|
| 921 | 921 | } |
| 922 | 922 | public function getKind() |
| 923 | 923 | { |
| 924 | - return $this->kind; |
|
| 924 | + return $this->kind; |
|
| 925 | 925 | } |
| 926 | 926 | public function setLabels($labels) |
| 927 | 927 | { |
| 928 | - $this->labels = $labels; |
|
| 928 | + $this->labels = $labels; |
|
| 929 | 929 | } |
| 930 | 930 | public function getLabels() |
| 931 | 931 | { |
| 932 | - return $this->labels; |
|
| 932 | + return $this->labels; |
|
| 933 | 933 | } |
| 934 | 934 | public function setLink($link) |
| 935 | 935 | { |
| 936 | - $this->link = $link; |
|
| 936 | + $this->link = $link; |
|
| 937 | 937 | } |
| 938 | 938 | public function getLink() |
| 939 | 939 | { |
| 940 | - return $this->link; |
|
| 940 | + return $this->link; |
|
| 941 | 941 | } |
| 942 | 942 | public function setMime($mime) |
| 943 | 943 | { |
| 944 | - $this->mime = $mime; |
|
| 944 | + $this->mime = $mime; |
|
| 945 | 945 | } |
| 946 | 946 | public function getMime() |
| 947 | 947 | { |
| 948 | - return $this->mime; |
|
| 948 | + return $this->mime; |
|
| 949 | 949 | } |
| 950 | 950 | public function setPagemap($pagemap) |
| 951 | 951 | { |
| 952 | - $this->pagemap = $pagemap; |
|
| 952 | + $this->pagemap = $pagemap; |
|
| 953 | 953 | } |
| 954 | 954 | public function getPagemap() |
| 955 | 955 | { |
| 956 | - return $this->pagemap; |
|
| 956 | + return $this->pagemap; |
|
| 957 | 957 | } |
| 958 | 958 | public function setSnippet($snippet) |
| 959 | 959 | { |
| 960 | - $this->snippet = $snippet; |
|
| 960 | + $this->snippet = $snippet; |
|
| 961 | 961 | } |
| 962 | 962 | public function getSnippet() |
| 963 | 963 | { |
| 964 | - return $this->snippet; |
|
| 964 | + return $this->snippet; |
|
| 965 | 965 | } |
| 966 | 966 | public function setTitle($title) |
| 967 | 967 | { |
| 968 | - $this->title = $title; |
|
| 968 | + $this->title = $title; |
|
| 969 | 969 | } |
| 970 | 970 | public function getTitle() |
| 971 | 971 | { |
| 972 | - return $this->title; |
|
| 972 | + return $this->title; |
|
| 973 | 973 | } |
| 974 | 974 | } |
| 975 | 975 | |
@@ -988,66 +988,66 @@ discard block |
||
| 988 | 988 | |
| 989 | 989 | public function setByteSize($byteSize) |
| 990 | 990 | { |
| 991 | - $this->byteSize = $byteSize; |
|
| 991 | + $this->byteSize = $byteSize; |
|
| 992 | 992 | } |
| 993 | 993 | public function getByteSize() |
| 994 | 994 | { |
| 995 | - return $this->byteSize; |
|
| 995 | + return $this->byteSize; |
|
| 996 | 996 | } |
| 997 | 997 | public function setContextLink($contextLink) |
| 998 | 998 | { |
| 999 | - $this->contextLink = $contextLink; |
|
| 999 | + $this->contextLink = $contextLink; |
|
| 1000 | 1000 | } |
| 1001 | 1001 | public function getContextLink() |
| 1002 | 1002 | { |
| 1003 | - return $this->contextLink; |
|
| 1003 | + return $this->contextLink; |
|
| 1004 | 1004 | } |
| 1005 | 1005 | public function setHeight($height) |
| 1006 | 1006 | { |
| 1007 | - $this->height = $height; |
|
| 1007 | + $this->height = $height; |
|
| 1008 | 1008 | } |
| 1009 | 1009 | public function getHeight() |
| 1010 | 1010 | { |
| 1011 | - return $this->height; |
|
| 1011 | + return $this->height; |
|
| 1012 | 1012 | } |
| 1013 | 1013 | public function setThumbnailHeight($thumbnailHeight) |
| 1014 | 1014 | { |
| 1015 | - $this->thumbnailHeight = $thumbnailHeight; |
|
| 1015 | + $this->thumbnailHeight = $thumbnailHeight; |
|
| 1016 | 1016 | } |
| 1017 | 1017 | public function getThumbnailHeight() |
| 1018 | 1018 | { |
| 1019 | - return $this->thumbnailHeight; |
|
| 1019 | + return $this->thumbnailHeight; |
|
| 1020 | 1020 | } |
| 1021 | 1021 | public function setThumbnailLink($thumbnailLink) |
| 1022 | 1022 | { |
| 1023 | - $this->thumbnailLink = $thumbnailLink; |
|
| 1023 | + $this->thumbnailLink = $thumbnailLink; |
|
| 1024 | 1024 | } |
| 1025 | 1025 | public function getThumbnailLink() |
| 1026 | 1026 | { |
| 1027 | - return $this->thumbnailLink; |
|
| 1027 | + return $this->thumbnailLink; |
|
| 1028 | 1028 | } |
| 1029 | 1029 | public function setThumbnailWidth($thumbnailWidth) |
| 1030 | 1030 | { |
| 1031 | - $this->thumbnailWidth = $thumbnailWidth; |
|
| 1031 | + $this->thumbnailWidth = $thumbnailWidth; |
|
| 1032 | 1032 | } |
| 1033 | 1033 | public function getThumbnailWidth() |
| 1034 | 1034 | { |
| 1035 | - return $this->thumbnailWidth; |
|
| 1035 | + return $this->thumbnailWidth; |
|
| 1036 | 1036 | } |
| 1037 | 1037 | public function setWidth($width) |
| 1038 | 1038 | { |
| 1039 | - $this->width = $width; |
|
| 1039 | + $this->width = $width; |
|
| 1040 | 1040 | } |
| 1041 | 1041 | public function getWidth() |
| 1042 | 1042 | { |
| 1043 | - return $this->width; |
|
| 1043 | + return $this->width; |
|
| 1044 | 1044 | } |
| 1045 | 1045 | } |
| 1046 | 1046 | |
| 1047 | 1047 | class Google_Service_Customsearch_ResultLabels extends Google_Model |
| 1048 | 1048 | { |
| 1049 | 1049 | protected $internal_gapi_mappings = array( |
| 1050 | - "labelWithOp" => "label_with_op", |
|
| 1050 | + "labelWithOp" => "label_with_op", |
|
| 1051 | 1051 | ); |
| 1052 | 1052 | public $displayName; |
| 1053 | 1053 | public $labelWithOp; |
@@ -1056,27 +1056,27 @@ discard block |
||
| 1056 | 1056 | |
| 1057 | 1057 | public function setDisplayName($displayName) |
| 1058 | 1058 | { |
| 1059 | - $this->displayName = $displayName; |
|
| 1059 | + $this->displayName = $displayName; |
|
| 1060 | 1060 | } |
| 1061 | 1061 | public function getDisplayName() |
| 1062 | 1062 | { |
| 1063 | - return $this->displayName; |
|
| 1063 | + return $this->displayName; |
|
| 1064 | 1064 | } |
| 1065 | 1065 | public function setLabelWithOp($labelWithOp) |
| 1066 | 1066 | { |
| 1067 | - $this->labelWithOp = $labelWithOp; |
|
| 1067 | + $this->labelWithOp = $labelWithOp; |
|
| 1068 | 1068 | } |
| 1069 | 1069 | public function getLabelWithOp() |
| 1070 | 1070 | { |
| 1071 | - return $this->labelWithOp; |
|
| 1071 | + return $this->labelWithOp; |
|
| 1072 | 1072 | } |
| 1073 | 1073 | public function setName($name) |
| 1074 | 1074 | { |
| 1075 | - $this->name = $name; |
|
| 1075 | + $this->name = $name; |
|
| 1076 | 1076 | } |
| 1077 | 1077 | public function getName() |
| 1078 | 1078 | { |
| 1079 | - return $this->name; |
|
| 1079 | + return $this->name; |
|
| 1080 | 1080 | } |
| 1081 | 1081 | } |
| 1082 | 1082 | |
@@ -1112,67 +1112,67 @@ discard block |
||
| 1112 | 1112 | |
| 1113 | 1113 | public function setContext(Google_Service_Customsearch_Context $context) |
| 1114 | 1114 | { |
| 1115 | - $this->context = $context; |
|
| 1115 | + $this->context = $context; |
|
| 1116 | 1116 | } |
| 1117 | 1117 | public function getContext() |
| 1118 | 1118 | { |
| 1119 | - return $this->context; |
|
| 1119 | + return $this->context; |
|
| 1120 | 1120 | } |
| 1121 | 1121 | public function setItems($items) |
| 1122 | 1122 | { |
| 1123 | - $this->items = $items; |
|
| 1123 | + $this->items = $items; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | public function getItems() |
| 1126 | 1126 | { |
| 1127 | - return $this->items; |
|
| 1127 | + return $this->items; |
|
| 1128 | 1128 | } |
| 1129 | 1129 | public function setKind($kind) |
| 1130 | 1130 | { |
| 1131 | - $this->kind = $kind; |
|
| 1131 | + $this->kind = $kind; |
|
| 1132 | 1132 | } |
| 1133 | 1133 | public function getKind() |
| 1134 | 1134 | { |
| 1135 | - return $this->kind; |
|
| 1135 | + return $this->kind; |
|
| 1136 | 1136 | } |
| 1137 | 1137 | public function setPromotions($promotions) |
| 1138 | 1138 | { |
| 1139 | - $this->promotions = $promotions; |
|
| 1139 | + $this->promotions = $promotions; |
|
| 1140 | 1140 | } |
| 1141 | 1141 | public function getPromotions() |
| 1142 | 1142 | { |
| 1143 | - return $this->promotions; |
|
| 1143 | + return $this->promotions; |
|
| 1144 | 1144 | } |
| 1145 | 1145 | public function setQueries($queries) |
| 1146 | 1146 | { |
| 1147 | - $this->queries = $queries; |
|
| 1147 | + $this->queries = $queries; |
|
| 1148 | 1148 | } |
| 1149 | 1149 | public function getQueries() |
| 1150 | 1150 | { |
| 1151 | - return $this->queries; |
|
| 1151 | + return $this->queries; |
|
| 1152 | 1152 | } |
| 1153 | 1153 | public function setSearchInformation(Google_Service_Customsearch_SearchSearchInformation $searchInformation) |
| 1154 | 1154 | { |
| 1155 | - $this->searchInformation = $searchInformation; |
|
| 1155 | + $this->searchInformation = $searchInformation; |
|
| 1156 | 1156 | } |
| 1157 | 1157 | public function getSearchInformation() |
| 1158 | 1158 | { |
| 1159 | - return $this->searchInformation; |
|
| 1159 | + return $this->searchInformation; |
|
| 1160 | 1160 | } |
| 1161 | 1161 | public function setSpelling(Google_Service_Customsearch_SearchSpelling $spelling) |
| 1162 | 1162 | { |
| 1163 | - $this->spelling = $spelling; |
|
| 1163 | + $this->spelling = $spelling; |
|
| 1164 | 1164 | } |
| 1165 | 1165 | public function getSpelling() |
| 1166 | 1166 | { |
| 1167 | - return $this->spelling; |
|
| 1167 | + return $this->spelling; |
|
| 1168 | 1168 | } |
| 1169 | 1169 | public function setUrl(Google_Service_Customsearch_SearchUrl $url) |
| 1170 | 1170 | { |
| 1171 | - $this->url = $url; |
|
| 1171 | + $this->url = $url; |
|
| 1172 | 1172 | } |
| 1173 | 1173 | public function getUrl() |
| 1174 | 1174 | { |
| 1175 | - return $this->url; |
|
| 1175 | + return $this->url; |
|
| 1176 | 1176 | } |
| 1177 | 1177 | } |
| 1178 | 1178 | |
@@ -1192,35 +1192,35 @@ discard block |
||
| 1192 | 1192 | |
| 1193 | 1193 | public function setFormattedSearchTime($formattedSearchTime) |
| 1194 | 1194 | { |
| 1195 | - $this->formattedSearchTime = $formattedSearchTime; |
|
| 1195 | + $this->formattedSearchTime = $formattedSearchTime; |
|
| 1196 | 1196 | } |
| 1197 | 1197 | public function getFormattedSearchTime() |
| 1198 | 1198 | { |
| 1199 | - return $this->formattedSearchTime; |
|
| 1199 | + return $this->formattedSearchTime; |
|
| 1200 | 1200 | } |
| 1201 | 1201 | public function setFormattedTotalResults($formattedTotalResults) |
| 1202 | 1202 | { |
| 1203 | - $this->formattedTotalResults = $formattedTotalResults; |
|
| 1203 | + $this->formattedTotalResults = $formattedTotalResults; |
|
| 1204 | 1204 | } |
| 1205 | 1205 | public function getFormattedTotalResults() |
| 1206 | 1206 | { |
| 1207 | - return $this->formattedTotalResults; |
|
| 1207 | + return $this->formattedTotalResults; |
|
| 1208 | 1208 | } |
| 1209 | 1209 | public function setSearchTime($searchTime) |
| 1210 | 1210 | { |
| 1211 | - $this->searchTime = $searchTime; |
|
| 1211 | + $this->searchTime = $searchTime; |
|
| 1212 | 1212 | } |
| 1213 | 1213 | public function getSearchTime() |
| 1214 | 1214 | { |
| 1215 | - return $this->searchTime; |
|
| 1215 | + return $this->searchTime; |
|
| 1216 | 1216 | } |
| 1217 | 1217 | public function setTotalResults($totalResults) |
| 1218 | 1218 | { |
| 1219 | - $this->totalResults = $totalResults; |
|
| 1219 | + $this->totalResults = $totalResults; |
|
| 1220 | 1220 | } |
| 1221 | 1221 | public function getTotalResults() |
| 1222 | 1222 | { |
| 1223 | - return $this->totalResults; |
|
| 1223 | + return $this->totalResults; |
|
| 1224 | 1224 | } |
| 1225 | 1225 | } |
| 1226 | 1226 | |
@@ -1234,19 +1234,19 @@ discard block |
||
| 1234 | 1234 | |
| 1235 | 1235 | public function setCorrectedQuery($correctedQuery) |
| 1236 | 1236 | { |
| 1237 | - $this->correctedQuery = $correctedQuery; |
|
| 1237 | + $this->correctedQuery = $correctedQuery; |
|
| 1238 | 1238 | } |
| 1239 | 1239 | public function getCorrectedQuery() |
| 1240 | 1240 | { |
| 1241 | - return $this->correctedQuery; |
|
| 1241 | + return $this->correctedQuery; |
|
| 1242 | 1242 | } |
| 1243 | 1243 | public function setHtmlCorrectedQuery($htmlCorrectedQuery) |
| 1244 | 1244 | { |
| 1245 | - $this->htmlCorrectedQuery = $htmlCorrectedQuery; |
|
| 1245 | + $this->htmlCorrectedQuery = $htmlCorrectedQuery; |
|
| 1246 | 1246 | } |
| 1247 | 1247 | public function getHtmlCorrectedQuery() |
| 1248 | 1248 | { |
| 1249 | - return $this->htmlCorrectedQuery; |
|
| 1249 | + return $this->htmlCorrectedQuery; |
|
| 1250 | 1250 | } |
| 1251 | 1251 | } |
| 1252 | 1252 | |
@@ -1260,18 +1260,18 @@ discard block |
||
| 1260 | 1260 | |
| 1261 | 1261 | public function setTemplate($template) |
| 1262 | 1262 | { |
| 1263 | - $this->template = $template; |
|
| 1263 | + $this->template = $template; |
|
| 1264 | 1264 | } |
| 1265 | 1265 | public function getTemplate() |
| 1266 | 1266 | { |
| 1267 | - return $this->template; |
|
| 1267 | + return $this->template; |
|
| 1268 | 1268 | } |
| 1269 | 1269 | public function setType($type) |
| 1270 | 1270 | { |
| 1271 | - $this->type = $type; |
|
| 1271 | + $this->type = $type; |
|
| 1272 | 1272 | } |
| 1273 | 1273 | public function getType() |
| 1274 | 1274 | { |
| 1275 | - return $this->type; |
|
| 1275 | + return $this->type; |
|
| 1276 | 1276 | } |
| 1277 | 1277 | } |
@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Manage your calendars. */ |
| 34 | 34 | const CALENDAR = |
| 35 | - "https://www.googleapis.com/auth/calendar"; |
|
| 35 | + "https://www.googleapis.com/auth/calendar"; |
|
| 36 | 36 | /** View your calendars. */ |
| 37 | 37 | const CALENDAR_READONLY = |
| 38 | - "https://www.googleapis.com/auth/calendar.readonly"; |
|
| 38 | + "https://www.googleapis.com/auth/calendar.readonly"; |
|
| 39 | 39 | |
| 40 | 40 | public $acl; |
| 41 | 41 | public $calendarList; |
@@ -54,837 +54,837 @@ 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 = 'calendar/v3/'; |
|
| 60 | - $this->version = 'v3'; |
|
| 61 | - $this->serviceName = 'calendar'; |
|
| 62 | - |
|
| 63 | - $this->acl = new Google_Service_Calendar_Acl_Resource( |
|
| 64 | - $this, |
|
| 65 | - $this->serviceName, |
|
| 66 | - 'acl', |
|
| 67 | - array( |
|
| 68 | - 'methods' => array( |
|
| 69 | - 'delete' => array( |
|
| 70 | - 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 71 | - 'httpMethod' => 'DELETE', |
|
| 72 | - 'parameters' => array( |
|
| 73 | - 'calendarId' => array( |
|
| 74 | - 'location' => 'path', |
|
| 75 | - 'type' => 'string', |
|
| 76 | - 'required' => true, |
|
| 77 | - ), |
|
| 78 | - 'ruleId' => array( |
|
| 79 | - 'location' => 'path', |
|
| 80 | - 'type' => 'string', |
|
| 81 | - 'required' => true, |
|
| 82 | - ), |
|
| 83 | - ), |
|
| 84 | - ),'get' => array( |
|
| 85 | - 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 86 | - 'httpMethod' => 'GET', |
|
| 87 | - 'parameters' => array( |
|
| 88 | - 'calendarId' => array( |
|
| 89 | - 'location' => 'path', |
|
| 90 | - 'type' => 'string', |
|
| 91 | - 'required' => true, |
|
| 92 | - ), |
|
| 93 | - 'ruleId' => array( |
|
| 94 | - 'location' => 'path', |
|
| 95 | - 'type' => 'string', |
|
| 96 | - 'required' => true, |
|
| 97 | - ), |
|
| 98 | - ), |
|
| 99 | - ),'insert' => array( |
|
| 100 | - 'path' => 'calendars/{calendarId}/acl', |
|
| 101 | - 'httpMethod' => 'POST', |
|
| 102 | - 'parameters' => array( |
|
| 103 | - 'calendarId' => array( |
|
| 104 | - 'location' => 'path', |
|
| 105 | - 'type' => 'string', |
|
| 106 | - 'required' => true, |
|
| 107 | - ), |
|
| 108 | - ), |
|
| 109 | - ),'list' => array( |
|
| 110 | - 'path' => 'calendars/{calendarId}/acl', |
|
| 111 | - 'httpMethod' => 'GET', |
|
| 112 | - 'parameters' => array( |
|
| 113 | - 'calendarId' => array( |
|
| 114 | - 'location' => 'path', |
|
| 115 | - 'type' => 'string', |
|
| 116 | - 'required' => true, |
|
| 117 | - ), |
|
| 118 | - 'pageToken' => array( |
|
| 119 | - 'location' => 'query', |
|
| 120 | - 'type' => 'string', |
|
| 121 | - ), |
|
| 122 | - 'syncToken' => array( |
|
| 123 | - 'location' => 'query', |
|
| 124 | - 'type' => 'string', |
|
| 125 | - ), |
|
| 126 | - 'maxResults' => array( |
|
| 127 | - 'location' => 'query', |
|
| 128 | - 'type' => 'integer', |
|
| 129 | - ), |
|
| 130 | - 'showDeleted' => array( |
|
| 131 | - 'location' => 'query', |
|
| 132 | - 'type' => 'boolean', |
|
| 133 | - ), |
|
| 134 | - ), |
|
| 135 | - ),'patch' => array( |
|
| 136 | - 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 137 | - 'httpMethod' => 'PATCH', |
|
| 138 | - 'parameters' => array( |
|
| 139 | - 'calendarId' => array( |
|
| 140 | - 'location' => 'path', |
|
| 141 | - 'type' => 'string', |
|
| 142 | - 'required' => true, |
|
| 143 | - ), |
|
| 144 | - 'ruleId' => array( |
|
| 145 | - 'location' => 'path', |
|
| 146 | - 'type' => 'string', |
|
| 147 | - 'required' => true, |
|
| 148 | - ), |
|
| 149 | - ), |
|
| 150 | - ),'update' => array( |
|
| 151 | - 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 152 | - 'httpMethod' => 'PUT', |
|
| 153 | - 'parameters' => array( |
|
| 154 | - 'calendarId' => array( |
|
| 155 | - 'location' => 'path', |
|
| 156 | - 'type' => 'string', |
|
| 157 | - 'required' => true, |
|
| 158 | - ), |
|
| 159 | - 'ruleId' => array( |
|
| 160 | - 'location' => 'path', |
|
| 161 | - 'type' => 'string', |
|
| 162 | - 'required' => true, |
|
| 163 | - ), |
|
| 164 | - ), |
|
| 165 | - ),'watch' => array( |
|
| 166 | - 'path' => 'calendars/{calendarId}/acl/watch', |
|
| 167 | - 'httpMethod' => 'POST', |
|
| 168 | - 'parameters' => array( |
|
| 169 | - 'calendarId' => array( |
|
| 170 | - 'location' => 'path', |
|
| 171 | - 'type' => 'string', |
|
| 172 | - 'required' => true, |
|
| 173 | - ), |
|
| 174 | - 'pageToken' => array( |
|
| 175 | - 'location' => 'query', |
|
| 176 | - 'type' => 'string', |
|
| 177 | - ), |
|
| 178 | - 'syncToken' => array( |
|
| 179 | - 'location' => 'query', |
|
| 180 | - 'type' => 'string', |
|
| 181 | - ), |
|
| 182 | - 'maxResults' => array( |
|
| 183 | - 'location' => 'query', |
|
| 184 | - 'type' => 'integer', |
|
| 185 | - ), |
|
| 186 | - 'showDeleted' => array( |
|
| 187 | - 'location' => 'query', |
|
| 188 | - 'type' => 'boolean', |
|
| 189 | - ), |
|
| 190 | - ), |
|
| 191 | - ), |
|
| 192 | - ) |
|
| 193 | - ) |
|
| 194 | - ); |
|
| 195 | - $this->calendarList = new Google_Service_Calendar_CalendarList_Resource( |
|
| 196 | - $this, |
|
| 197 | - $this->serviceName, |
|
| 198 | - 'calendarList', |
|
| 199 | - array( |
|
| 200 | - 'methods' => array( |
|
| 201 | - 'delete' => array( |
|
| 202 | - 'path' => 'users/me/calendarList/{calendarId}', |
|
| 203 | - 'httpMethod' => 'DELETE', |
|
| 204 | - 'parameters' => array( |
|
| 205 | - 'calendarId' => array( |
|
| 206 | - 'location' => 'path', |
|
| 207 | - 'type' => 'string', |
|
| 208 | - 'required' => true, |
|
| 209 | - ), |
|
| 210 | - ), |
|
| 211 | - ),'get' => array( |
|
| 212 | - 'path' => 'users/me/calendarList/{calendarId}', |
|
| 213 | - 'httpMethod' => 'GET', |
|
| 214 | - 'parameters' => array( |
|
| 215 | - 'calendarId' => array( |
|
| 216 | - 'location' => 'path', |
|
| 217 | - 'type' => 'string', |
|
| 218 | - 'required' => true, |
|
| 219 | - ), |
|
| 220 | - ), |
|
| 221 | - ),'insert' => array( |
|
| 222 | - 'path' => 'users/me/calendarList', |
|
| 223 | - 'httpMethod' => 'POST', |
|
| 224 | - 'parameters' => array( |
|
| 225 | - 'colorRgbFormat' => array( |
|
| 226 | - 'location' => 'query', |
|
| 227 | - 'type' => 'boolean', |
|
| 228 | - ), |
|
| 229 | - ), |
|
| 230 | - ),'list' => array( |
|
| 231 | - 'path' => 'users/me/calendarList', |
|
| 232 | - 'httpMethod' => 'GET', |
|
| 233 | - 'parameters' => array( |
|
| 234 | - 'syncToken' => array( |
|
| 235 | - 'location' => 'query', |
|
| 236 | - 'type' => 'string', |
|
| 237 | - ), |
|
| 238 | - 'showDeleted' => array( |
|
| 239 | - 'location' => 'query', |
|
| 240 | - 'type' => 'boolean', |
|
| 241 | - ), |
|
| 242 | - 'minAccessRole' => array( |
|
| 243 | - 'location' => 'query', |
|
| 244 | - 'type' => 'string', |
|
| 245 | - ), |
|
| 246 | - 'maxResults' => array( |
|
| 247 | - 'location' => 'query', |
|
| 248 | - 'type' => 'integer', |
|
| 249 | - ), |
|
| 250 | - 'pageToken' => array( |
|
| 251 | - 'location' => 'query', |
|
| 252 | - 'type' => 'string', |
|
| 253 | - ), |
|
| 254 | - 'showHidden' => array( |
|
| 255 | - 'location' => 'query', |
|
| 256 | - 'type' => 'boolean', |
|
| 257 | - ), |
|
| 258 | - ), |
|
| 259 | - ),'patch' => array( |
|
| 260 | - 'path' => 'users/me/calendarList/{calendarId}', |
|
| 261 | - 'httpMethod' => 'PATCH', |
|
| 262 | - 'parameters' => array( |
|
| 263 | - 'calendarId' => array( |
|
| 264 | - 'location' => 'path', |
|
| 265 | - 'type' => 'string', |
|
| 266 | - 'required' => true, |
|
| 267 | - ), |
|
| 268 | - 'colorRgbFormat' => array( |
|
| 269 | - 'location' => 'query', |
|
| 270 | - 'type' => 'boolean', |
|
| 271 | - ), |
|
| 272 | - ), |
|
| 273 | - ),'update' => array( |
|
| 274 | - 'path' => 'users/me/calendarList/{calendarId}', |
|
| 275 | - 'httpMethod' => 'PUT', |
|
| 276 | - 'parameters' => array( |
|
| 277 | - 'calendarId' => array( |
|
| 278 | - 'location' => 'path', |
|
| 279 | - 'type' => 'string', |
|
| 280 | - 'required' => true, |
|
| 281 | - ), |
|
| 282 | - 'colorRgbFormat' => array( |
|
| 283 | - 'location' => 'query', |
|
| 284 | - 'type' => 'boolean', |
|
| 285 | - ), |
|
| 286 | - ), |
|
| 287 | - ),'watch' => array( |
|
| 288 | - 'path' => 'users/me/calendarList/watch', |
|
| 289 | - 'httpMethod' => 'POST', |
|
| 290 | - 'parameters' => array( |
|
| 291 | - 'syncToken' => array( |
|
| 292 | - 'location' => 'query', |
|
| 293 | - 'type' => 'string', |
|
| 294 | - ), |
|
| 295 | - 'showDeleted' => array( |
|
| 296 | - 'location' => 'query', |
|
| 297 | - 'type' => 'boolean', |
|
| 298 | - ), |
|
| 299 | - 'minAccessRole' => array( |
|
| 300 | - 'location' => 'query', |
|
| 301 | - 'type' => 'string', |
|
| 302 | - ), |
|
| 303 | - 'maxResults' => array( |
|
| 304 | - 'location' => 'query', |
|
| 305 | - 'type' => 'integer', |
|
| 306 | - ), |
|
| 307 | - 'pageToken' => array( |
|
| 308 | - 'location' => 'query', |
|
| 309 | - 'type' => 'string', |
|
| 310 | - ), |
|
| 311 | - 'showHidden' => array( |
|
| 312 | - 'location' => 'query', |
|
| 313 | - 'type' => 'boolean', |
|
| 314 | - ), |
|
| 315 | - ), |
|
| 316 | - ), |
|
| 317 | - ) |
|
| 318 | - ) |
|
| 319 | - ); |
|
| 320 | - $this->calendars = new Google_Service_Calendar_Calendars_Resource( |
|
| 321 | - $this, |
|
| 322 | - $this->serviceName, |
|
| 323 | - 'calendars', |
|
| 324 | - array( |
|
| 325 | - 'methods' => array( |
|
| 326 | - 'clear' => array( |
|
| 327 | - 'path' => 'calendars/{calendarId}/clear', |
|
| 328 | - 'httpMethod' => 'POST', |
|
| 329 | - 'parameters' => array( |
|
| 330 | - 'calendarId' => array( |
|
| 331 | - 'location' => 'path', |
|
| 332 | - 'type' => 'string', |
|
| 333 | - 'required' => true, |
|
| 334 | - ), |
|
| 335 | - ), |
|
| 336 | - ),'delete' => array( |
|
| 337 | - 'path' => 'calendars/{calendarId}', |
|
| 338 | - 'httpMethod' => 'DELETE', |
|
| 339 | - 'parameters' => array( |
|
| 340 | - 'calendarId' => array( |
|
| 341 | - 'location' => 'path', |
|
| 342 | - 'type' => 'string', |
|
| 343 | - 'required' => true, |
|
| 344 | - ), |
|
| 345 | - ), |
|
| 346 | - ),'get' => array( |
|
| 347 | - 'path' => 'calendars/{calendarId}', |
|
| 348 | - 'httpMethod' => 'GET', |
|
| 349 | - 'parameters' => array( |
|
| 350 | - 'calendarId' => array( |
|
| 351 | - 'location' => 'path', |
|
| 352 | - 'type' => 'string', |
|
| 353 | - 'required' => true, |
|
| 354 | - ), |
|
| 355 | - ), |
|
| 356 | - ),'insert' => array( |
|
| 357 | - 'path' => 'calendars', |
|
| 358 | - 'httpMethod' => 'POST', |
|
| 359 | - 'parameters' => array(), |
|
| 360 | - ),'patch' => array( |
|
| 361 | - 'path' => 'calendars/{calendarId}', |
|
| 362 | - 'httpMethod' => 'PATCH', |
|
| 363 | - 'parameters' => array( |
|
| 364 | - 'calendarId' => array( |
|
| 365 | - 'location' => 'path', |
|
| 366 | - 'type' => 'string', |
|
| 367 | - 'required' => true, |
|
| 368 | - ), |
|
| 369 | - ), |
|
| 370 | - ),'update' => array( |
|
| 371 | - 'path' => 'calendars/{calendarId}', |
|
| 372 | - 'httpMethod' => 'PUT', |
|
| 373 | - 'parameters' => array( |
|
| 374 | - 'calendarId' => array( |
|
| 375 | - 'location' => 'path', |
|
| 376 | - 'type' => 'string', |
|
| 377 | - 'required' => true, |
|
| 378 | - ), |
|
| 379 | - ), |
|
| 380 | - ), |
|
| 381 | - ) |
|
| 382 | - ) |
|
| 383 | - ); |
|
| 384 | - $this->channels = new Google_Service_Calendar_Channels_Resource( |
|
| 385 | - $this, |
|
| 386 | - $this->serviceName, |
|
| 387 | - 'channels', |
|
| 388 | - array( |
|
| 389 | - 'methods' => array( |
|
| 390 | - 'stop' => array( |
|
| 391 | - 'path' => 'channels/stop', |
|
| 392 | - 'httpMethod' => 'POST', |
|
| 393 | - 'parameters' => array(), |
|
| 394 | - ), |
|
| 395 | - ) |
|
| 396 | - ) |
|
| 397 | - ); |
|
| 398 | - $this->colors = new Google_Service_Calendar_Colors_Resource( |
|
| 399 | - $this, |
|
| 400 | - $this->serviceName, |
|
| 401 | - 'colors', |
|
| 402 | - array( |
|
| 403 | - 'methods' => array( |
|
| 404 | - 'get' => array( |
|
| 405 | - 'path' => 'colors', |
|
| 406 | - 'httpMethod' => 'GET', |
|
| 407 | - 'parameters' => array(), |
|
| 408 | - ), |
|
| 409 | - ) |
|
| 410 | - ) |
|
| 411 | - ); |
|
| 412 | - $this->events = new Google_Service_Calendar_Events_Resource( |
|
| 413 | - $this, |
|
| 414 | - $this->serviceName, |
|
| 415 | - 'events', |
|
| 416 | - array( |
|
| 417 | - 'methods' => array( |
|
| 418 | - 'delete' => array( |
|
| 419 | - 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 420 | - 'httpMethod' => 'DELETE', |
|
| 421 | - 'parameters' => array( |
|
| 422 | - 'calendarId' => array( |
|
| 423 | - 'location' => 'path', |
|
| 424 | - 'type' => 'string', |
|
| 425 | - 'required' => true, |
|
| 426 | - ), |
|
| 427 | - 'eventId' => array( |
|
| 428 | - 'location' => 'path', |
|
| 429 | - 'type' => 'string', |
|
| 430 | - 'required' => true, |
|
| 431 | - ), |
|
| 432 | - 'sendNotifications' => array( |
|
| 433 | - 'location' => 'query', |
|
| 434 | - 'type' => 'boolean', |
|
| 435 | - ), |
|
| 436 | - ), |
|
| 437 | - ),'get' => array( |
|
| 438 | - 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 439 | - 'httpMethod' => 'GET', |
|
| 440 | - 'parameters' => array( |
|
| 441 | - 'calendarId' => array( |
|
| 442 | - 'location' => 'path', |
|
| 443 | - 'type' => 'string', |
|
| 444 | - 'required' => true, |
|
| 445 | - ), |
|
| 446 | - 'eventId' => array( |
|
| 447 | - 'location' => 'path', |
|
| 448 | - 'type' => 'string', |
|
| 449 | - 'required' => true, |
|
| 450 | - ), |
|
| 451 | - 'timeZone' => array( |
|
| 452 | - 'location' => 'query', |
|
| 453 | - 'type' => 'string', |
|
| 454 | - ), |
|
| 455 | - 'alwaysIncludeEmail' => array( |
|
| 456 | - 'location' => 'query', |
|
| 457 | - 'type' => 'boolean', |
|
| 458 | - ), |
|
| 459 | - 'maxAttendees' => array( |
|
| 460 | - 'location' => 'query', |
|
| 461 | - 'type' => 'integer', |
|
| 462 | - ), |
|
| 463 | - ), |
|
| 464 | - ),'import' => array( |
|
| 465 | - 'path' => 'calendars/{calendarId}/events/import', |
|
| 466 | - 'httpMethod' => 'POST', |
|
| 467 | - 'parameters' => array( |
|
| 468 | - 'calendarId' => array( |
|
| 469 | - 'location' => 'path', |
|
| 470 | - 'type' => 'string', |
|
| 471 | - 'required' => true, |
|
| 472 | - ), |
|
| 473 | - 'supportsAttachments' => array( |
|
| 474 | - 'location' => 'query', |
|
| 475 | - 'type' => 'boolean', |
|
| 476 | - ), |
|
| 477 | - ), |
|
| 478 | - ),'insert' => array( |
|
| 479 | - 'path' => 'calendars/{calendarId}/events', |
|
| 480 | - 'httpMethod' => 'POST', |
|
| 481 | - 'parameters' => array( |
|
| 482 | - 'calendarId' => array( |
|
| 483 | - 'location' => 'path', |
|
| 484 | - 'type' => 'string', |
|
| 485 | - 'required' => true, |
|
| 486 | - ), |
|
| 487 | - 'supportsAttachments' => array( |
|
| 488 | - 'location' => 'query', |
|
| 489 | - 'type' => 'boolean', |
|
| 490 | - ), |
|
| 491 | - 'sendNotifications' => array( |
|
| 492 | - 'location' => 'query', |
|
| 493 | - 'type' => 'boolean', |
|
| 494 | - ), |
|
| 495 | - 'maxAttendees' => array( |
|
| 496 | - 'location' => 'query', |
|
| 497 | - 'type' => 'integer', |
|
| 498 | - ), |
|
| 499 | - ), |
|
| 500 | - ),'instances' => array( |
|
| 501 | - 'path' => 'calendars/{calendarId}/events/{eventId}/instances', |
|
| 502 | - 'httpMethod' => 'GET', |
|
| 503 | - 'parameters' => array( |
|
| 504 | - 'calendarId' => array( |
|
| 505 | - 'location' => 'path', |
|
| 506 | - 'type' => 'string', |
|
| 507 | - 'required' => true, |
|
| 508 | - ), |
|
| 509 | - 'eventId' => array( |
|
| 510 | - 'location' => 'path', |
|
| 511 | - 'type' => 'string', |
|
| 512 | - 'required' => true, |
|
| 513 | - ), |
|
| 514 | - 'showDeleted' => array( |
|
| 515 | - 'location' => 'query', |
|
| 516 | - 'type' => 'boolean', |
|
| 517 | - ), |
|
| 518 | - 'timeMax' => array( |
|
| 519 | - 'location' => 'query', |
|
| 520 | - 'type' => 'string', |
|
| 521 | - ), |
|
| 522 | - 'alwaysIncludeEmail' => array( |
|
| 523 | - 'location' => 'query', |
|
| 524 | - 'type' => 'boolean', |
|
| 525 | - ), |
|
| 526 | - 'maxResults' => array( |
|
| 527 | - 'location' => 'query', |
|
| 528 | - 'type' => 'integer', |
|
| 529 | - ), |
|
| 530 | - 'pageToken' => array( |
|
| 531 | - 'location' => 'query', |
|
| 532 | - 'type' => 'string', |
|
| 533 | - ), |
|
| 534 | - 'timeMin' => array( |
|
| 535 | - 'location' => 'query', |
|
| 536 | - 'type' => 'string', |
|
| 537 | - ), |
|
| 538 | - 'timeZone' => array( |
|
| 539 | - 'location' => 'query', |
|
| 540 | - 'type' => 'string', |
|
| 541 | - ), |
|
| 542 | - 'originalStart' => array( |
|
| 543 | - 'location' => 'query', |
|
| 544 | - 'type' => 'string', |
|
| 545 | - ), |
|
| 546 | - 'maxAttendees' => array( |
|
| 547 | - 'location' => 'query', |
|
| 548 | - 'type' => 'integer', |
|
| 549 | - ), |
|
| 550 | - ), |
|
| 551 | - ),'list' => array( |
|
| 552 | - 'path' => 'calendars/{calendarId}/events', |
|
| 553 | - 'httpMethod' => 'GET', |
|
| 554 | - 'parameters' => array( |
|
| 555 | - 'calendarId' => array( |
|
| 556 | - 'location' => 'path', |
|
| 557 | - 'type' => 'string', |
|
| 558 | - 'required' => true, |
|
| 559 | - ), |
|
| 560 | - 'orderBy' => array( |
|
| 561 | - 'location' => 'query', |
|
| 562 | - 'type' => 'string', |
|
| 563 | - ), |
|
| 564 | - 'showHiddenInvitations' => array( |
|
| 565 | - 'location' => 'query', |
|
| 566 | - 'type' => 'boolean', |
|
| 567 | - ), |
|
| 568 | - 'syncToken' => array( |
|
| 569 | - 'location' => 'query', |
|
| 570 | - 'type' => 'string', |
|
| 571 | - ), |
|
| 572 | - 'showDeleted' => array( |
|
| 573 | - 'location' => 'query', |
|
| 574 | - 'type' => 'boolean', |
|
| 575 | - ), |
|
| 576 | - 'iCalUID' => array( |
|
| 577 | - 'location' => 'query', |
|
| 578 | - 'type' => 'string', |
|
| 579 | - ), |
|
| 580 | - 'updatedMin' => array( |
|
| 581 | - 'location' => 'query', |
|
| 582 | - 'type' => 'string', |
|
| 583 | - ), |
|
| 584 | - 'singleEvents' => array( |
|
| 585 | - 'location' => 'query', |
|
| 586 | - 'type' => 'boolean', |
|
| 587 | - ), |
|
| 588 | - 'timeMax' => array( |
|
| 589 | - 'location' => 'query', |
|
| 590 | - 'type' => 'string', |
|
| 591 | - ), |
|
| 592 | - 'alwaysIncludeEmail' => array( |
|
| 593 | - 'location' => 'query', |
|
| 594 | - 'type' => 'boolean', |
|
| 595 | - ), |
|
| 596 | - 'maxResults' => array( |
|
| 597 | - 'location' => 'query', |
|
| 598 | - 'type' => 'integer', |
|
| 599 | - ), |
|
| 600 | - 'q' => array( |
|
| 601 | - 'location' => 'query', |
|
| 602 | - 'type' => 'string', |
|
| 603 | - ), |
|
| 604 | - 'pageToken' => array( |
|
| 605 | - 'location' => 'query', |
|
| 606 | - 'type' => 'string', |
|
| 607 | - ), |
|
| 608 | - 'timeMin' => array( |
|
| 609 | - 'location' => 'query', |
|
| 610 | - 'type' => 'string', |
|
| 611 | - ), |
|
| 612 | - 'timeZone' => array( |
|
| 613 | - 'location' => 'query', |
|
| 614 | - 'type' => 'string', |
|
| 615 | - ), |
|
| 616 | - 'privateExtendedProperty' => array( |
|
| 617 | - 'location' => 'query', |
|
| 618 | - 'type' => 'string', |
|
| 619 | - 'repeated' => true, |
|
| 620 | - ), |
|
| 621 | - 'sharedExtendedProperty' => array( |
|
| 622 | - 'location' => 'query', |
|
| 623 | - 'type' => 'string', |
|
| 624 | - 'repeated' => true, |
|
| 625 | - ), |
|
| 626 | - 'maxAttendees' => array( |
|
| 627 | - 'location' => 'query', |
|
| 628 | - 'type' => 'integer', |
|
| 629 | - ), |
|
| 630 | - ), |
|
| 631 | - ),'move' => array( |
|
| 632 | - 'path' => 'calendars/{calendarId}/events/{eventId}/move', |
|
| 633 | - 'httpMethod' => 'POST', |
|
| 634 | - 'parameters' => array( |
|
| 635 | - 'calendarId' => array( |
|
| 636 | - 'location' => 'path', |
|
| 637 | - 'type' => 'string', |
|
| 638 | - 'required' => true, |
|
| 639 | - ), |
|
| 640 | - 'eventId' => array( |
|
| 641 | - 'location' => 'path', |
|
| 642 | - 'type' => 'string', |
|
| 643 | - 'required' => true, |
|
| 644 | - ), |
|
| 645 | - 'destination' => array( |
|
| 646 | - 'location' => 'query', |
|
| 647 | - 'type' => 'string', |
|
| 648 | - 'required' => true, |
|
| 649 | - ), |
|
| 650 | - 'sendNotifications' => array( |
|
| 651 | - 'location' => 'query', |
|
| 652 | - 'type' => 'boolean', |
|
| 653 | - ), |
|
| 654 | - ), |
|
| 655 | - ),'patch' => array( |
|
| 656 | - 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 657 | - 'httpMethod' => 'PATCH', |
|
| 658 | - 'parameters' => array( |
|
| 659 | - 'calendarId' => array( |
|
| 660 | - 'location' => 'path', |
|
| 661 | - 'type' => 'string', |
|
| 662 | - 'required' => true, |
|
| 663 | - ), |
|
| 664 | - 'eventId' => array( |
|
| 665 | - 'location' => 'path', |
|
| 666 | - 'type' => 'string', |
|
| 667 | - 'required' => true, |
|
| 668 | - ), |
|
| 669 | - 'sendNotifications' => array( |
|
| 670 | - 'location' => 'query', |
|
| 671 | - 'type' => 'boolean', |
|
| 672 | - ), |
|
| 673 | - 'alwaysIncludeEmail' => array( |
|
| 674 | - 'location' => 'query', |
|
| 675 | - 'type' => 'boolean', |
|
| 676 | - ), |
|
| 677 | - 'supportsAttachments' => array( |
|
| 678 | - 'location' => 'query', |
|
| 679 | - 'type' => 'boolean', |
|
| 680 | - ), |
|
| 681 | - 'maxAttendees' => array( |
|
| 682 | - 'location' => 'query', |
|
| 683 | - 'type' => 'integer', |
|
| 684 | - ), |
|
| 685 | - ), |
|
| 686 | - ),'quickAdd' => array( |
|
| 687 | - 'path' => 'calendars/{calendarId}/events/quickAdd', |
|
| 688 | - 'httpMethod' => 'POST', |
|
| 689 | - 'parameters' => array( |
|
| 690 | - 'calendarId' => array( |
|
| 691 | - 'location' => 'path', |
|
| 692 | - 'type' => 'string', |
|
| 693 | - 'required' => true, |
|
| 694 | - ), |
|
| 695 | - 'text' => array( |
|
| 696 | - 'location' => 'query', |
|
| 697 | - 'type' => 'string', |
|
| 698 | - 'required' => true, |
|
| 699 | - ), |
|
| 700 | - 'sendNotifications' => array( |
|
| 701 | - 'location' => 'query', |
|
| 702 | - 'type' => 'boolean', |
|
| 703 | - ), |
|
| 704 | - ), |
|
| 705 | - ),'update' => array( |
|
| 706 | - 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 707 | - 'httpMethod' => 'PUT', |
|
| 708 | - 'parameters' => array( |
|
| 709 | - 'calendarId' => array( |
|
| 710 | - 'location' => 'path', |
|
| 711 | - 'type' => 'string', |
|
| 712 | - 'required' => true, |
|
| 713 | - ), |
|
| 714 | - 'eventId' => array( |
|
| 715 | - 'location' => 'path', |
|
| 716 | - 'type' => 'string', |
|
| 717 | - 'required' => true, |
|
| 718 | - ), |
|
| 719 | - 'sendNotifications' => array( |
|
| 720 | - 'location' => 'query', |
|
| 721 | - 'type' => 'boolean', |
|
| 722 | - ), |
|
| 723 | - 'alwaysIncludeEmail' => array( |
|
| 724 | - 'location' => 'query', |
|
| 725 | - 'type' => 'boolean', |
|
| 726 | - ), |
|
| 727 | - 'supportsAttachments' => array( |
|
| 728 | - 'location' => 'query', |
|
| 729 | - 'type' => 'boolean', |
|
| 730 | - ), |
|
| 731 | - 'maxAttendees' => array( |
|
| 732 | - 'location' => 'query', |
|
| 733 | - 'type' => 'integer', |
|
| 734 | - ), |
|
| 735 | - ), |
|
| 736 | - ),'watch' => array( |
|
| 737 | - 'path' => 'calendars/{calendarId}/events/watch', |
|
| 738 | - 'httpMethod' => 'POST', |
|
| 739 | - 'parameters' => array( |
|
| 740 | - 'calendarId' => array( |
|
| 741 | - 'location' => 'path', |
|
| 742 | - 'type' => 'string', |
|
| 743 | - 'required' => true, |
|
| 744 | - ), |
|
| 745 | - 'orderBy' => array( |
|
| 746 | - 'location' => 'query', |
|
| 747 | - 'type' => 'string', |
|
| 748 | - ), |
|
| 749 | - 'showHiddenInvitations' => array( |
|
| 750 | - 'location' => 'query', |
|
| 751 | - 'type' => 'boolean', |
|
| 752 | - ), |
|
| 753 | - 'syncToken' => array( |
|
| 754 | - 'location' => 'query', |
|
| 755 | - 'type' => 'string', |
|
| 756 | - ), |
|
| 757 | - 'showDeleted' => array( |
|
| 758 | - 'location' => 'query', |
|
| 759 | - 'type' => 'boolean', |
|
| 760 | - ), |
|
| 761 | - 'iCalUID' => array( |
|
| 762 | - 'location' => 'query', |
|
| 763 | - 'type' => 'string', |
|
| 764 | - ), |
|
| 765 | - 'updatedMin' => array( |
|
| 766 | - 'location' => 'query', |
|
| 767 | - 'type' => 'string', |
|
| 768 | - ), |
|
| 769 | - 'singleEvents' => array( |
|
| 770 | - 'location' => 'query', |
|
| 771 | - 'type' => 'boolean', |
|
| 772 | - ), |
|
| 773 | - 'timeMax' => array( |
|
| 774 | - 'location' => 'query', |
|
| 775 | - 'type' => 'string', |
|
| 776 | - ), |
|
| 777 | - 'alwaysIncludeEmail' => array( |
|
| 778 | - 'location' => 'query', |
|
| 779 | - 'type' => 'boolean', |
|
| 780 | - ), |
|
| 781 | - 'maxResults' => array( |
|
| 782 | - 'location' => 'query', |
|
| 783 | - 'type' => 'integer', |
|
| 784 | - ), |
|
| 785 | - 'q' => array( |
|
| 786 | - 'location' => 'query', |
|
| 787 | - 'type' => 'string', |
|
| 788 | - ), |
|
| 789 | - 'pageToken' => array( |
|
| 790 | - 'location' => 'query', |
|
| 791 | - 'type' => 'string', |
|
| 792 | - ), |
|
| 793 | - 'timeMin' => array( |
|
| 794 | - 'location' => 'query', |
|
| 795 | - 'type' => 'string', |
|
| 796 | - ), |
|
| 797 | - 'timeZone' => array( |
|
| 798 | - 'location' => 'query', |
|
| 799 | - 'type' => 'string', |
|
| 800 | - ), |
|
| 801 | - 'privateExtendedProperty' => array( |
|
| 802 | - 'location' => 'query', |
|
| 803 | - 'type' => 'string', |
|
| 804 | - 'repeated' => true, |
|
| 805 | - ), |
|
| 806 | - 'sharedExtendedProperty' => array( |
|
| 807 | - 'location' => 'query', |
|
| 808 | - 'type' => 'string', |
|
| 809 | - 'repeated' => true, |
|
| 810 | - ), |
|
| 811 | - 'maxAttendees' => array( |
|
| 812 | - 'location' => 'query', |
|
| 813 | - 'type' => 'integer', |
|
| 814 | - ), |
|
| 815 | - ), |
|
| 816 | - ), |
|
| 817 | - ) |
|
| 818 | - ) |
|
| 819 | - ); |
|
| 820 | - $this->freebusy = new Google_Service_Calendar_Freebusy_Resource( |
|
| 821 | - $this, |
|
| 822 | - $this->serviceName, |
|
| 823 | - 'freebusy', |
|
| 824 | - array( |
|
| 825 | - 'methods' => array( |
|
| 826 | - 'query' => array( |
|
| 827 | - 'path' => 'freeBusy', |
|
| 828 | - 'httpMethod' => 'POST', |
|
| 829 | - 'parameters' => array(), |
|
| 830 | - ), |
|
| 831 | - ) |
|
| 832 | - ) |
|
| 833 | - ); |
|
| 834 | - $this->settings = new Google_Service_Calendar_Settings_Resource( |
|
| 835 | - $this, |
|
| 836 | - $this->serviceName, |
|
| 837 | - 'settings', |
|
| 838 | - array( |
|
| 839 | - 'methods' => array( |
|
| 840 | - 'get' => array( |
|
| 841 | - 'path' => 'users/me/settings/{setting}', |
|
| 842 | - 'httpMethod' => 'GET', |
|
| 843 | - 'parameters' => array( |
|
| 844 | - 'setting' => array( |
|
| 845 | - 'location' => 'path', |
|
| 846 | - 'type' => 'string', |
|
| 847 | - 'required' => true, |
|
| 848 | - ), |
|
| 849 | - ), |
|
| 850 | - ),'list' => array( |
|
| 851 | - 'path' => 'users/me/settings', |
|
| 852 | - 'httpMethod' => 'GET', |
|
| 853 | - 'parameters' => array( |
|
| 854 | - 'pageToken' => array( |
|
| 855 | - 'location' => 'query', |
|
| 856 | - 'type' => 'string', |
|
| 857 | - ), |
|
| 858 | - 'maxResults' => array( |
|
| 859 | - 'location' => 'query', |
|
| 860 | - 'type' => 'integer', |
|
| 861 | - ), |
|
| 862 | - 'syncToken' => array( |
|
| 863 | - 'location' => 'query', |
|
| 864 | - 'type' => 'string', |
|
| 865 | - ), |
|
| 866 | - ), |
|
| 867 | - ),'watch' => array( |
|
| 868 | - 'path' => 'users/me/settings/watch', |
|
| 869 | - 'httpMethod' => 'POST', |
|
| 870 | - 'parameters' => array( |
|
| 871 | - 'pageToken' => array( |
|
| 872 | - 'location' => 'query', |
|
| 873 | - 'type' => 'string', |
|
| 874 | - ), |
|
| 875 | - 'maxResults' => array( |
|
| 876 | - 'location' => 'query', |
|
| 877 | - 'type' => 'integer', |
|
| 878 | - ), |
|
| 879 | - 'syncToken' => array( |
|
| 880 | - 'location' => 'query', |
|
| 881 | - 'type' => 'string', |
|
| 882 | - ), |
|
| 883 | - ), |
|
| 884 | - ), |
|
| 885 | - ) |
|
| 886 | - ) |
|
| 887 | - ); |
|
| 57 | + parent::__construct($client); |
|
| 58 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 59 | + $this->servicePath = 'calendar/v3/'; |
|
| 60 | + $this->version = 'v3'; |
|
| 61 | + $this->serviceName = 'calendar'; |
|
| 62 | + |
|
| 63 | + $this->acl = new Google_Service_Calendar_Acl_Resource( |
|
| 64 | + $this, |
|
| 65 | + $this->serviceName, |
|
| 66 | + 'acl', |
|
| 67 | + array( |
|
| 68 | + 'methods' => array( |
|
| 69 | + 'delete' => array( |
|
| 70 | + 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 71 | + 'httpMethod' => 'DELETE', |
|
| 72 | + 'parameters' => array( |
|
| 73 | + 'calendarId' => array( |
|
| 74 | + 'location' => 'path', |
|
| 75 | + 'type' => 'string', |
|
| 76 | + 'required' => true, |
|
| 77 | + ), |
|
| 78 | + 'ruleId' => array( |
|
| 79 | + 'location' => 'path', |
|
| 80 | + 'type' => 'string', |
|
| 81 | + 'required' => true, |
|
| 82 | + ), |
|
| 83 | + ), |
|
| 84 | + ),'get' => array( |
|
| 85 | + 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 86 | + 'httpMethod' => 'GET', |
|
| 87 | + 'parameters' => array( |
|
| 88 | + 'calendarId' => array( |
|
| 89 | + 'location' => 'path', |
|
| 90 | + 'type' => 'string', |
|
| 91 | + 'required' => true, |
|
| 92 | + ), |
|
| 93 | + 'ruleId' => array( |
|
| 94 | + 'location' => 'path', |
|
| 95 | + 'type' => 'string', |
|
| 96 | + 'required' => true, |
|
| 97 | + ), |
|
| 98 | + ), |
|
| 99 | + ),'insert' => array( |
|
| 100 | + 'path' => 'calendars/{calendarId}/acl', |
|
| 101 | + 'httpMethod' => 'POST', |
|
| 102 | + 'parameters' => array( |
|
| 103 | + 'calendarId' => array( |
|
| 104 | + 'location' => 'path', |
|
| 105 | + 'type' => 'string', |
|
| 106 | + 'required' => true, |
|
| 107 | + ), |
|
| 108 | + ), |
|
| 109 | + ),'list' => array( |
|
| 110 | + 'path' => 'calendars/{calendarId}/acl', |
|
| 111 | + 'httpMethod' => 'GET', |
|
| 112 | + 'parameters' => array( |
|
| 113 | + 'calendarId' => array( |
|
| 114 | + 'location' => 'path', |
|
| 115 | + 'type' => 'string', |
|
| 116 | + 'required' => true, |
|
| 117 | + ), |
|
| 118 | + 'pageToken' => array( |
|
| 119 | + 'location' => 'query', |
|
| 120 | + 'type' => 'string', |
|
| 121 | + ), |
|
| 122 | + 'syncToken' => array( |
|
| 123 | + 'location' => 'query', |
|
| 124 | + 'type' => 'string', |
|
| 125 | + ), |
|
| 126 | + 'maxResults' => array( |
|
| 127 | + 'location' => 'query', |
|
| 128 | + 'type' => 'integer', |
|
| 129 | + ), |
|
| 130 | + 'showDeleted' => array( |
|
| 131 | + 'location' => 'query', |
|
| 132 | + 'type' => 'boolean', |
|
| 133 | + ), |
|
| 134 | + ), |
|
| 135 | + ),'patch' => array( |
|
| 136 | + 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 137 | + 'httpMethod' => 'PATCH', |
|
| 138 | + 'parameters' => array( |
|
| 139 | + 'calendarId' => array( |
|
| 140 | + 'location' => 'path', |
|
| 141 | + 'type' => 'string', |
|
| 142 | + 'required' => true, |
|
| 143 | + ), |
|
| 144 | + 'ruleId' => array( |
|
| 145 | + 'location' => 'path', |
|
| 146 | + 'type' => 'string', |
|
| 147 | + 'required' => true, |
|
| 148 | + ), |
|
| 149 | + ), |
|
| 150 | + ),'update' => array( |
|
| 151 | + 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
|
| 152 | + 'httpMethod' => 'PUT', |
|
| 153 | + 'parameters' => array( |
|
| 154 | + 'calendarId' => array( |
|
| 155 | + 'location' => 'path', |
|
| 156 | + 'type' => 'string', |
|
| 157 | + 'required' => true, |
|
| 158 | + ), |
|
| 159 | + 'ruleId' => array( |
|
| 160 | + 'location' => 'path', |
|
| 161 | + 'type' => 'string', |
|
| 162 | + 'required' => true, |
|
| 163 | + ), |
|
| 164 | + ), |
|
| 165 | + ),'watch' => array( |
|
| 166 | + 'path' => 'calendars/{calendarId}/acl/watch', |
|
| 167 | + 'httpMethod' => 'POST', |
|
| 168 | + 'parameters' => array( |
|
| 169 | + 'calendarId' => array( |
|
| 170 | + 'location' => 'path', |
|
| 171 | + 'type' => 'string', |
|
| 172 | + 'required' => true, |
|
| 173 | + ), |
|
| 174 | + 'pageToken' => array( |
|
| 175 | + 'location' => 'query', |
|
| 176 | + 'type' => 'string', |
|
| 177 | + ), |
|
| 178 | + 'syncToken' => array( |
|
| 179 | + 'location' => 'query', |
|
| 180 | + 'type' => 'string', |
|
| 181 | + ), |
|
| 182 | + 'maxResults' => array( |
|
| 183 | + 'location' => 'query', |
|
| 184 | + 'type' => 'integer', |
|
| 185 | + ), |
|
| 186 | + 'showDeleted' => array( |
|
| 187 | + 'location' => 'query', |
|
| 188 | + 'type' => 'boolean', |
|
| 189 | + ), |
|
| 190 | + ), |
|
| 191 | + ), |
|
| 192 | + ) |
|
| 193 | + ) |
|
| 194 | + ); |
|
| 195 | + $this->calendarList = new Google_Service_Calendar_CalendarList_Resource( |
|
| 196 | + $this, |
|
| 197 | + $this->serviceName, |
|
| 198 | + 'calendarList', |
|
| 199 | + array( |
|
| 200 | + 'methods' => array( |
|
| 201 | + 'delete' => array( |
|
| 202 | + 'path' => 'users/me/calendarList/{calendarId}', |
|
| 203 | + 'httpMethod' => 'DELETE', |
|
| 204 | + 'parameters' => array( |
|
| 205 | + 'calendarId' => array( |
|
| 206 | + 'location' => 'path', |
|
| 207 | + 'type' => 'string', |
|
| 208 | + 'required' => true, |
|
| 209 | + ), |
|
| 210 | + ), |
|
| 211 | + ),'get' => array( |
|
| 212 | + 'path' => 'users/me/calendarList/{calendarId}', |
|
| 213 | + 'httpMethod' => 'GET', |
|
| 214 | + 'parameters' => array( |
|
| 215 | + 'calendarId' => array( |
|
| 216 | + 'location' => 'path', |
|
| 217 | + 'type' => 'string', |
|
| 218 | + 'required' => true, |
|
| 219 | + ), |
|
| 220 | + ), |
|
| 221 | + ),'insert' => array( |
|
| 222 | + 'path' => 'users/me/calendarList', |
|
| 223 | + 'httpMethod' => 'POST', |
|
| 224 | + 'parameters' => array( |
|
| 225 | + 'colorRgbFormat' => array( |
|
| 226 | + 'location' => 'query', |
|
| 227 | + 'type' => 'boolean', |
|
| 228 | + ), |
|
| 229 | + ), |
|
| 230 | + ),'list' => array( |
|
| 231 | + 'path' => 'users/me/calendarList', |
|
| 232 | + 'httpMethod' => 'GET', |
|
| 233 | + 'parameters' => array( |
|
| 234 | + 'syncToken' => array( |
|
| 235 | + 'location' => 'query', |
|
| 236 | + 'type' => 'string', |
|
| 237 | + ), |
|
| 238 | + 'showDeleted' => array( |
|
| 239 | + 'location' => 'query', |
|
| 240 | + 'type' => 'boolean', |
|
| 241 | + ), |
|
| 242 | + 'minAccessRole' => array( |
|
| 243 | + 'location' => 'query', |
|
| 244 | + 'type' => 'string', |
|
| 245 | + ), |
|
| 246 | + 'maxResults' => array( |
|
| 247 | + 'location' => 'query', |
|
| 248 | + 'type' => 'integer', |
|
| 249 | + ), |
|
| 250 | + 'pageToken' => array( |
|
| 251 | + 'location' => 'query', |
|
| 252 | + 'type' => 'string', |
|
| 253 | + ), |
|
| 254 | + 'showHidden' => array( |
|
| 255 | + 'location' => 'query', |
|
| 256 | + 'type' => 'boolean', |
|
| 257 | + ), |
|
| 258 | + ), |
|
| 259 | + ),'patch' => array( |
|
| 260 | + 'path' => 'users/me/calendarList/{calendarId}', |
|
| 261 | + 'httpMethod' => 'PATCH', |
|
| 262 | + 'parameters' => array( |
|
| 263 | + 'calendarId' => array( |
|
| 264 | + 'location' => 'path', |
|
| 265 | + 'type' => 'string', |
|
| 266 | + 'required' => true, |
|
| 267 | + ), |
|
| 268 | + 'colorRgbFormat' => array( |
|
| 269 | + 'location' => 'query', |
|
| 270 | + 'type' => 'boolean', |
|
| 271 | + ), |
|
| 272 | + ), |
|
| 273 | + ),'update' => array( |
|
| 274 | + 'path' => 'users/me/calendarList/{calendarId}', |
|
| 275 | + 'httpMethod' => 'PUT', |
|
| 276 | + 'parameters' => array( |
|
| 277 | + 'calendarId' => array( |
|
| 278 | + 'location' => 'path', |
|
| 279 | + 'type' => 'string', |
|
| 280 | + 'required' => true, |
|
| 281 | + ), |
|
| 282 | + 'colorRgbFormat' => array( |
|
| 283 | + 'location' => 'query', |
|
| 284 | + 'type' => 'boolean', |
|
| 285 | + ), |
|
| 286 | + ), |
|
| 287 | + ),'watch' => array( |
|
| 288 | + 'path' => 'users/me/calendarList/watch', |
|
| 289 | + 'httpMethod' => 'POST', |
|
| 290 | + 'parameters' => array( |
|
| 291 | + 'syncToken' => array( |
|
| 292 | + 'location' => 'query', |
|
| 293 | + 'type' => 'string', |
|
| 294 | + ), |
|
| 295 | + 'showDeleted' => array( |
|
| 296 | + 'location' => 'query', |
|
| 297 | + 'type' => 'boolean', |
|
| 298 | + ), |
|
| 299 | + 'minAccessRole' => array( |
|
| 300 | + 'location' => 'query', |
|
| 301 | + 'type' => 'string', |
|
| 302 | + ), |
|
| 303 | + 'maxResults' => array( |
|
| 304 | + 'location' => 'query', |
|
| 305 | + 'type' => 'integer', |
|
| 306 | + ), |
|
| 307 | + 'pageToken' => array( |
|
| 308 | + 'location' => 'query', |
|
| 309 | + 'type' => 'string', |
|
| 310 | + ), |
|
| 311 | + 'showHidden' => array( |
|
| 312 | + 'location' => 'query', |
|
| 313 | + 'type' => 'boolean', |
|
| 314 | + ), |
|
| 315 | + ), |
|
| 316 | + ), |
|
| 317 | + ) |
|
| 318 | + ) |
|
| 319 | + ); |
|
| 320 | + $this->calendars = new Google_Service_Calendar_Calendars_Resource( |
|
| 321 | + $this, |
|
| 322 | + $this->serviceName, |
|
| 323 | + 'calendars', |
|
| 324 | + array( |
|
| 325 | + 'methods' => array( |
|
| 326 | + 'clear' => array( |
|
| 327 | + 'path' => 'calendars/{calendarId}/clear', |
|
| 328 | + 'httpMethod' => 'POST', |
|
| 329 | + 'parameters' => array( |
|
| 330 | + 'calendarId' => array( |
|
| 331 | + 'location' => 'path', |
|
| 332 | + 'type' => 'string', |
|
| 333 | + 'required' => true, |
|
| 334 | + ), |
|
| 335 | + ), |
|
| 336 | + ),'delete' => array( |
|
| 337 | + 'path' => 'calendars/{calendarId}', |
|
| 338 | + 'httpMethod' => 'DELETE', |
|
| 339 | + 'parameters' => array( |
|
| 340 | + 'calendarId' => array( |
|
| 341 | + 'location' => 'path', |
|
| 342 | + 'type' => 'string', |
|
| 343 | + 'required' => true, |
|
| 344 | + ), |
|
| 345 | + ), |
|
| 346 | + ),'get' => array( |
|
| 347 | + 'path' => 'calendars/{calendarId}', |
|
| 348 | + 'httpMethod' => 'GET', |
|
| 349 | + 'parameters' => array( |
|
| 350 | + 'calendarId' => array( |
|
| 351 | + 'location' => 'path', |
|
| 352 | + 'type' => 'string', |
|
| 353 | + 'required' => true, |
|
| 354 | + ), |
|
| 355 | + ), |
|
| 356 | + ),'insert' => array( |
|
| 357 | + 'path' => 'calendars', |
|
| 358 | + 'httpMethod' => 'POST', |
|
| 359 | + 'parameters' => array(), |
|
| 360 | + ),'patch' => array( |
|
| 361 | + 'path' => 'calendars/{calendarId}', |
|
| 362 | + 'httpMethod' => 'PATCH', |
|
| 363 | + 'parameters' => array( |
|
| 364 | + 'calendarId' => array( |
|
| 365 | + 'location' => 'path', |
|
| 366 | + 'type' => 'string', |
|
| 367 | + 'required' => true, |
|
| 368 | + ), |
|
| 369 | + ), |
|
| 370 | + ),'update' => array( |
|
| 371 | + 'path' => 'calendars/{calendarId}', |
|
| 372 | + 'httpMethod' => 'PUT', |
|
| 373 | + 'parameters' => array( |
|
| 374 | + 'calendarId' => array( |
|
| 375 | + 'location' => 'path', |
|
| 376 | + 'type' => 'string', |
|
| 377 | + 'required' => true, |
|
| 378 | + ), |
|
| 379 | + ), |
|
| 380 | + ), |
|
| 381 | + ) |
|
| 382 | + ) |
|
| 383 | + ); |
|
| 384 | + $this->channels = new Google_Service_Calendar_Channels_Resource( |
|
| 385 | + $this, |
|
| 386 | + $this->serviceName, |
|
| 387 | + 'channels', |
|
| 388 | + array( |
|
| 389 | + 'methods' => array( |
|
| 390 | + 'stop' => array( |
|
| 391 | + 'path' => 'channels/stop', |
|
| 392 | + 'httpMethod' => 'POST', |
|
| 393 | + 'parameters' => array(), |
|
| 394 | + ), |
|
| 395 | + ) |
|
| 396 | + ) |
|
| 397 | + ); |
|
| 398 | + $this->colors = new Google_Service_Calendar_Colors_Resource( |
|
| 399 | + $this, |
|
| 400 | + $this->serviceName, |
|
| 401 | + 'colors', |
|
| 402 | + array( |
|
| 403 | + 'methods' => array( |
|
| 404 | + 'get' => array( |
|
| 405 | + 'path' => 'colors', |
|
| 406 | + 'httpMethod' => 'GET', |
|
| 407 | + 'parameters' => array(), |
|
| 408 | + ), |
|
| 409 | + ) |
|
| 410 | + ) |
|
| 411 | + ); |
|
| 412 | + $this->events = new Google_Service_Calendar_Events_Resource( |
|
| 413 | + $this, |
|
| 414 | + $this->serviceName, |
|
| 415 | + 'events', |
|
| 416 | + array( |
|
| 417 | + 'methods' => array( |
|
| 418 | + 'delete' => array( |
|
| 419 | + 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 420 | + 'httpMethod' => 'DELETE', |
|
| 421 | + 'parameters' => array( |
|
| 422 | + 'calendarId' => array( |
|
| 423 | + 'location' => 'path', |
|
| 424 | + 'type' => 'string', |
|
| 425 | + 'required' => true, |
|
| 426 | + ), |
|
| 427 | + 'eventId' => array( |
|
| 428 | + 'location' => 'path', |
|
| 429 | + 'type' => 'string', |
|
| 430 | + 'required' => true, |
|
| 431 | + ), |
|
| 432 | + 'sendNotifications' => array( |
|
| 433 | + 'location' => 'query', |
|
| 434 | + 'type' => 'boolean', |
|
| 435 | + ), |
|
| 436 | + ), |
|
| 437 | + ),'get' => array( |
|
| 438 | + 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 439 | + 'httpMethod' => 'GET', |
|
| 440 | + 'parameters' => array( |
|
| 441 | + 'calendarId' => array( |
|
| 442 | + 'location' => 'path', |
|
| 443 | + 'type' => 'string', |
|
| 444 | + 'required' => true, |
|
| 445 | + ), |
|
| 446 | + 'eventId' => array( |
|
| 447 | + 'location' => 'path', |
|
| 448 | + 'type' => 'string', |
|
| 449 | + 'required' => true, |
|
| 450 | + ), |
|
| 451 | + 'timeZone' => array( |
|
| 452 | + 'location' => 'query', |
|
| 453 | + 'type' => 'string', |
|
| 454 | + ), |
|
| 455 | + 'alwaysIncludeEmail' => array( |
|
| 456 | + 'location' => 'query', |
|
| 457 | + 'type' => 'boolean', |
|
| 458 | + ), |
|
| 459 | + 'maxAttendees' => array( |
|
| 460 | + 'location' => 'query', |
|
| 461 | + 'type' => 'integer', |
|
| 462 | + ), |
|
| 463 | + ), |
|
| 464 | + ),'import' => array( |
|
| 465 | + 'path' => 'calendars/{calendarId}/events/import', |
|
| 466 | + 'httpMethod' => 'POST', |
|
| 467 | + 'parameters' => array( |
|
| 468 | + 'calendarId' => array( |
|
| 469 | + 'location' => 'path', |
|
| 470 | + 'type' => 'string', |
|
| 471 | + 'required' => true, |
|
| 472 | + ), |
|
| 473 | + 'supportsAttachments' => array( |
|
| 474 | + 'location' => 'query', |
|
| 475 | + 'type' => 'boolean', |
|
| 476 | + ), |
|
| 477 | + ), |
|
| 478 | + ),'insert' => array( |
|
| 479 | + 'path' => 'calendars/{calendarId}/events', |
|
| 480 | + 'httpMethod' => 'POST', |
|
| 481 | + 'parameters' => array( |
|
| 482 | + 'calendarId' => array( |
|
| 483 | + 'location' => 'path', |
|
| 484 | + 'type' => 'string', |
|
| 485 | + 'required' => true, |
|
| 486 | + ), |
|
| 487 | + 'supportsAttachments' => array( |
|
| 488 | + 'location' => 'query', |
|
| 489 | + 'type' => 'boolean', |
|
| 490 | + ), |
|
| 491 | + 'sendNotifications' => array( |
|
| 492 | + 'location' => 'query', |
|
| 493 | + 'type' => 'boolean', |
|
| 494 | + ), |
|
| 495 | + 'maxAttendees' => array( |
|
| 496 | + 'location' => 'query', |
|
| 497 | + 'type' => 'integer', |
|
| 498 | + ), |
|
| 499 | + ), |
|
| 500 | + ),'instances' => array( |
|
| 501 | + 'path' => 'calendars/{calendarId}/events/{eventId}/instances', |
|
| 502 | + 'httpMethod' => 'GET', |
|
| 503 | + 'parameters' => array( |
|
| 504 | + 'calendarId' => array( |
|
| 505 | + 'location' => 'path', |
|
| 506 | + 'type' => 'string', |
|
| 507 | + 'required' => true, |
|
| 508 | + ), |
|
| 509 | + 'eventId' => array( |
|
| 510 | + 'location' => 'path', |
|
| 511 | + 'type' => 'string', |
|
| 512 | + 'required' => true, |
|
| 513 | + ), |
|
| 514 | + 'showDeleted' => array( |
|
| 515 | + 'location' => 'query', |
|
| 516 | + 'type' => 'boolean', |
|
| 517 | + ), |
|
| 518 | + 'timeMax' => array( |
|
| 519 | + 'location' => 'query', |
|
| 520 | + 'type' => 'string', |
|
| 521 | + ), |
|
| 522 | + 'alwaysIncludeEmail' => array( |
|
| 523 | + 'location' => 'query', |
|
| 524 | + 'type' => 'boolean', |
|
| 525 | + ), |
|
| 526 | + 'maxResults' => array( |
|
| 527 | + 'location' => 'query', |
|
| 528 | + 'type' => 'integer', |
|
| 529 | + ), |
|
| 530 | + 'pageToken' => array( |
|
| 531 | + 'location' => 'query', |
|
| 532 | + 'type' => 'string', |
|
| 533 | + ), |
|
| 534 | + 'timeMin' => array( |
|
| 535 | + 'location' => 'query', |
|
| 536 | + 'type' => 'string', |
|
| 537 | + ), |
|
| 538 | + 'timeZone' => array( |
|
| 539 | + 'location' => 'query', |
|
| 540 | + 'type' => 'string', |
|
| 541 | + ), |
|
| 542 | + 'originalStart' => array( |
|
| 543 | + 'location' => 'query', |
|
| 544 | + 'type' => 'string', |
|
| 545 | + ), |
|
| 546 | + 'maxAttendees' => array( |
|
| 547 | + 'location' => 'query', |
|
| 548 | + 'type' => 'integer', |
|
| 549 | + ), |
|
| 550 | + ), |
|
| 551 | + ),'list' => array( |
|
| 552 | + 'path' => 'calendars/{calendarId}/events', |
|
| 553 | + 'httpMethod' => 'GET', |
|
| 554 | + 'parameters' => array( |
|
| 555 | + 'calendarId' => array( |
|
| 556 | + 'location' => 'path', |
|
| 557 | + 'type' => 'string', |
|
| 558 | + 'required' => true, |
|
| 559 | + ), |
|
| 560 | + 'orderBy' => array( |
|
| 561 | + 'location' => 'query', |
|
| 562 | + 'type' => 'string', |
|
| 563 | + ), |
|
| 564 | + 'showHiddenInvitations' => array( |
|
| 565 | + 'location' => 'query', |
|
| 566 | + 'type' => 'boolean', |
|
| 567 | + ), |
|
| 568 | + 'syncToken' => array( |
|
| 569 | + 'location' => 'query', |
|
| 570 | + 'type' => 'string', |
|
| 571 | + ), |
|
| 572 | + 'showDeleted' => array( |
|
| 573 | + 'location' => 'query', |
|
| 574 | + 'type' => 'boolean', |
|
| 575 | + ), |
|
| 576 | + 'iCalUID' => array( |
|
| 577 | + 'location' => 'query', |
|
| 578 | + 'type' => 'string', |
|
| 579 | + ), |
|
| 580 | + 'updatedMin' => array( |
|
| 581 | + 'location' => 'query', |
|
| 582 | + 'type' => 'string', |
|
| 583 | + ), |
|
| 584 | + 'singleEvents' => array( |
|
| 585 | + 'location' => 'query', |
|
| 586 | + 'type' => 'boolean', |
|
| 587 | + ), |
|
| 588 | + 'timeMax' => array( |
|
| 589 | + 'location' => 'query', |
|
| 590 | + 'type' => 'string', |
|
| 591 | + ), |
|
| 592 | + 'alwaysIncludeEmail' => array( |
|
| 593 | + 'location' => 'query', |
|
| 594 | + 'type' => 'boolean', |
|
| 595 | + ), |
|
| 596 | + 'maxResults' => array( |
|
| 597 | + 'location' => 'query', |
|
| 598 | + 'type' => 'integer', |
|
| 599 | + ), |
|
| 600 | + 'q' => array( |
|
| 601 | + 'location' => 'query', |
|
| 602 | + 'type' => 'string', |
|
| 603 | + ), |
|
| 604 | + 'pageToken' => array( |
|
| 605 | + 'location' => 'query', |
|
| 606 | + 'type' => 'string', |
|
| 607 | + ), |
|
| 608 | + 'timeMin' => array( |
|
| 609 | + 'location' => 'query', |
|
| 610 | + 'type' => 'string', |
|
| 611 | + ), |
|
| 612 | + 'timeZone' => array( |
|
| 613 | + 'location' => 'query', |
|
| 614 | + 'type' => 'string', |
|
| 615 | + ), |
|
| 616 | + 'privateExtendedProperty' => array( |
|
| 617 | + 'location' => 'query', |
|
| 618 | + 'type' => 'string', |
|
| 619 | + 'repeated' => true, |
|
| 620 | + ), |
|
| 621 | + 'sharedExtendedProperty' => array( |
|
| 622 | + 'location' => 'query', |
|
| 623 | + 'type' => 'string', |
|
| 624 | + 'repeated' => true, |
|
| 625 | + ), |
|
| 626 | + 'maxAttendees' => array( |
|
| 627 | + 'location' => 'query', |
|
| 628 | + 'type' => 'integer', |
|
| 629 | + ), |
|
| 630 | + ), |
|
| 631 | + ),'move' => array( |
|
| 632 | + 'path' => 'calendars/{calendarId}/events/{eventId}/move', |
|
| 633 | + 'httpMethod' => 'POST', |
|
| 634 | + 'parameters' => array( |
|
| 635 | + 'calendarId' => array( |
|
| 636 | + 'location' => 'path', |
|
| 637 | + 'type' => 'string', |
|
| 638 | + 'required' => true, |
|
| 639 | + ), |
|
| 640 | + 'eventId' => array( |
|
| 641 | + 'location' => 'path', |
|
| 642 | + 'type' => 'string', |
|
| 643 | + 'required' => true, |
|
| 644 | + ), |
|
| 645 | + 'destination' => array( |
|
| 646 | + 'location' => 'query', |
|
| 647 | + 'type' => 'string', |
|
| 648 | + 'required' => true, |
|
| 649 | + ), |
|
| 650 | + 'sendNotifications' => array( |
|
| 651 | + 'location' => 'query', |
|
| 652 | + 'type' => 'boolean', |
|
| 653 | + ), |
|
| 654 | + ), |
|
| 655 | + ),'patch' => array( |
|
| 656 | + 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 657 | + 'httpMethod' => 'PATCH', |
|
| 658 | + 'parameters' => array( |
|
| 659 | + 'calendarId' => array( |
|
| 660 | + 'location' => 'path', |
|
| 661 | + 'type' => 'string', |
|
| 662 | + 'required' => true, |
|
| 663 | + ), |
|
| 664 | + 'eventId' => array( |
|
| 665 | + 'location' => 'path', |
|
| 666 | + 'type' => 'string', |
|
| 667 | + 'required' => true, |
|
| 668 | + ), |
|
| 669 | + 'sendNotifications' => array( |
|
| 670 | + 'location' => 'query', |
|
| 671 | + 'type' => 'boolean', |
|
| 672 | + ), |
|
| 673 | + 'alwaysIncludeEmail' => array( |
|
| 674 | + 'location' => 'query', |
|
| 675 | + 'type' => 'boolean', |
|
| 676 | + ), |
|
| 677 | + 'supportsAttachments' => array( |
|
| 678 | + 'location' => 'query', |
|
| 679 | + 'type' => 'boolean', |
|
| 680 | + ), |
|
| 681 | + 'maxAttendees' => array( |
|
| 682 | + 'location' => 'query', |
|
| 683 | + 'type' => 'integer', |
|
| 684 | + ), |
|
| 685 | + ), |
|
| 686 | + ),'quickAdd' => array( |
|
| 687 | + 'path' => 'calendars/{calendarId}/events/quickAdd', |
|
| 688 | + 'httpMethod' => 'POST', |
|
| 689 | + 'parameters' => array( |
|
| 690 | + 'calendarId' => array( |
|
| 691 | + 'location' => 'path', |
|
| 692 | + 'type' => 'string', |
|
| 693 | + 'required' => true, |
|
| 694 | + ), |
|
| 695 | + 'text' => array( |
|
| 696 | + 'location' => 'query', |
|
| 697 | + 'type' => 'string', |
|
| 698 | + 'required' => true, |
|
| 699 | + ), |
|
| 700 | + 'sendNotifications' => array( |
|
| 701 | + 'location' => 'query', |
|
| 702 | + 'type' => 'boolean', |
|
| 703 | + ), |
|
| 704 | + ), |
|
| 705 | + ),'update' => array( |
|
| 706 | + 'path' => 'calendars/{calendarId}/events/{eventId}', |
|
| 707 | + 'httpMethod' => 'PUT', |
|
| 708 | + 'parameters' => array( |
|
| 709 | + 'calendarId' => array( |
|
| 710 | + 'location' => 'path', |
|
| 711 | + 'type' => 'string', |
|
| 712 | + 'required' => true, |
|
| 713 | + ), |
|
| 714 | + 'eventId' => array( |
|
| 715 | + 'location' => 'path', |
|
| 716 | + 'type' => 'string', |
|
| 717 | + 'required' => true, |
|
| 718 | + ), |
|
| 719 | + 'sendNotifications' => array( |
|
| 720 | + 'location' => 'query', |
|
| 721 | + 'type' => 'boolean', |
|
| 722 | + ), |
|
| 723 | + 'alwaysIncludeEmail' => array( |
|
| 724 | + 'location' => 'query', |
|
| 725 | + 'type' => 'boolean', |
|
| 726 | + ), |
|
| 727 | + 'supportsAttachments' => array( |
|
| 728 | + 'location' => 'query', |
|
| 729 | + 'type' => 'boolean', |
|
| 730 | + ), |
|
| 731 | + 'maxAttendees' => array( |
|
| 732 | + 'location' => 'query', |
|
| 733 | + 'type' => 'integer', |
|
| 734 | + ), |
|
| 735 | + ), |
|
| 736 | + ),'watch' => array( |
|
| 737 | + 'path' => 'calendars/{calendarId}/events/watch', |
|
| 738 | + 'httpMethod' => 'POST', |
|
| 739 | + 'parameters' => array( |
|
| 740 | + 'calendarId' => array( |
|
| 741 | + 'location' => 'path', |
|
| 742 | + 'type' => 'string', |
|
| 743 | + 'required' => true, |
|
| 744 | + ), |
|
| 745 | + 'orderBy' => array( |
|
| 746 | + 'location' => 'query', |
|
| 747 | + 'type' => 'string', |
|
| 748 | + ), |
|
| 749 | + 'showHiddenInvitations' => array( |
|
| 750 | + 'location' => 'query', |
|
| 751 | + 'type' => 'boolean', |
|
| 752 | + ), |
|
| 753 | + 'syncToken' => array( |
|
| 754 | + 'location' => 'query', |
|
| 755 | + 'type' => 'string', |
|
| 756 | + ), |
|
| 757 | + 'showDeleted' => array( |
|
| 758 | + 'location' => 'query', |
|
| 759 | + 'type' => 'boolean', |
|
| 760 | + ), |
|
| 761 | + 'iCalUID' => array( |
|
| 762 | + 'location' => 'query', |
|
| 763 | + 'type' => 'string', |
|
| 764 | + ), |
|
| 765 | + 'updatedMin' => array( |
|
| 766 | + 'location' => 'query', |
|
| 767 | + 'type' => 'string', |
|
| 768 | + ), |
|
| 769 | + 'singleEvents' => array( |
|
| 770 | + 'location' => 'query', |
|
| 771 | + 'type' => 'boolean', |
|
| 772 | + ), |
|
| 773 | + 'timeMax' => array( |
|
| 774 | + 'location' => 'query', |
|
| 775 | + 'type' => 'string', |
|
| 776 | + ), |
|
| 777 | + 'alwaysIncludeEmail' => array( |
|
| 778 | + 'location' => 'query', |
|
| 779 | + 'type' => 'boolean', |
|
| 780 | + ), |
|
| 781 | + 'maxResults' => array( |
|
| 782 | + 'location' => 'query', |
|
| 783 | + 'type' => 'integer', |
|
| 784 | + ), |
|
| 785 | + 'q' => array( |
|
| 786 | + 'location' => 'query', |
|
| 787 | + 'type' => 'string', |
|
| 788 | + ), |
|
| 789 | + 'pageToken' => array( |
|
| 790 | + 'location' => 'query', |
|
| 791 | + 'type' => 'string', |
|
| 792 | + ), |
|
| 793 | + 'timeMin' => array( |
|
| 794 | + 'location' => 'query', |
|
| 795 | + 'type' => 'string', |
|
| 796 | + ), |
|
| 797 | + 'timeZone' => array( |
|
| 798 | + 'location' => 'query', |
|
| 799 | + 'type' => 'string', |
|
| 800 | + ), |
|
| 801 | + 'privateExtendedProperty' => array( |
|
| 802 | + 'location' => 'query', |
|
| 803 | + 'type' => 'string', |
|
| 804 | + 'repeated' => true, |
|
| 805 | + ), |
|
| 806 | + 'sharedExtendedProperty' => array( |
|
| 807 | + 'location' => 'query', |
|
| 808 | + 'type' => 'string', |
|
| 809 | + 'repeated' => true, |
|
| 810 | + ), |
|
| 811 | + 'maxAttendees' => array( |
|
| 812 | + 'location' => 'query', |
|
| 813 | + 'type' => 'integer', |
|
| 814 | + ), |
|
| 815 | + ), |
|
| 816 | + ), |
|
| 817 | + ) |
|
| 818 | + ) |
|
| 819 | + ); |
|
| 820 | + $this->freebusy = new Google_Service_Calendar_Freebusy_Resource( |
|
| 821 | + $this, |
|
| 822 | + $this->serviceName, |
|
| 823 | + 'freebusy', |
|
| 824 | + array( |
|
| 825 | + 'methods' => array( |
|
| 826 | + 'query' => array( |
|
| 827 | + 'path' => 'freeBusy', |
|
| 828 | + 'httpMethod' => 'POST', |
|
| 829 | + 'parameters' => array(), |
|
| 830 | + ), |
|
| 831 | + ) |
|
| 832 | + ) |
|
| 833 | + ); |
|
| 834 | + $this->settings = new Google_Service_Calendar_Settings_Resource( |
|
| 835 | + $this, |
|
| 836 | + $this->serviceName, |
|
| 837 | + 'settings', |
|
| 838 | + array( |
|
| 839 | + 'methods' => array( |
|
| 840 | + 'get' => array( |
|
| 841 | + 'path' => 'users/me/settings/{setting}', |
|
| 842 | + 'httpMethod' => 'GET', |
|
| 843 | + 'parameters' => array( |
|
| 844 | + 'setting' => array( |
|
| 845 | + 'location' => 'path', |
|
| 846 | + 'type' => 'string', |
|
| 847 | + 'required' => true, |
|
| 848 | + ), |
|
| 849 | + ), |
|
| 850 | + ),'list' => array( |
|
| 851 | + 'path' => 'users/me/settings', |
|
| 852 | + 'httpMethod' => 'GET', |
|
| 853 | + 'parameters' => array( |
|
| 854 | + 'pageToken' => array( |
|
| 855 | + 'location' => 'query', |
|
| 856 | + 'type' => 'string', |
|
| 857 | + ), |
|
| 858 | + 'maxResults' => array( |
|
| 859 | + 'location' => 'query', |
|
| 860 | + 'type' => 'integer', |
|
| 861 | + ), |
|
| 862 | + 'syncToken' => array( |
|
| 863 | + 'location' => 'query', |
|
| 864 | + 'type' => 'string', |
|
| 865 | + ), |
|
| 866 | + ), |
|
| 867 | + ),'watch' => array( |
|
| 868 | + 'path' => 'users/me/settings/watch', |
|
| 869 | + 'httpMethod' => 'POST', |
|
| 870 | + 'parameters' => array( |
|
| 871 | + 'pageToken' => array( |
|
| 872 | + 'location' => 'query', |
|
| 873 | + 'type' => 'string', |
|
| 874 | + ), |
|
| 875 | + 'maxResults' => array( |
|
| 876 | + 'location' => 'query', |
|
| 877 | + 'type' => 'integer', |
|
| 878 | + ), |
|
| 879 | + 'syncToken' => array( |
|
| 880 | + 'location' => 'query', |
|
| 881 | + 'type' => 'string', |
|
| 882 | + ), |
|
| 883 | + ), |
|
| 884 | + ), |
|
| 885 | + ) |
|
| 886 | + ) |
|
| 887 | + ); |
|
| 888 | 888 | } |
| 889 | 889 | } |
| 890 | 890 | |
@@ -909,9 +909,9 @@ discard block |
||
| 909 | 909 | */ |
| 910 | 910 | public function delete($calendarId, $ruleId, $optParams = array()) |
| 911 | 911 | { |
| 912 | - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); |
|
| 913 | - $params = array_merge($params, $optParams); |
|
| 914 | - return $this->call('delete', array($params)); |
|
| 912 | + $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); |
|
| 913 | + $params = array_merge($params, $optParams); |
|
| 914 | + return $this->call('delete', array($params)); |
|
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | /** |
@@ -924,9 +924,9 @@ discard block |
||
| 924 | 924 | */ |
| 925 | 925 | public function get($calendarId, $ruleId, $optParams = array()) |
| 926 | 926 | { |
| 927 | - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); |
|
| 928 | - $params = array_merge($params, $optParams); |
|
| 929 | - return $this->call('get', array($params), "Google_Service_Calendar_AclRule"); |
|
| 927 | + $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId); |
|
| 928 | + $params = array_merge($params, $optParams); |
|
| 929 | + return $this->call('get', array($params), "Google_Service_Calendar_AclRule"); |
|
| 930 | 930 | } |
| 931 | 931 | |
| 932 | 932 | /** |
@@ -939,9 +939,9 @@ discard block |
||
| 939 | 939 | */ |
| 940 | 940 | public function insert($calendarId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) |
| 941 | 941 | { |
| 942 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 943 | - $params = array_merge($params, $optParams); |
|
| 944 | - return $this->call('insert', array($params), "Google_Service_Calendar_AclRule"); |
|
| 942 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 943 | + $params = array_merge($params, $optParams); |
|
| 944 | + return $this->call('insert', array($params), "Google_Service_Calendar_AclRule"); |
|
| 945 | 945 | } |
| 946 | 946 | |
| 947 | 947 | /** |
@@ -971,9 +971,9 @@ discard block |
||
| 971 | 971 | */ |
| 972 | 972 | public function listAcl($calendarId, $optParams = array()) |
| 973 | 973 | { |
| 974 | - $params = array('calendarId' => $calendarId); |
|
| 975 | - $params = array_merge($params, $optParams); |
|
| 976 | - return $this->call('list', array($params), "Google_Service_Calendar_Acl"); |
|
| 974 | + $params = array('calendarId' => $calendarId); |
|
| 975 | + $params = array_merge($params, $optParams); |
|
| 976 | + return $this->call('list', array($params), "Google_Service_Calendar_Acl"); |
|
| 977 | 977 | } |
| 978 | 978 | |
| 979 | 979 | /** |
@@ -988,9 +988,9 @@ discard block |
||
| 988 | 988 | */ |
| 989 | 989 | public function patch($calendarId, $ruleId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) |
| 990 | 990 | { |
| 991 | - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 992 | - $params = array_merge($params, $optParams); |
|
| 993 | - return $this->call('patch', array($params), "Google_Service_Calendar_AclRule"); |
|
| 991 | + $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 992 | + $params = array_merge($params, $optParams); |
|
| 993 | + return $this->call('patch', array($params), "Google_Service_Calendar_AclRule"); |
|
| 994 | 994 | } |
| 995 | 995 | |
| 996 | 996 | /** |
@@ -1004,9 +1004,9 @@ discard block |
||
| 1004 | 1004 | */ |
| 1005 | 1005 | public function update($calendarId, $ruleId, Google_Service_Calendar_AclRule $postBody, $optParams = array()) |
| 1006 | 1006 | { |
| 1007 | - $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 1008 | - $params = array_merge($params, $optParams); |
|
| 1009 | - return $this->call('update', array($params), "Google_Service_Calendar_AclRule"); |
|
| 1007 | + $params = array('calendarId' => $calendarId, 'ruleId' => $ruleId, 'postBody' => $postBody); |
|
| 1008 | + $params = array_merge($params, $optParams); |
|
| 1009 | + return $this->call('update', array($params), "Google_Service_Calendar_AclRule"); |
|
| 1010 | 1010 | } |
| 1011 | 1011 | |
| 1012 | 1012 | /** |
@@ -1037,9 +1037,9 @@ discard block |
||
| 1037 | 1037 | */ |
| 1038 | 1038 | public function watch($calendarId, Google_Service_Calendar_Channel $postBody, $optParams = array()) |
| 1039 | 1039 | { |
| 1040 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1041 | - $params = array_merge($params, $optParams); |
|
| 1042 | - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1040 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1041 | + $params = array_merge($params, $optParams); |
|
| 1042 | + return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1043 | 1043 | } |
| 1044 | 1044 | } |
| 1045 | 1045 | |
@@ -1062,9 +1062,9 @@ discard block |
||
| 1062 | 1062 | */ |
| 1063 | 1063 | public function delete($calendarId, $optParams = array()) |
| 1064 | 1064 | { |
| 1065 | - $params = array('calendarId' => $calendarId); |
|
| 1066 | - $params = array_merge($params, $optParams); |
|
| 1067 | - return $this->call('delete', array($params)); |
|
| 1065 | + $params = array('calendarId' => $calendarId); |
|
| 1066 | + $params = array_merge($params, $optParams); |
|
| 1067 | + return $this->call('delete', array($params)); |
|
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | 1070 | /** |
@@ -1076,9 +1076,9 @@ discard block |
||
| 1076 | 1076 | */ |
| 1077 | 1077 | public function get($calendarId, $optParams = array()) |
| 1078 | 1078 | { |
| 1079 | - $params = array('calendarId' => $calendarId); |
|
| 1080 | - $params = array_merge($params, $optParams); |
|
| 1081 | - return $this->call('get', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1079 | + $params = array('calendarId' => $calendarId); |
|
| 1080 | + $params = array_merge($params, $optParams); |
|
| 1081 | + return $this->call('get', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1082 | 1082 | } |
| 1083 | 1083 | |
| 1084 | 1084 | /** |
@@ -1095,9 +1095,9 @@ discard block |
||
| 1095 | 1095 | */ |
| 1096 | 1096 | public function insert(Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) |
| 1097 | 1097 | { |
| 1098 | - $params = array('postBody' => $postBody); |
|
| 1099 | - $params = array_merge($params, $optParams); |
|
| 1100 | - return $this->call('insert', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1098 | + $params = array('postBody' => $postBody); |
|
| 1099 | + $params = array_merge($params, $optParams); |
|
| 1100 | + return $this->call('insert', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | /** |
@@ -1132,9 +1132,9 @@ discard block |
||
| 1132 | 1132 | */ |
| 1133 | 1133 | public function listCalendarList($optParams = array()) |
| 1134 | 1134 | { |
| 1135 | - $params = array(); |
|
| 1136 | - $params = array_merge($params, $optParams); |
|
| 1137 | - return $this->call('list', array($params), "Google_Service_Calendar_CalendarList"); |
|
| 1135 | + $params = array(); |
|
| 1136 | + $params = array_merge($params, $optParams); |
|
| 1137 | + return $this->call('list', array($params), "Google_Service_Calendar_CalendarList"); |
|
| 1138 | 1138 | } |
| 1139 | 1139 | |
| 1140 | 1140 | /** |
@@ -1153,9 +1153,9 @@ discard block |
||
| 1153 | 1153 | */ |
| 1154 | 1154 | public function patch($calendarId, Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) |
| 1155 | 1155 | { |
| 1156 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1157 | - $params = array_merge($params, $optParams); |
|
| 1158 | - return $this->call('patch', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1156 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1157 | + $params = array_merge($params, $optParams); |
|
| 1158 | + return $this->call('patch', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1159 | 1159 | } |
| 1160 | 1160 | |
| 1161 | 1161 | /** |
@@ -1173,9 +1173,9 @@ discard block |
||
| 1173 | 1173 | */ |
| 1174 | 1174 | public function update($calendarId, Google_Service_Calendar_CalendarListEntry $postBody, $optParams = array()) |
| 1175 | 1175 | { |
| 1176 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1177 | - $params = array_merge($params, $optParams); |
|
| 1178 | - return $this->call('update', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1176 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1177 | + $params = array_merge($params, $optParams); |
|
| 1178 | + return $this->call('update', array($params), "Google_Service_Calendar_CalendarListEntry"); |
|
| 1179 | 1179 | } |
| 1180 | 1180 | |
| 1181 | 1181 | /** |
@@ -1211,9 +1211,9 @@ discard block |
||
| 1211 | 1211 | */ |
| 1212 | 1212 | public function watch(Google_Service_Calendar_Channel $postBody, $optParams = array()) |
| 1213 | 1213 | { |
| 1214 | - $params = array('postBody' => $postBody); |
|
| 1215 | - $params = array_merge($params, $optParams); |
|
| 1216 | - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1214 | + $params = array('postBody' => $postBody); |
|
| 1215 | + $params = array_merge($params, $optParams); |
|
| 1216 | + return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1217 | 1217 | } |
| 1218 | 1218 | } |
| 1219 | 1219 | |
@@ -1237,9 +1237,9 @@ discard block |
||
| 1237 | 1237 | */ |
| 1238 | 1238 | public function clear($calendarId, $optParams = array()) |
| 1239 | 1239 | { |
| 1240 | - $params = array('calendarId' => $calendarId); |
|
| 1241 | - $params = array_merge($params, $optParams); |
|
| 1242 | - return $this->call('clear', array($params)); |
|
| 1240 | + $params = array('calendarId' => $calendarId); |
|
| 1241 | + $params = array_merge($params, $optParams); |
|
| 1242 | + return $this->call('clear', array($params)); |
|
| 1243 | 1243 | } |
| 1244 | 1244 | |
| 1245 | 1245 | /** |
@@ -1251,9 +1251,9 @@ discard block |
||
| 1251 | 1251 | */ |
| 1252 | 1252 | public function delete($calendarId, $optParams = array()) |
| 1253 | 1253 | { |
| 1254 | - $params = array('calendarId' => $calendarId); |
|
| 1255 | - $params = array_merge($params, $optParams); |
|
| 1256 | - return $this->call('delete', array($params)); |
|
| 1254 | + $params = array('calendarId' => $calendarId); |
|
| 1255 | + $params = array_merge($params, $optParams); |
|
| 1256 | + return $this->call('delete', array($params)); |
|
| 1257 | 1257 | } |
| 1258 | 1258 | |
| 1259 | 1259 | /** |
@@ -1265,9 +1265,9 @@ discard block |
||
| 1265 | 1265 | */ |
| 1266 | 1266 | public function get($calendarId, $optParams = array()) |
| 1267 | 1267 | { |
| 1268 | - $params = array('calendarId' => $calendarId); |
|
| 1269 | - $params = array_merge($params, $optParams); |
|
| 1270 | - return $this->call('get', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1268 | + $params = array('calendarId' => $calendarId); |
|
| 1269 | + $params = array_merge($params, $optParams); |
|
| 1270 | + return $this->call('get', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1271 | 1271 | } |
| 1272 | 1272 | |
| 1273 | 1273 | /** |
@@ -1279,9 +1279,9 @@ discard block |
||
| 1279 | 1279 | */ |
| 1280 | 1280 | public function insert(Google_Service_Calendar_Calendar $postBody, $optParams = array()) |
| 1281 | 1281 | { |
| 1282 | - $params = array('postBody' => $postBody); |
|
| 1283 | - $params = array_merge($params, $optParams); |
|
| 1284 | - return $this->call('insert', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1282 | + $params = array('postBody' => $postBody); |
|
| 1283 | + $params = array_merge($params, $optParams); |
|
| 1284 | + return $this->call('insert', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1285 | 1285 | } |
| 1286 | 1286 | |
| 1287 | 1287 | /** |
@@ -1295,9 +1295,9 @@ discard block |
||
| 1295 | 1295 | */ |
| 1296 | 1296 | public function patch($calendarId, Google_Service_Calendar_Calendar $postBody, $optParams = array()) |
| 1297 | 1297 | { |
| 1298 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1299 | - $params = array_merge($params, $optParams); |
|
| 1300 | - return $this->call('patch', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1298 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1299 | + $params = array_merge($params, $optParams); |
|
| 1300 | + return $this->call('patch', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1301 | 1301 | } |
| 1302 | 1302 | |
| 1303 | 1303 | /** |
@@ -1310,9 +1310,9 @@ discard block |
||
| 1310 | 1310 | */ |
| 1311 | 1311 | public function update($calendarId, Google_Service_Calendar_Calendar $postBody, $optParams = array()) |
| 1312 | 1312 | { |
| 1313 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1314 | - $params = array_merge($params, $optParams); |
|
| 1315 | - return $this->call('update', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1313 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1314 | + $params = array_merge($params, $optParams); |
|
| 1315 | + return $this->call('update', array($params), "Google_Service_Calendar_Calendar"); |
|
| 1316 | 1316 | } |
| 1317 | 1317 | } |
| 1318 | 1318 | |
@@ -1335,9 +1335,9 @@ discard block |
||
| 1335 | 1335 | */ |
| 1336 | 1336 | public function stop(Google_Service_Calendar_Channel $postBody, $optParams = array()) |
| 1337 | 1337 | { |
| 1338 | - $params = array('postBody' => $postBody); |
|
| 1339 | - $params = array_merge($params, $optParams); |
|
| 1340 | - return $this->call('stop', array($params)); |
|
| 1338 | + $params = array('postBody' => $postBody); |
|
| 1339 | + $params = array_merge($params, $optParams); |
|
| 1340 | + return $this->call('stop', array($params)); |
|
| 1341 | 1341 | } |
| 1342 | 1342 | } |
| 1343 | 1343 | |
@@ -1360,9 +1360,9 @@ discard block |
||
| 1360 | 1360 | */ |
| 1361 | 1361 | public function get($optParams = array()) |
| 1362 | 1362 | { |
| 1363 | - $params = array(); |
|
| 1364 | - $params = array_merge($params, $optParams); |
|
| 1365 | - return $this->call('get', array($params), "Google_Service_Calendar_Colors"); |
|
| 1363 | + $params = array(); |
|
| 1364 | + $params = array_merge($params, $optParams); |
|
| 1365 | + return $this->call('get', array($params), "Google_Service_Calendar_Colors"); |
|
| 1366 | 1366 | } |
| 1367 | 1367 | } |
| 1368 | 1368 | |
@@ -1389,9 +1389,9 @@ discard block |
||
| 1389 | 1389 | */ |
| 1390 | 1390 | public function delete($calendarId, $eventId, $optParams = array()) |
| 1391 | 1391 | { |
| 1392 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1393 | - $params = array_merge($params, $optParams); |
|
| 1394 | - return $this->call('delete', array($params)); |
|
| 1392 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1393 | + $params = array_merge($params, $optParams); |
|
| 1394 | + return $this->call('delete', array($params)); |
|
| 1395 | 1395 | } |
| 1396 | 1396 | |
| 1397 | 1397 | /** |
@@ -1416,9 +1416,9 @@ discard block |
||
| 1416 | 1416 | */ |
| 1417 | 1417 | public function get($calendarId, $eventId, $optParams = array()) |
| 1418 | 1418 | { |
| 1419 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1420 | - $params = array_merge($params, $optParams); |
|
| 1421 | - return $this->call('get', array($params), "Google_Service_Calendar_Event"); |
|
| 1419 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1420 | + $params = array_merge($params, $optParams); |
|
| 1421 | + return $this->call('get', array($params), "Google_Service_Calendar_Event"); |
|
| 1422 | 1422 | } |
| 1423 | 1423 | |
| 1424 | 1424 | /** |
@@ -1435,9 +1435,9 @@ discard block |
||
| 1435 | 1435 | */ |
| 1436 | 1436 | public function import($calendarId, Google_Service_Calendar_Event $postBody, $optParams = array()) |
| 1437 | 1437 | { |
| 1438 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1439 | - $params = array_merge($params, $optParams); |
|
| 1440 | - return $this->call('import', array($params), "Google_Service_Calendar_Event"); |
|
| 1438 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1439 | + $params = array_merge($params, $optParams); |
|
| 1440 | + return $this->call('import', array($params), "Google_Service_Calendar_Event"); |
|
| 1441 | 1441 | } |
| 1442 | 1442 | |
| 1443 | 1443 | /** |
@@ -1458,9 +1458,9 @@ discard block |
||
| 1458 | 1458 | */ |
| 1459 | 1459 | public function insert($calendarId, Google_Service_Calendar_Event $postBody, $optParams = array()) |
| 1460 | 1460 | { |
| 1461 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1462 | - $params = array_merge($params, $optParams); |
|
| 1463 | - return $this->call('insert', array($params), "Google_Service_Calendar_Event"); |
|
| 1461 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1462 | + $params = array_merge($params, $optParams); |
|
| 1463 | + return $this->call('insert', array($params), "Google_Service_Calendar_Event"); |
|
| 1464 | 1464 | } |
| 1465 | 1465 | |
| 1466 | 1466 | /** |
@@ -1500,9 +1500,9 @@ discard block |
||
| 1500 | 1500 | */ |
| 1501 | 1501 | public function instances($calendarId, $eventId, $optParams = array()) |
| 1502 | 1502 | { |
| 1503 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1504 | - $params = array_merge($params, $optParams); |
|
| 1505 | - return $this->call('instances', array($params), "Google_Service_Calendar_Events"); |
|
| 1503 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId); |
|
| 1504 | + $params = array_merge($params, $optParams); |
|
| 1505 | + return $this->call('instances', array($params), "Google_Service_Calendar_Events"); |
|
| 1506 | 1506 | } |
| 1507 | 1507 | |
| 1508 | 1508 | /** |
@@ -1579,9 +1579,9 @@ discard block |
||
| 1579 | 1579 | */ |
| 1580 | 1580 | public function listEvents($calendarId, $optParams = array()) |
| 1581 | 1581 | { |
| 1582 | - $params = array('calendarId' => $calendarId); |
|
| 1583 | - $params = array_merge($params, $optParams); |
|
| 1584 | - return $this->call('list', array($params), "Google_Service_Calendar_Events"); |
|
| 1582 | + $params = array('calendarId' => $calendarId); |
|
| 1583 | + $params = array_merge($params, $optParams); |
|
| 1584 | + return $this->call('list', array($params), "Google_Service_Calendar_Events"); |
|
| 1585 | 1585 | } |
| 1586 | 1586 | |
| 1587 | 1587 | /** |
@@ -1601,9 +1601,9 @@ discard block |
||
| 1601 | 1601 | */ |
| 1602 | 1602 | public function move($calendarId, $eventId, $destination, $optParams = array()) |
| 1603 | 1603 | { |
| 1604 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'destination' => $destination); |
|
| 1605 | - $params = array_merge($params, $optParams); |
|
| 1606 | - return $this->call('move', array($params), "Google_Service_Calendar_Event"); |
|
| 1604 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'destination' => $destination); |
|
| 1605 | + $params = array_merge($params, $optParams); |
|
| 1606 | + return $this->call('move', array($params), "Google_Service_Calendar_Event"); |
|
| 1607 | 1607 | } |
| 1608 | 1608 | |
| 1609 | 1609 | /** |
@@ -1632,9 +1632,9 @@ discard block |
||
| 1632 | 1632 | */ |
| 1633 | 1633 | public function patch($calendarId, $eventId, Google_Service_Calendar_Event $postBody, $optParams = array()) |
| 1634 | 1634 | { |
| 1635 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); |
|
| 1636 | - $params = array_merge($params, $optParams); |
|
| 1637 | - return $this->call('patch', array($params), "Google_Service_Calendar_Event"); |
|
| 1635 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); |
|
| 1636 | + $params = array_merge($params, $optParams); |
|
| 1637 | + return $this->call('patch', array($params), "Google_Service_Calendar_Event"); |
|
| 1638 | 1638 | } |
| 1639 | 1639 | |
| 1640 | 1640 | /** |
@@ -1650,9 +1650,9 @@ discard block |
||
| 1650 | 1650 | */ |
| 1651 | 1651 | public function quickAdd($calendarId, $text, $optParams = array()) |
| 1652 | 1652 | { |
| 1653 | - $params = array('calendarId' => $calendarId, 'text' => $text); |
|
| 1654 | - $params = array_merge($params, $optParams); |
|
| 1655 | - return $this->call('quickAdd', array($params), "Google_Service_Calendar_Event"); |
|
| 1653 | + $params = array('calendarId' => $calendarId, 'text' => $text); |
|
| 1654 | + $params = array_merge($params, $optParams); |
|
| 1655 | + return $this->call('quickAdd', array($params), "Google_Service_Calendar_Event"); |
|
| 1656 | 1656 | } |
| 1657 | 1657 | |
| 1658 | 1658 | /** |
@@ -1681,9 +1681,9 @@ discard block |
||
| 1681 | 1681 | */ |
| 1682 | 1682 | public function update($calendarId, $eventId, Google_Service_Calendar_Event $postBody, $optParams = array()) |
| 1683 | 1683 | { |
| 1684 | - $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); |
|
| 1685 | - $params = array_merge($params, $optParams); |
|
| 1686 | - return $this->call('update', array($params), "Google_Service_Calendar_Event"); |
|
| 1684 | + $params = array('calendarId' => $calendarId, 'eventId' => $eventId, 'postBody' => $postBody); |
|
| 1685 | + $params = array_merge($params, $optParams); |
|
| 1686 | + return $this->call('update', array($params), "Google_Service_Calendar_Event"); |
|
| 1687 | 1687 | } |
| 1688 | 1688 | |
| 1689 | 1689 | /** |
@@ -1761,9 +1761,9 @@ discard block |
||
| 1761 | 1761 | */ |
| 1762 | 1762 | public function watch($calendarId, Google_Service_Calendar_Channel $postBody, $optParams = array()) |
| 1763 | 1763 | { |
| 1764 | - $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1765 | - $params = array_merge($params, $optParams); |
|
| 1766 | - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1764 | + $params = array('calendarId' => $calendarId, 'postBody' => $postBody); |
|
| 1765 | + $params = array_merge($params, $optParams); |
|
| 1766 | + return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1767 | 1767 | } |
| 1768 | 1768 | } |
| 1769 | 1769 | |
@@ -1787,9 +1787,9 @@ discard block |
||
| 1787 | 1787 | */ |
| 1788 | 1788 | public function query(Google_Service_Calendar_FreeBusyRequest $postBody, $optParams = array()) |
| 1789 | 1789 | { |
| 1790 | - $params = array('postBody' => $postBody); |
|
| 1791 | - $params = array_merge($params, $optParams); |
|
| 1792 | - return $this->call('query', array($params), "Google_Service_Calendar_FreeBusyResponse"); |
|
| 1790 | + $params = array('postBody' => $postBody); |
|
| 1791 | + $params = array_merge($params, $optParams); |
|
| 1792 | + return $this->call('query', array($params), "Google_Service_Calendar_FreeBusyResponse"); |
|
| 1793 | 1793 | } |
| 1794 | 1794 | } |
| 1795 | 1795 | |
@@ -1813,9 +1813,9 @@ discard block |
||
| 1813 | 1813 | */ |
| 1814 | 1814 | public function get($setting, $optParams = array()) |
| 1815 | 1815 | { |
| 1816 | - $params = array('setting' => $setting); |
|
| 1817 | - $params = array_merge($params, $optParams); |
|
| 1818 | - return $this->call('get', array($params), "Google_Service_Calendar_Setting"); |
|
| 1816 | + $params = array('setting' => $setting); |
|
| 1817 | + $params = array_merge($params, $optParams); |
|
| 1818 | + return $this->call('get', array($params), "Google_Service_Calendar_Setting"); |
|
| 1819 | 1819 | } |
| 1820 | 1820 | |
| 1821 | 1821 | /** |
@@ -1839,9 +1839,9 @@ discard block |
||
| 1839 | 1839 | */ |
| 1840 | 1840 | public function listSettings($optParams = array()) |
| 1841 | 1841 | { |
| 1842 | - $params = array(); |
|
| 1843 | - $params = array_merge($params, $optParams); |
|
| 1844 | - return $this->call('list', array($params), "Google_Service_Calendar_Settings"); |
|
| 1842 | + $params = array(); |
|
| 1843 | + $params = array_merge($params, $optParams); |
|
| 1844 | + return $this->call('list', array($params), "Google_Service_Calendar_Settings"); |
|
| 1845 | 1845 | } |
| 1846 | 1846 | |
| 1847 | 1847 | /** |
@@ -1866,9 +1866,9 @@ discard block |
||
| 1866 | 1866 | */ |
| 1867 | 1867 | public function watch(Google_Service_Calendar_Channel $postBody, $optParams = array()) |
| 1868 | 1868 | { |
| 1869 | - $params = array('postBody' => $postBody); |
|
| 1870 | - $params = array_merge($params, $optParams); |
|
| 1871 | - return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1869 | + $params = array('postBody' => $postBody); |
|
| 1870 | + $params = array_merge($params, $optParams); |
|
| 1871 | + return $this->call('watch', array($params), "Google_Service_Calendar_Channel"); |
|
| 1872 | 1872 | } |
| 1873 | 1873 | } |
| 1874 | 1874 | |
@@ -1890,43 +1890,43 @@ discard block |
||
| 1890 | 1890 | |
| 1891 | 1891 | public function setEtag($etag) |
| 1892 | 1892 | { |
| 1893 | - $this->etag = $etag; |
|
| 1893 | + $this->etag = $etag; |
|
| 1894 | 1894 | } |
| 1895 | 1895 | public function getEtag() |
| 1896 | 1896 | { |
| 1897 | - return $this->etag; |
|
| 1897 | + return $this->etag; |
|
| 1898 | 1898 | } |
| 1899 | 1899 | public function setItems($items) |
| 1900 | 1900 | { |
| 1901 | - $this->items = $items; |
|
| 1901 | + $this->items = $items; |
|
| 1902 | 1902 | } |
| 1903 | 1903 | public function getItems() |
| 1904 | 1904 | { |
| 1905 | - return $this->items; |
|
| 1905 | + return $this->items; |
|
| 1906 | 1906 | } |
| 1907 | 1907 | public function setKind($kind) |
| 1908 | 1908 | { |
| 1909 | - $this->kind = $kind; |
|
| 1909 | + $this->kind = $kind; |
|
| 1910 | 1910 | } |
| 1911 | 1911 | public function getKind() |
| 1912 | 1912 | { |
| 1913 | - return $this->kind; |
|
| 1913 | + return $this->kind; |
|
| 1914 | 1914 | } |
| 1915 | 1915 | public function setNextPageToken($nextPageToken) |
| 1916 | 1916 | { |
| 1917 | - $this->nextPageToken = $nextPageToken; |
|
| 1917 | + $this->nextPageToken = $nextPageToken; |
|
| 1918 | 1918 | } |
| 1919 | 1919 | public function getNextPageToken() |
| 1920 | 1920 | { |
| 1921 | - return $this->nextPageToken; |
|
| 1921 | + return $this->nextPageToken; |
|
| 1922 | 1922 | } |
| 1923 | 1923 | public function setNextSyncToken($nextSyncToken) |
| 1924 | 1924 | { |
| 1925 | - $this->nextSyncToken = $nextSyncToken; |
|
| 1925 | + $this->nextSyncToken = $nextSyncToken; |
|
| 1926 | 1926 | } |
| 1927 | 1927 | public function getNextSyncToken() |
| 1928 | 1928 | { |
| 1929 | - return $this->nextSyncToken; |
|
| 1929 | + return $this->nextSyncToken; |
|
| 1930 | 1930 | } |
| 1931 | 1931 | } |
| 1932 | 1932 | |
@@ -1944,43 +1944,43 @@ discard block |
||
| 1944 | 1944 | |
| 1945 | 1945 | public function setEtag($etag) |
| 1946 | 1946 | { |
| 1947 | - $this->etag = $etag; |
|
| 1947 | + $this->etag = $etag; |
|
| 1948 | 1948 | } |
| 1949 | 1949 | public function getEtag() |
| 1950 | 1950 | { |
| 1951 | - return $this->etag; |
|
| 1951 | + return $this->etag; |
|
| 1952 | 1952 | } |
| 1953 | 1953 | public function setId($id) |
| 1954 | 1954 | { |
| 1955 | - $this->id = $id; |
|
| 1955 | + $this->id = $id; |
|
| 1956 | 1956 | } |
| 1957 | 1957 | public function getId() |
| 1958 | 1958 | { |
| 1959 | - return $this->id; |
|
| 1959 | + return $this->id; |
|
| 1960 | 1960 | } |
| 1961 | 1961 | public function setKind($kind) |
| 1962 | 1962 | { |
| 1963 | - $this->kind = $kind; |
|
| 1963 | + $this->kind = $kind; |
|
| 1964 | 1964 | } |
| 1965 | 1965 | public function getKind() |
| 1966 | 1966 | { |
| 1967 | - return $this->kind; |
|
| 1967 | + return $this->kind; |
|
| 1968 | 1968 | } |
| 1969 | 1969 | public function setRole($role) |
| 1970 | 1970 | { |
| 1971 | - $this->role = $role; |
|
| 1971 | + $this->role = $role; |
|
| 1972 | 1972 | } |
| 1973 | 1973 | public function getRole() |
| 1974 | 1974 | { |
| 1975 | - return $this->role; |
|
| 1975 | + return $this->role; |
|
| 1976 | 1976 | } |
| 1977 | 1977 | public function setScope(Google_Service_Calendar_AclRuleScope $scope) |
| 1978 | 1978 | { |
| 1979 | - $this->scope = $scope; |
|
| 1979 | + $this->scope = $scope; |
|
| 1980 | 1980 | } |
| 1981 | 1981 | public function getScope() |
| 1982 | 1982 | { |
| 1983 | - return $this->scope; |
|
| 1983 | + return $this->scope; |
|
| 1984 | 1984 | } |
| 1985 | 1985 | } |
| 1986 | 1986 | |
@@ -1994,19 +1994,19 @@ discard block |
||
| 1994 | 1994 | |
| 1995 | 1995 | public function setType($type) |
| 1996 | 1996 | { |
| 1997 | - $this->type = $type; |
|
| 1997 | + $this->type = $type; |
|
| 1998 | 1998 | } |
| 1999 | 1999 | public function getType() |
| 2000 | 2000 | { |
| 2001 | - return $this->type; |
|
| 2001 | + return $this->type; |
|
| 2002 | 2002 | } |
| 2003 | 2003 | public function setValue($value) |
| 2004 | 2004 | { |
| 2005 | - $this->value = $value; |
|
| 2005 | + $this->value = $value; |
|
| 2006 | 2006 | } |
| 2007 | 2007 | public function getValue() |
| 2008 | 2008 | { |
| 2009 | - return $this->value; |
|
| 2009 | + return $this->value; |
|
| 2010 | 2010 | } |
| 2011 | 2011 | } |
| 2012 | 2012 | |
@@ -2025,59 +2025,59 @@ discard block |
||
| 2025 | 2025 | |
| 2026 | 2026 | public function setDescription($description) |
| 2027 | 2027 | { |
| 2028 | - $this->description = $description; |
|
| 2028 | + $this->description = $description; |
|
| 2029 | 2029 | } |
| 2030 | 2030 | public function getDescription() |
| 2031 | 2031 | { |
| 2032 | - return $this->description; |
|
| 2032 | + return $this->description; |
|
| 2033 | 2033 | } |
| 2034 | 2034 | public function setEtag($etag) |
| 2035 | 2035 | { |
| 2036 | - $this->etag = $etag; |
|
| 2036 | + $this->etag = $etag; |
|
| 2037 | 2037 | } |
| 2038 | 2038 | public function getEtag() |
| 2039 | 2039 | { |
| 2040 | - return $this->etag; |
|
| 2040 | + return $this->etag; |
|
| 2041 | 2041 | } |
| 2042 | 2042 | public function setId($id) |
| 2043 | 2043 | { |
| 2044 | - $this->id = $id; |
|
| 2044 | + $this->id = $id; |
|
| 2045 | 2045 | } |
| 2046 | 2046 | public function getId() |
| 2047 | 2047 | { |
| 2048 | - return $this->id; |
|
| 2048 | + return $this->id; |
|
| 2049 | 2049 | } |
| 2050 | 2050 | public function setKind($kind) |
| 2051 | 2051 | { |
| 2052 | - $this->kind = $kind; |
|
| 2052 | + $this->kind = $kind; |
|
| 2053 | 2053 | } |
| 2054 | 2054 | public function getKind() |
| 2055 | 2055 | { |
| 2056 | - return $this->kind; |
|
| 2056 | + return $this->kind; |
|
| 2057 | 2057 | } |
| 2058 | 2058 | public function setLocation($location) |
| 2059 | 2059 | { |
| 2060 | - $this->location = $location; |
|
| 2060 | + $this->location = $location; |
|
| 2061 | 2061 | } |
| 2062 | 2062 | public function getLocation() |
| 2063 | 2063 | { |
| 2064 | - return $this->location; |
|
| 2064 | + return $this->location; |
|
| 2065 | 2065 | } |
| 2066 | 2066 | public function setSummary($summary) |
| 2067 | 2067 | { |
| 2068 | - $this->summary = $summary; |
|
| 2068 | + $this->summary = $summary; |
|
| 2069 | 2069 | } |
| 2070 | 2070 | public function getSummary() |
| 2071 | 2071 | { |
| 2072 | - return $this->summary; |
|
| 2072 | + return $this->summary; |
|
| 2073 | 2073 | } |
| 2074 | 2074 | public function setTimeZone($timeZone) |
| 2075 | 2075 | { |
| 2076 | - $this->timeZone = $timeZone; |
|
| 2076 | + $this->timeZone = $timeZone; |
|
| 2077 | 2077 | } |
| 2078 | 2078 | public function getTimeZone() |
| 2079 | 2079 | { |
| 2080 | - return $this->timeZone; |
|
| 2080 | + return $this->timeZone; |
|
| 2081 | 2081 | } |
| 2082 | 2082 | } |
| 2083 | 2083 | |
@@ -2096,43 +2096,43 @@ discard block |
||
| 2096 | 2096 | |
| 2097 | 2097 | public function setEtag($etag) |
| 2098 | 2098 | { |
| 2099 | - $this->etag = $etag; |
|
| 2099 | + $this->etag = $etag; |
|
| 2100 | 2100 | } |
| 2101 | 2101 | public function getEtag() |
| 2102 | 2102 | { |
| 2103 | - return $this->etag; |
|
| 2103 | + return $this->etag; |
|
| 2104 | 2104 | } |
| 2105 | 2105 | public function setItems($items) |
| 2106 | 2106 | { |
| 2107 | - $this->items = $items; |
|
| 2107 | + $this->items = $items; |
|
| 2108 | 2108 | } |
| 2109 | 2109 | public function getItems() |
| 2110 | 2110 | { |
| 2111 | - return $this->items; |
|
| 2111 | + return $this->items; |
|
| 2112 | 2112 | } |
| 2113 | 2113 | public function setKind($kind) |
| 2114 | 2114 | { |
| 2115 | - $this->kind = $kind; |
|
| 2115 | + $this->kind = $kind; |
|
| 2116 | 2116 | } |
| 2117 | 2117 | public function getKind() |
| 2118 | 2118 | { |
| 2119 | - return $this->kind; |
|
| 2119 | + return $this->kind; |
|
| 2120 | 2120 | } |
| 2121 | 2121 | public function setNextPageToken($nextPageToken) |
| 2122 | 2122 | { |
| 2123 | - $this->nextPageToken = $nextPageToken; |
|
| 2123 | + $this->nextPageToken = $nextPageToken; |
|
| 2124 | 2124 | } |
| 2125 | 2125 | public function getNextPageToken() |
| 2126 | 2126 | { |
| 2127 | - return $this->nextPageToken; |
|
| 2127 | + return $this->nextPageToken; |
|
| 2128 | 2128 | } |
| 2129 | 2129 | public function setNextSyncToken($nextSyncToken) |
| 2130 | 2130 | { |
| 2131 | - $this->nextSyncToken = $nextSyncToken; |
|
| 2131 | + $this->nextSyncToken = $nextSyncToken; |
|
| 2132 | 2132 | } |
| 2133 | 2133 | public function getNextSyncToken() |
| 2134 | 2134 | { |
| 2135 | - return $this->nextSyncToken; |
|
| 2135 | + return $this->nextSyncToken; |
|
| 2136 | 2136 | } |
| 2137 | 2137 | } |
| 2138 | 2138 | |
@@ -2165,147 +2165,147 @@ discard block |
||
| 2165 | 2165 | |
| 2166 | 2166 | public function setAccessRole($accessRole) |
| 2167 | 2167 | { |
| 2168 | - $this->accessRole = $accessRole; |
|
| 2168 | + $this->accessRole = $accessRole; |
|
| 2169 | 2169 | } |
| 2170 | 2170 | public function getAccessRole() |
| 2171 | 2171 | { |
| 2172 | - return $this->accessRole; |
|
| 2172 | + return $this->accessRole; |
|
| 2173 | 2173 | } |
| 2174 | 2174 | public function setBackgroundColor($backgroundColor) |
| 2175 | 2175 | { |
| 2176 | - $this->backgroundColor = $backgroundColor; |
|
| 2176 | + $this->backgroundColor = $backgroundColor; |
|
| 2177 | 2177 | } |
| 2178 | 2178 | public function getBackgroundColor() |
| 2179 | 2179 | { |
| 2180 | - return $this->backgroundColor; |
|
| 2180 | + return $this->backgroundColor; |
|
| 2181 | 2181 | } |
| 2182 | 2182 | public function setColorId($colorId) |
| 2183 | 2183 | { |
| 2184 | - $this->colorId = $colorId; |
|
| 2184 | + $this->colorId = $colorId; |
|
| 2185 | 2185 | } |
| 2186 | 2186 | public function getColorId() |
| 2187 | 2187 | { |
| 2188 | - return $this->colorId; |
|
| 2188 | + return $this->colorId; |
|
| 2189 | 2189 | } |
| 2190 | 2190 | public function setDefaultReminders($defaultReminders) |
| 2191 | 2191 | { |
| 2192 | - $this->defaultReminders = $defaultReminders; |
|
| 2192 | + $this->defaultReminders = $defaultReminders; |
|
| 2193 | 2193 | } |
| 2194 | 2194 | public function getDefaultReminders() |
| 2195 | 2195 | { |
| 2196 | - return $this->defaultReminders; |
|
| 2196 | + return $this->defaultReminders; |
|
| 2197 | 2197 | } |
| 2198 | 2198 | public function setDeleted($deleted) |
| 2199 | 2199 | { |
| 2200 | - $this->deleted = $deleted; |
|
| 2200 | + $this->deleted = $deleted; |
|
| 2201 | 2201 | } |
| 2202 | 2202 | public function getDeleted() |
| 2203 | 2203 | { |
| 2204 | - return $this->deleted; |
|
| 2204 | + return $this->deleted; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | public function setDescription($description) |
| 2207 | 2207 | { |
| 2208 | - $this->description = $description; |
|
| 2208 | + $this->description = $description; |
|
| 2209 | 2209 | } |
| 2210 | 2210 | public function getDescription() |
| 2211 | 2211 | { |
| 2212 | - return $this->description; |
|
| 2212 | + return $this->description; |
|
| 2213 | 2213 | } |
| 2214 | 2214 | public function setEtag($etag) |
| 2215 | 2215 | { |
| 2216 | - $this->etag = $etag; |
|
| 2216 | + $this->etag = $etag; |
|
| 2217 | 2217 | } |
| 2218 | 2218 | public function getEtag() |
| 2219 | 2219 | { |
| 2220 | - return $this->etag; |
|
| 2220 | + return $this->etag; |
|
| 2221 | 2221 | } |
| 2222 | 2222 | public function setForegroundColor($foregroundColor) |
| 2223 | 2223 | { |
| 2224 | - $this->foregroundColor = $foregroundColor; |
|
| 2224 | + $this->foregroundColor = $foregroundColor; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | public function getForegroundColor() |
| 2227 | 2227 | { |
| 2228 | - return $this->foregroundColor; |
|
| 2228 | + return $this->foregroundColor; |
|
| 2229 | 2229 | } |
| 2230 | 2230 | public function setHidden($hidden) |
| 2231 | 2231 | { |
| 2232 | - $this->hidden = $hidden; |
|
| 2232 | + $this->hidden = $hidden; |
|
| 2233 | 2233 | } |
| 2234 | 2234 | public function getHidden() |
| 2235 | 2235 | { |
| 2236 | - return $this->hidden; |
|
| 2236 | + return $this->hidden; |
|
| 2237 | 2237 | } |
| 2238 | 2238 | public function setId($id) |
| 2239 | 2239 | { |
| 2240 | - $this->id = $id; |
|
| 2240 | + $this->id = $id; |
|
| 2241 | 2241 | } |
| 2242 | 2242 | public function getId() |
| 2243 | 2243 | { |
| 2244 | - return $this->id; |
|
| 2244 | + return $this->id; |
|
| 2245 | 2245 | } |
| 2246 | 2246 | public function setKind($kind) |
| 2247 | 2247 | { |
| 2248 | - $this->kind = $kind; |
|
| 2248 | + $this->kind = $kind; |
|
| 2249 | 2249 | } |
| 2250 | 2250 | public function getKind() |
| 2251 | 2251 | { |
| 2252 | - return $this->kind; |
|
| 2252 | + return $this->kind; |
|
| 2253 | 2253 | } |
| 2254 | 2254 | public function setLocation($location) |
| 2255 | 2255 | { |
| 2256 | - $this->location = $location; |
|
| 2256 | + $this->location = $location; |
|
| 2257 | 2257 | } |
| 2258 | 2258 | public function getLocation() |
| 2259 | 2259 | { |
| 2260 | - return $this->location; |
|
| 2260 | + return $this->location; |
|
| 2261 | 2261 | } |
| 2262 | 2262 | public function setNotificationSettings(Google_Service_Calendar_CalendarListEntryNotificationSettings $notificationSettings) |
| 2263 | 2263 | { |
| 2264 | - $this->notificationSettings = $notificationSettings; |
|
| 2264 | + $this->notificationSettings = $notificationSettings; |
|
| 2265 | 2265 | } |
| 2266 | 2266 | public function getNotificationSettings() |
| 2267 | 2267 | { |
| 2268 | - return $this->notificationSettings; |
|
| 2268 | + return $this->notificationSettings; |
|
| 2269 | 2269 | } |
| 2270 | 2270 | public function setPrimary($primary) |
| 2271 | 2271 | { |
| 2272 | - $this->primary = $primary; |
|
| 2272 | + $this->primary = $primary; |
|
| 2273 | 2273 | } |
| 2274 | 2274 | public function getPrimary() |
| 2275 | 2275 | { |
| 2276 | - return $this->primary; |
|
| 2276 | + return $this->primary; |
|
| 2277 | 2277 | } |
| 2278 | 2278 | public function setSelected($selected) |
| 2279 | 2279 | { |
| 2280 | - $this->selected = $selected; |
|
| 2280 | + $this->selected = $selected; |
|
| 2281 | 2281 | } |
| 2282 | 2282 | public function getSelected() |
| 2283 | 2283 | { |
| 2284 | - return $this->selected; |
|
| 2284 | + return $this->selected; |
|
| 2285 | 2285 | } |
| 2286 | 2286 | public function setSummary($summary) |
| 2287 | 2287 | { |
| 2288 | - $this->summary = $summary; |
|
| 2288 | + $this->summary = $summary; |
|
| 2289 | 2289 | } |
| 2290 | 2290 | public function getSummary() |
| 2291 | 2291 | { |
| 2292 | - return $this->summary; |
|
| 2292 | + return $this->summary; |
|
| 2293 | 2293 | } |
| 2294 | 2294 | public function setSummaryOverride($summaryOverride) |
| 2295 | 2295 | { |
| 2296 | - $this->summaryOverride = $summaryOverride; |
|
| 2296 | + $this->summaryOverride = $summaryOverride; |
|
| 2297 | 2297 | } |
| 2298 | 2298 | public function getSummaryOverride() |
| 2299 | 2299 | { |
| 2300 | - return $this->summaryOverride; |
|
| 2300 | + return $this->summaryOverride; |
|
| 2301 | 2301 | } |
| 2302 | 2302 | public function setTimeZone($timeZone) |
| 2303 | 2303 | { |
| 2304 | - $this->timeZone = $timeZone; |
|
| 2304 | + $this->timeZone = $timeZone; |
|
| 2305 | 2305 | } |
| 2306 | 2306 | public function getTimeZone() |
| 2307 | 2307 | { |
| 2308 | - return $this->timeZone; |
|
| 2308 | + return $this->timeZone; |
|
| 2309 | 2309 | } |
| 2310 | 2310 | } |
| 2311 | 2311 | |
@@ -2320,11 +2320,11 @@ discard block |
||
| 2320 | 2320 | |
| 2321 | 2321 | public function setNotifications($notifications) |
| 2322 | 2322 | { |
| 2323 | - $this->notifications = $notifications; |
|
| 2323 | + $this->notifications = $notifications; |
|
| 2324 | 2324 | } |
| 2325 | 2325 | public function getNotifications() |
| 2326 | 2326 | { |
| 2327 | - return $this->notifications; |
|
| 2327 | + return $this->notifications; |
|
| 2328 | 2328 | } |
| 2329 | 2329 | } |
| 2330 | 2330 | |
@@ -2338,19 +2338,19 @@ discard block |
||
| 2338 | 2338 | |
| 2339 | 2339 | public function setMethod($method) |
| 2340 | 2340 | { |
| 2341 | - $this->method = $method; |
|
| 2341 | + $this->method = $method; |
|
| 2342 | 2342 | } |
| 2343 | 2343 | public function getMethod() |
| 2344 | 2344 | { |
| 2345 | - return $this->method; |
|
| 2345 | + return $this->method; |
|
| 2346 | 2346 | } |
| 2347 | 2347 | public function setType($type) |
| 2348 | 2348 | { |
| 2349 | - $this->type = $type; |
|
| 2349 | + $this->type = $type; |
|
| 2350 | 2350 | } |
| 2351 | 2351 | public function getType() |
| 2352 | 2352 | { |
| 2353 | - return $this->type; |
|
| 2353 | + return $this->type; |
|
| 2354 | 2354 | } |
| 2355 | 2355 | } |
| 2356 | 2356 | |
@@ -2372,83 +2372,83 @@ discard block |
||
| 2372 | 2372 | |
| 2373 | 2373 | public function setAddress($address) |
| 2374 | 2374 | { |
| 2375 | - $this->address = $address; |
|
| 2375 | + $this->address = $address; |
|
| 2376 | 2376 | } |
| 2377 | 2377 | public function getAddress() |
| 2378 | 2378 | { |
| 2379 | - return $this->address; |
|
| 2379 | + return $this->address; |
|
| 2380 | 2380 | } |
| 2381 | 2381 | public function setExpiration($expiration) |
| 2382 | 2382 | { |
| 2383 | - $this->expiration = $expiration; |
|
| 2383 | + $this->expiration = $expiration; |
|
| 2384 | 2384 | } |
| 2385 | 2385 | public function getExpiration() |
| 2386 | 2386 | { |
| 2387 | - return $this->expiration; |
|
| 2387 | + return $this->expiration; |
|
| 2388 | 2388 | } |
| 2389 | 2389 | public function setId($id) |
| 2390 | 2390 | { |
| 2391 | - $this->id = $id; |
|
| 2391 | + $this->id = $id; |
|
| 2392 | 2392 | } |
| 2393 | 2393 | public function getId() |
| 2394 | 2394 | { |
| 2395 | - return $this->id; |
|
| 2395 | + return $this->id; |
|
| 2396 | 2396 | } |
| 2397 | 2397 | public function setKind($kind) |
| 2398 | 2398 | { |
| 2399 | - $this->kind = $kind; |
|
| 2399 | + $this->kind = $kind; |
|
| 2400 | 2400 | } |
| 2401 | 2401 | public function getKind() |
| 2402 | 2402 | { |
| 2403 | - return $this->kind; |
|
| 2403 | + return $this->kind; |
|
| 2404 | 2404 | } |
| 2405 | 2405 | public function setParams($params) |
| 2406 | 2406 | { |
| 2407 | - $this->params = $params; |
|
| 2407 | + $this->params = $params; |
|
| 2408 | 2408 | } |
| 2409 | 2409 | public function getParams() |
| 2410 | 2410 | { |
| 2411 | - return $this->params; |
|
| 2411 | + return $this->params; |
|
| 2412 | 2412 | } |
| 2413 | 2413 | public function setPayload($payload) |
| 2414 | 2414 | { |
| 2415 | - $this->payload = $payload; |
|
| 2415 | + $this->payload = $payload; |
|
| 2416 | 2416 | } |
| 2417 | 2417 | public function getPayload() |
| 2418 | 2418 | { |
| 2419 | - return $this->payload; |
|
| 2419 | + return $this->payload; |
|
| 2420 | 2420 | } |
| 2421 | 2421 | public function setResourceId($resourceId) |
| 2422 | 2422 | { |
| 2423 | - $this->resourceId = $resourceId; |
|
| 2423 | + $this->resourceId = $resourceId; |
|
| 2424 | 2424 | } |
| 2425 | 2425 | public function getResourceId() |
| 2426 | 2426 | { |
| 2427 | - return $this->resourceId; |
|
| 2427 | + return $this->resourceId; |
|
| 2428 | 2428 | } |
| 2429 | 2429 | public function setResourceUri($resourceUri) |
| 2430 | 2430 | { |
| 2431 | - $this->resourceUri = $resourceUri; |
|
| 2431 | + $this->resourceUri = $resourceUri; |
|
| 2432 | 2432 | } |
| 2433 | 2433 | public function getResourceUri() |
| 2434 | 2434 | { |
| 2435 | - return $this->resourceUri; |
|
| 2435 | + return $this->resourceUri; |
|
| 2436 | 2436 | } |
| 2437 | 2437 | public function setToken($token) |
| 2438 | 2438 | { |
| 2439 | - $this->token = $token; |
|
| 2439 | + $this->token = $token; |
|
| 2440 | 2440 | } |
| 2441 | 2441 | public function getToken() |
| 2442 | 2442 | { |
| 2443 | - return $this->token; |
|
| 2443 | + return $this->token; |
|
| 2444 | 2444 | } |
| 2445 | 2445 | public function setType($type) |
| 2446 | 2446 | { |
| 2447 | - $this->type = $type; |
|
| 2447 | + $this->type = $type; |
|
| 2448 | 2448 | } |
| 2449 | 2449 | public function getType() |
| 2450 | 2450 | { |
| 2451 | - return $this->type; |
|
| 2451 | + return $this->type; |
|
| 2452 | 2452 | } |
| 2453 | 2453 | } |
| 2454 | 2454 | |
@@ -2466,19 +2466,19 @@ discard block |
||
| 2466 | 2466 | |
| 2467 | 2467 | public function setBackground($background) |
| 2468 | 2468 | { |
| 2469 | - $this->background = $background; |
|
| 2469 | + $this->background = $background; |
|
| 2470 | 2470 | } |
| 2471 | 2471 | public function getBackground() |
| 2472 | 2472 | { |
| 2473 | - return $this->background; |
|
| 2473 | + return $this->background; |
|
| 2474 | 2474 | } |
| 2475 | 2475 | public function setForeground($foreground) |
| 2476 | 2476 | { |
| 2477 | - $this->foreground = $foreground; |
|
| 2477 | + $this->foreground = $foreground; |
|
| 2478 | 2478 | } |
| 2479 | 2479 | public function getForeground() |
| 2480 | 2480 | { |
| 2481 | - return $this->foreground; |
|
| 2481 | + return $this->foreground; |
|
| 2482 | 2482 | } |
| 2483 | 2483 | } |
| 2484 | 2484 | |
@@ -2496,35 +2496,35 @@ discard block |
||
| 2496 | 2496 | |
| 2497 | 2497 | public function setCalendar($calendar) |
| 2498 | 2498 | { |
| 2499 | - $this->calendar = $calendar; |
|
| 2499 | + $this->calendar = $calendar; |
|
| 2500 | 2500 | } |
| 2501 | 2501 | public function getCalendar() |
| 2502 | 2502 | { |
| 2503 | - return $this->calendar; |
|
| 2503 | + return $this->calendar; |
|
| 2504 | 2504 | } |
| 2505 | 2505 | public function setEvent($event) |
| 2506 | 2506 | { |
| 2507 | - $this->event = $event; |
|
| 2507 | + $this->event = $event; |
|
| 2508 | 2508 | } |
| 2509 | 2509 | public function getEvent() |
| 2510 | 2510 | { |
| 2511 | - return $this->event; |
|
| 2511 | + return $this->event; |
|
| 2512 | 2512 | } |
| 2513 | 2513 | public function setKind($kind) |
| 2514 | 2514 | { |
| 2515 | - $this->kind = $kind; |
|
| 2515 | + $this->kind = $kind; |
|
| 2516 | 2516 | } |
| 2517 | 2517 | public function getKind() |
| 2518 | 2518 | { |
| 2519 | - return $this->kind; |
|
| 2519 | + return $this->kind; |
|
| 2520 | 2520 | } |
| 2521 | 2521 | public function setUpdated($updated) |
| 2522 | 2522 | { |
| 2523 | - $this->updated = $updated; |
|
| 2523 | + $this->updated = $updated; |
|
| 2524 | 2524 | } |
| 2525 | 2525 | public function getUpdated() |
| 2526 | 2526 | { |
| 2527 | - return $this->updated; |
|
| 2527 | + return $this->updated; |
|
| 2528 | 2528 | } |
| 2529 | 2529 | } |
| 2530 | 2530 | |
@@ -2546,19 +2546,19 @@ discard block |
||
| 2546 | 2546 | |
| 2547 | 2547 | public function setDomain($domain) |
| 2548 | 2548 | { |
| 2549 | - $this->domain = $domain; |
|
| 2549 | + $this->domain = $domain; |
|
| 2550 | 2550 | } |
| 2551 | 2551 | public function getDomain() |
| 2552 | 2552 | { |
| 2553 | - return $this->domain; |
|
| 2553 | + return $this->domain; |
|
| 2554 | 2554 | } |
| 2555 | 2555 | public function setReason($reason) |
| 2556 | 2556 | { |
| 2557 | - $this->reason = $reason; |
|
| 2557 | + $this->reason = $reason; |
|
| 2558 | 2558 | } |
| 2559 | 2559 | public function getReason() |
| 2560 | 2560 | { |
| 2561 | - return $this->reason; |
|
| 2561 | + return $this->reason; |
|
| 2562 | 2562 | } |
| 2563 | 2563 | } |
| 2564 | 2564 | |
@@ -2619,299 +2619,299 @@ discard block |
||
| 2619 | 2619 | |
| 2620 | 2620 | public function setAnyoneCanAddSelf($anyoneCanAddSelf) |
| 2621 | 2621 | { |
| 2622 | - $this->anyoneCanAddSelf = $anyoneCanAddSelf; |
|
| 2622 | + $this->anyoneCanAddSelf = $anyoneCanAddSelf; |
|
| 2623 | 2623 | } |
| 2624 | 2624 | public function getAnyoneCanAddSelf() |
| 2625 | 2625 | { |
| 2626 | - return $this->anyoneCanAddSelf; |
|
| 2626 | + return $this->anyoneCanAddSelf; |
|
| 2627 | 2627 | } |
| 2628 | 2628 | public function setAttachments($attachments) |
| 2629 | 2629 | { |
| 2630 | - $this->attachments = $attachments; |
|
| 2630 | + $this->attachments = $attachments; |
|
| 2631 | 2631 | } |
| 2632 | 2632 | public function getAttachments() |
| 2633 | 2633 | { |
| 2634 | - return $this->attachments; |
|
| 2634 | + return $this->attachments; |
|
| 2635 | 2635 | } |
| 2636 | 2636 | public function setAttendees($attendees) |
| 2637 | 2637 | { |
| 2638 | - $this->attendees = $attendees; |
|
| 2638 | + $this->attendees = $attendees; |
|
| 2639 | 2639 | } |
| 2640 | 2640 | public function getAttendees() |
| 2641 | 2641 | { |
| 2642 | - return $this->attendees; |
|
| 2642 | + return $this->attendees; |
|
| 2643 | 2643 | } |
| 2644 | 2644 | public function setAttendeesOmitted($attendeesOmitted) |
| 2645 | 2645 | { |
| 2646 | - $this->attendeesOmitted = $attendeesOmitted; |
|
| 2646 | + $this->attendeesOmitted = $attendeesOmitted; |
|
| 2647 | 2647 | } |
| 2648 | 2648 | public function getAttendeesOmitted() |
| 2649 | 2649 | { |
| 2650 | - return $this->attendeesOmitted; |
|
| 2650 | + return $this->attendeesOmitted; |
|
| 2651 | 2651 | } |
| 2652 | 2652 | public function setColorId($colorId) |
| 2653 | 2653 | { |
| 2654 | - $this->colorId = $colorId; |
|
| 2654 | + $this->colorId = $colorId; |
|
| 2655 | 2655 | } |
| 2656 | 2656 | public function getColorId() |
| 2657 | 2657 | { |
| 2658 | - return $this->colorId; |
|
| 2658 | + return $this->colorId; |
|
| 2659 | 2659 | } |
| 2660 | 2660 | public function setCreated($created) |
| 2661 | 2661 | { |
| 2662 | - $this->created = $created; |
|
| 2662 | + $this->created = $created; |
|
| 2663 | 2663 | } |
| 2664 | 2664 | public function getCreated() |
| 2665 | 2665 | { |
| 2666 | - return $this->created; |
|
| 2666 | + return $this->created; |
|
| 2667 | 2667 | } |
| 2668 | 2668 | public function setCreator(Google_Service_Calendar_EventCreator $creator) |
| 2669 | 2669 | { |
| 2670 | - $this->creator = $creator; |
|
| 2670 | + $this->creator = $creator; |
|
| 2671 | 2671 | } |
| 2672 | 2672 | public function getCreator() |
| 2673 | 2673 | { |
| 2674 | - return $this->creator; |
|
| 2674 | + return $this->creator; |
|
| 2675 | 2675 | } |
| 2676 | 2676 | public function setDescription($description) |
| 2677 | 2677 | { |
| 2678 | - $this->description = $description; |
|
| 2678 | + $this->description = $description; |
|
| 2679 | 2679 | } |
| 2680 | 2680 | public function getDescription() |
| 2681 | 2681 | { |
| 2682 | - return $this->description; |
|
| 2682 | + return $this->description; |
|
| 2683 | 2683 | } |
| 2684 | 2684 | public function setEnd(Google_Service_Calendar_EventDateTime $end) |
| 2685 | 2685 | { |
| 2686 | - $this->end = $end; |
|
| 2686 | + $this->end = $end; |
|
| 2687 | 2687 | } |
| 2688 | 2688 | public function getEnd() |
| 2689 | 2689 | { |
| 2690 | - return $this->end; |
|
| 2690 | + return $this->end; |
|
| 2691 | 2691 | } |
| 2692 | 2692 | public function setEndTimeUnspecified($endTimeUnspecified) |
| 2693 | 2693 | { |
| 2694 | - $this->endTimeUnspecified = $endTimeUnspecified; |
|
| 2694 | + $this->endTimeUnspecified = $endTimeUnspecified; |
|
| 2695 | 2695 | } |
| 2696 | 2696 | public function getEndTimeUnspecified() |
| 2697 | 2697 | { |
| 2698 | - return $this->endTimeUnspecified; |
|
| 2698 | + return $this->endTimeUnspecified; |
|
| 2699 | 2699 | } |
| 2700 | 2700 | public function setEtag($etag) |
| 2701 | 2701 | { |
| 2702 | - $this->etag = $etag; |
|
| 2702 | + $this->etag = $etag; |
|
| 2703 | 2703 | } |
| 2704 | 2704 | public function getEtag() |
| 2705 | 2705 | { |
| 2706 | - return $this->etag; |
|
| 2706 | + return $this->etag; |
|
| 2707 | 2707 | } |
| 2708 | 2708 | public function setExtendedProperties(Google_Service_Calendar_EventExtendedProperties $extendedProperties) |
| 2709 | 2709 | { |
| 2710 | - $this->extendedProperties = $extendedProperties; |
|
| 2710 | + $this->extendedProperties = $extendedProperties; |
|
| 2711 | 2711 | } |
| 2712 | 2712 | public function getExtendedProperties() |
| 2713 | 2713 | { |
| 2714 | - return $this->extendedProperties; |
|
| 2714 | + return $this->extendedProperties; |
|
| 2715 | 2715 | } |
| 2716 | 2716 | public function setGadget(Google_Service_Calendar_EventGadget $gadget) |
| 2717 | 2717 | { |
| 2718 | - $this->gadget = $gadget; |
|
| 2718 | + $this->gadget = $gadget; |
|
| 2719 | 2719 | } |
| 2720 | 2720 | public function getGadget() |
| 2721 | 2721 | { |
| 2722 | - return $this->gadget; |
|
| 2722 | + return $this->gadget; |
|
| 2723 | 2723 | } |
| 2724 | 2724 | public function setGuestsCanInviteOthers($guestsCanInviteOthers) |
| 2725 | 2725 | { |
| 2726 | - $this->guestsCanInviteOthers = $guestsCanInviteOthers; |
|
| 2726 | + $this->guestsCanInviteOthers = $guestsCanInviteOthers; |
|
| 2727 | 2727 | } |
| 2728 | 2728 | public function getGuestsCanInviteOthers() |
| 2729 | 2729 | { |
| 2730 | - return $this->guestsCanInviteOthers; |
|
| 2730 | + return $this->guestsCanInviteOthers; |
|
| 2731 | 2731 | } |
| 2732 | 2732 | public function setGuestsCanModify($guestsCanModify) |
| 2733 | 2733 | { |
| 2734 | - $this->guestsCanModify = $guestsCanModify; |
|
| 2734 | + $this->guestsCanModify = $guestsCanModify; |
|
| 2735 | 2735 | } |
| 2736 | 2736 | public function getGuestsCanModify() |
| 2737 | 2737 | { |
| 2738 | - return $this->guestsCanModify; |
|
| 2738 | + return $this->guestsCanModify; |
|
| 2739 | 2739 | } |
| 2740 | 2740 | public function setGuestsCanSeeOtherGuests($guestsCanSeeOtherGuests) |
| 2741 | 2741 | { |
| 2742 | - $this->guestsCanSeeOtherGuests = $guestsCanSeeOtherGuests; |
|
| 2742 | + $this->guestsCanSeeOtherGuests = $guestsCanSeeOtherGuests; |
|
| 2743 | 2743 | } |
| 2744 | 2744 | public function getGuestsCanSeeOtherGuests() |
| 2745 | 2745 | { |
| 2746 | - return $this->guestsCanSeeOtherGuests; |
|
| 2746 | + return $this->guestsCanSeeOtherGuests; |
|
| 2747 | 2747 | } |
| 2748 | 2748 | public function setHangoutLink($hangoutLink) |
| 2749 | 2749 | { |
| 2750 | - $this->hangoutLink = $hangoutLink; |
|
| 2750 | + $this->hangoutLink = $hangoutLink; |
|
| 2751 | 2751 | } |
| 2752 | 2752 | public function getHangoutLink() |
| 2753 | 2753 | { |
| 2754 | - return $this->hangoutLink; |
|
| 2754 | + return $this->hangoutLink; |
|
| 2755 | 2755 | } |
| 2756 | 2756 | public function setHtmlLink($htmlLink) |
| 2757 | 2757 | { |
| 2758 | - $this->htmlLink = $htmlLink; |
|
| 2758 | + $this->htmlLink = $htmlLink; |
|
| 2759 | 2759 | } |
| 2760 | 2760 | public function getHtmlLink() |
| 2761 | 2761 | { |
| 2762 | - return $this->htmlLink; |
|
| 2762 | + return $this->htmlLink; |
|
| 2763 | 2763 | } |
| 2764 | 2764 | public function setICalUID($iCalUID) |
| 2765 | 2765 | { |
| 2766 | - $this->iCalUID = $iCalUID; |
|
| 2766 | + $this->iCalUID = $iCalUID; |
|
| 2767 | 2767 | } |
| 2768 | 2768 | public function getICalUID() |
| 2769 | 2769 | { |
| 2770 | - return $this->iCalUID; |
|
| 2770 | + return $this->iCalUID; |
|
| 2771 | 2771 | } |
| 2772 | 2772 | public function setId($id) |
| 2773 | 2773 | { |
| 2774 | - $this->id = $id; |
|
| 2774 | + $this->id = $id; |
|
| 2775 | 2775 | } |
| 2776 | 2776 | public function getId() |
| 2777 | 2777 | { |
| 2778 | - return $this->id; |
|
| 2778 | + return $this->id; |
|
| 2779 | 2779 | } |
| 2780 | 2780 | public function setKind($kind) |
| 2781 | 2781 | { |
| 2782 | - $this->kind = $kind; |
|
| 2782 | + $this->kind = $kind; |
|
| 2783 | 2783 | } |
| 2784 | 2784 | public function getKind() |
| 2785 | 2785 | { |
| 2786 | - return $this->kind; |
|
| 2786 | + return $this->kind; |
|
| 2787 | 2787 | } |
| 2788 | 2788 | public function setLocation($location) |
| 2789 | 2789 | { |
| 2790 | - $this->location = $location; |
|
| 2790 | + $this->location = $location; |
|
| 2791 | 2791 | } |
| 2792 | 2792 | public function getLocation() |
| 2793 | 2793 | { |
| 2794 | - return $this->location; |
|
| 2794 | + return $this->location; |
|
| 2795 | 2795 | } |
| 2796 | 2796 | public function setLocked($locked) |
| 2797 | 2797 | { |
| 2798 | - $this->locked = $locked; |
|
| 2798 | + $this->locked = $locked; |
|
| 2799 | 2799 | } |
| 2800 | 2800 | public function getLocked() |
| 2801 | 2801 | { |
| 2802 | - return $this->locked; |
|
| 2802 | + return $this->locked; |
|
| 2803 | 2803 | } |
| 2804 | 2804 | public function setOrganizer(Google_Service_Calendar_EventOrganizer $organizer) |
| 2805 | 2805 | { |
| 2806 | - $this->organizer = $organizer; |
|
| 2806 | + $this->organizer = $organizer; |
|
| 2807 | 2807 | } |
| 2808 | 2808 | public function getOrganizer() |
| 2809 | 2809 | { |
| 2810 | - return $this->organizer; |
|
| 2810 | + return $this->organizer; |
|
| 2811 | 2811 | } |
| 2812 | 2812 | public function setOriginalStartTime(Google_Service_Calendar_EventDateTime $originalStartTime) |
| 2813 | 2813 | { |
| 2814 | - $this->originalStartTime = $originalStartTime; |
|
| 2814 | + $this->originalStartTime = $originalStartTime; |
|
| 2815 | 2815 | } |
| 2816 | 2816 | public function getOriginalStartTime() |
| 2817 | 2817 | { |
| 2818 | - return $this->originalStartTime; |
|
| 2818 | + return $this->originalStartTime; |
|
| 2819 | 2819 | } |
| 2820 | 2820 | public function setPrivateCopy($privateCopy) |
| 2821 | 2821 | { |
| 2822 | - $this->privateCopy = $privateCopy; |
|
| 2822 | + $this->privateCopy = $privateCopy; |
|
| 2823 | 2823 | } |
| 2824 | 2824 | public function getPrivateCopy() |
| 2825 | 2825 | { |
| 2826 | - return $this->privateCopy; |
|
| 2826 | + return $this->privateCopy; |
|
| 2827 | 2827 | } |
| 2828 | 2828 | public function setRecurrence($recurrence) |
| 2829 | 2829 | { |
| 2830 | - $this->recurrence = $recurrence; |
|
| 2830 | + $this->recurrence = $recurrence; |
|
| 2831 | 2831 | } |
| 2832 | 2832 | public function getRecurrence() |
| 2833 | 2833 | { |
| 2834 | - return $this->recurrence; |
|
| 2834 | + return $this->recurrence; |
|
| 2835 | 2835 | } |
| 2836 | 2836 | public function setRecurringEventId($recurringEventId) |
| 2837 | 2837 | { |
| 2838 | - $this->recurringEventId = $recurringEventId; |
|
| 2838 | + $this->recurringEventId = $recurringEventId; |
|
| 2839 | 2839 | } |
| 2840 | 2840 | public function getRecurringEventId() |
| 2841 | 2841 | { |
| 2842 | - return $this->recurringEventId; |
|
| 2842 | + return $this->recurringEventId; |
|
| 2843 | 2843 | } |
| 2844 | 2844 | public function setReminders(Google_Service_Calendar_EventReminders $reminders) |
| 2845 | 2845 | { |
| 2846 | - $this->reminders = $reminders; |
|
| 2846 | + $this->reminders = $reminders; |
|
| 2847 | 2847 | } |
| 2848 | 2848 | public function getReminders() |
| 2849 | 2849 | { |
| 2850 | - return $this->reminders; |
|
| 2850 | + return $this->reminders; |
|
| 2851 | 2851 | } |
| 2852 | 2852 | public function setSequence($sequence) |
| 2853 | 2853 | { |
| 2854 | - $this->sequence = $sequence; |
|
| 2854 | + $this->sequence = $sequence; |
|
| 2855 | 2855 | } |
| 2856 | 2856 | public function getSequence() |
| 2857 | 2857 | { |
| 2858 | - return $this->sequence; |
|
| 2858 | + return $this->sequence; |
|
| 2859 | 2859 | } |
| 2860 | 2860 | public function setSource(Google_Service_Calendar_EventSource $source) |
| 2861 | 2861 | { |
| 2862 | - $this->source = $source; |
|
| 2862 | + $this->source = $source; |
|
| 2863 | 2863 | } |
| 2864 | 2864 | public function getSource() |
| 2865 | 2865 | { |
| 2866 | - return $this->source; |
|
| 2866 | + return $this->source; |
|
| 2867 | 2867 | } |
| 2868 | 2868 | public function setStart(Google_Service_Calendar_EventDateTime $start) |
| 2869 | 2869 | { |
| 2870 | - $this->start = $start; |
|
| 2870 | + $this->start = $start; |
|
| 2871 | 2871 | } |
| 2872 | 2872 | public function getStart() |
| 2873 | 2873 | { |
| 2874 | - return $this->start; |
|
| 2874 | + return $this->start; |
|
| 2875 | 2875 | } |
| 2876 | 2876 | public function setStatus($status) |
| 2877 | 2877 | { |
| 2878 | - $this->status = $status; |
|
| 2878 | + $this->status = $status; |
|
| 2879 | 2879 | } |
| 2880 | 2880 | public function getStatus() |
| 2881 | 2881 | { |
| 2882 | - return $this->status; |
|
| 2882 | + return $this->status; |
|
| 2883 | 2883 | } |
| 2884 | 2884 | public function setSummary($summary) |
| 2885 | 2885 | { |
| 2886 | - $this->summary = $summary; |
|
| 2886 | + $this->summary = $summary; |
|
| 2887 | 2887 | } |
| 2888 | 2888 | public function getSummary() |
| 2889 | 2889 | { |
| 2890 | - return $this->summary; |
|
| 2890 | + return $this->summary; |
|
| 2891 | 2891 | } |
| 2892 | 2892 | public function setTransparency($transparency) |
| 2893 | 2893 | { |
| 2894 | - $this->transparency = $transparency; |
|
| 2894 | + $this->transparency = $transparency; |
|
| 2895 | 2895 | } |
| 2896 | 2896 | public function getTransparency() |
| 2897 | 2897 | { |
| 2898 | - return $this->transparency; |
|
| 2898 | + return $this->transparency; |
|
| 2899 | 2899 | } |
| 2900 | 2900 | public function setUpdated($updated) |
| 2901 | 2901 | { |
| 2902 | - $this->updated = $updated; |
|
| 2902 | + $this->updated = $updated; |
|
| 2903 | 2903 | } |
| 2904 | 2904 | public function getUpdated() |
| 2905 | 2905 | { |
| 2906 | - return $this->updated; |
|
| 2906 | + return $this->updated; |
|
| 2907 | 2907 | } |
| 2908 | 2908 | public function setVisibility($visibility) |
| 2909 | 2909 | { |
| 2910 | - $this->visibility = $visibility; |
|
| 2910 | + $this->visibility = $visibility; |
|
| 2911 | 2911 | } |
| 2912 | 2912 | public function getVisibility() |
| 2913 | 2913 | { |
| 2914 | - return $this->visibility; |
|
| 2914 | + return $this->visibility; |
|
| 2915 | 2915 | } |
| 2916 | 2916 | } |
| 2917 | 2917 | |
@@ -2927,35 +2927,35 @@ discard block |
||
| 2927 | 2927 | |
| 2928 | 2928 | public function setFileUrl($fileUrl) |
| 2929 | 2929 | { |
| 2930 | - $this->fileUrl = $fileUrl; |
|
| 2930 | + $this->fileUrl = $fileUrl; |
|
| 2931 | 2931 | } |
| 2932 | 2932 | public function getFileUrl() |
| 2933 | 2933 | { |
| 2934 | - return $this->fileUrl; |
|
| 2934 | + return $this->fileUrl; |
|
| 2935 | 2935 | } |
| 2936 | 2936 | public function setIconLink($iconLink) |
| 2937 | 2937 | { |
| 2938 | - $this->iconLink = $iconLink; |
|
| 2938 | + $this->iconLink = $iconLink; |
|
| 2939 | 2939 | } |
| 2940 | 2940 | public function getIconLink() |
| 2941 | 2941 | { |
| 2942 | - return $this->iconLink; |
|
| 2942 | + return $this->iconLink; |
|
| 2943 | 2943 | } |
| 2944 | 2944 | public function setMimeType($mimeType) |
| 2945 | 2945 | { |
| 2946 | - $this->mimeType = $mimeType; |
|
| 2946 | + $this->mimeType = $mimeType; |
|
| 2947 | 2947 | } |
| 2948 | 2948 | public function getMimeType() |
| 2949 | 2949 | { |
| 2950 | - return $this->mimeType; |
|
| 2950 | + return $this->mimeType; |
|
| 2951 | 2951 | } |
| 2952 | 2952 | public function setTitle($title) |
| 2953 | 2953 | { |
| 2954 | - $this->title = $title; |
|
| 2954 | + $this->title = $title; |
|
| 2955 | 2955 | } |
| 2956 | 2956 | public function getTitle() |
| 2957 | 2957 | { |
| 2958 | - return $this->title; |
|
| 2958 | + return $this->title; |
|
| 2959 | 2959 | } |
| 2960 | 2960 | } |
| 2961 | 2961 | |
@@ -2977,83 +2977,83 @@ discard block |
||
| 2977 | 2977 | |
| 2978 | 2978 | public function setAdditionalGuests($additionalGuests) |
| 2979 | 2979 | { |
| 2980 | - $this->additionalGuests = $additionalGuests; |
|
| 2980 | + $this->additionalGuests = $additionalGuests; |
|
| 2981 | 2981 | } |
| 2982 | 2982 | public function getAdditionalGuests() |
| 2983 | 2983 | { |
| 2984 | - return $this->additionalGuests; |
|
| 2984 | + return $this->additionalGuests; |
|
| 2985 | 2985 | } |
| 2986 | 2986 | public function setComment($comment) |
| 2987 | 2987 | { |
| 2988 | - $this->comment = $comment; |
|
| 2988 | + $this->comment = $comment; |
|
| 2989 | 2989 | } |
| 2990 | 2990 | public function getComment() |
| 2991 | 2991 | { |
| 2992 | - return $this->comment; |
|
| 2992 | + return $this->comment; |
|
| 2993 | 2993 | } |
| 2994 | 2994 | public function setDisplayName($displayName) |
| 2995 | 2995 | { |
| 2996 | - $this->displayName = $displayName; |
|
| 2996 | + $this->displayName = $displayName; |
|
| 2997 | 2997 | } |
| 2998 | 2998 | public function getDisplayName() |
| 2999 | 2999 | { |
| 3000 | - return $this->displayName; |
|
| 3000 | + return $this->displayName; |
|
| 3001 | 3001 | } |
| 3002 | 3002 | public function setEmail($email) |
| 3003 | 3003 | { |
| 3004 | - $this->email = $email; |
|
| 3004 | + $this->email = $email; |
|
| 3005 | 3005 | } |
| 3006 | 3006 | public function getEmail() |
| 3007 | 3007 | { |
| 3008 | - return $this->email; |
|
| 3008 | + return $this->email; |
|
| 3009 | 3009 | } |
| 3010 | 3010 | public function setId($id) |
| 3011 | 3011 | { |
| 3012 | - $this->id = $id; |
|
| 3012 | + $this->id = $id; |
|
| 3013 | 3013 | } |
| 3014 | 3014 | public function getId() |
| 3015 | 3015 | { |
| 3016 | - return $this->id; |
|
| 3016 | + return $this->id; |
|
| 3017 | 3017 | } |
| 3018 | 3018 | public function setOptional($optional) |
| 3019 | 3019 | { |
| 3020 | - $this->optional = $optional; |
|
| 3020 | + $this->optional = $optional; |
|
| 3021 | 3021 | } |
| 3022 | 3022 | public function getOptional() |
| 3023 | 3023 | { |
| 3024 | - return $this->optional; |
|
| 3024 | + return $this->optional; |
|
| 3025 | 3025 | } |
| 3026 | 3026 | public function setOrganizer($organizer) |
| 3027 | 3027 | { |
| 3028 | - $this->organizer = $organizer; |
|
| 3028 | + $this->organizer = $organizer; |
|
| 3029 | 3029 | } |
| 3030 | 3030 | public function getOrganizer() |
| 3031 | 3031 | { |
| 3032 | - return $this->organizer; |
|
| 3032 | + return $this->organizer; |
|
| 3033 | 3033 | } |
| 3034 | 3034 | public function setResource($resource) |
| 3035 | 3035 | { |
| 3036 | - $this->resource = $resource; |
|
| 3036 | + $this->resource = $resource; |
|
| 3037 | 3037 | } |
| 3038 | 3038 | public function getResource() |
| 3039 | 3039 | { |
| 3040 | - return $this->resource; |
|
| 3040 | + return $this->resource; |
|
| 3041 | 3041 | } |
| 3042 | 3042 | public function setResponseStatus($responseStatus) |
| 3043 | 3043 | { |
| 3044 | - $this->responseStatus = $responseStatus; |
|
| 3044 | + $this->responseStatus = $responseStatus; |
|
| 3045 | 3045 | } |
| 3046 | 3046 | public function getResponseStatus() |
| 3047 | 3047 | { |
| 3048 | - return $this->responseStatus; |
|
| 3048 | + return $this->responseStatus; |
|
| 3049 | 3049 | } |
| 3050 | 3050 | public function setSelf($self) |
| 3051 | 3051 | { |
| 3052 | - $this->self = $self; |
|
| 3052 | + $this->self = $self; |
|
| 3053 | 3053 | } |
| 3054 | 3054 | public function getSelf() |
| 3055 | 3055 | { |
| 3056 | - return $this->self; |
|
| 3056 | + return $this->self; |
|
| 3057 | 3057 | } |
| 3058 | 3058 | } |
| 3059 | 3059 | |
@@ -3069,35 +3069,35 @@ discard block |
||
| 3069 | 3069 | |
| 3070 | 3070 | public function setDisplayName($displayName) |
| 3071 | 3071 | { |
| 3072 | - $this->displayName = $displayName; |
|
| 3072 | + $this->displayName = $displayName; |
|
| 3073 | 3073 | } |
| 3074 | 3074 | public function getDisplayName() |
| 3075 | 3075 | { |
| 3076 | - return $this->displayName; |
|
| 3076 | + return $this->displayName; |
|
| 3077 | 3077 | } |
| 3078 | 3078 | public function setEmail($email) |
| 3079 | 3079 | { |
| 3080 | - $this->email = $email; |
|
| 3080 | + $this->email = $email; |
|
| 3081 | 3081 | } |
| 3082 | 3082 | public function getEmail() |
| 3083 | 3083 | { |
| 3084 | - return $this->email; |
|
| 3084 | + return $this->email; |
|
| 3085 | 3085 | } |
| 3086 | 3086 | public function setId($id) |
| 3087 | 3087 | { |
| 3088 | - $this->id = $id; |
|
| 3088 | + $this->id = $id; |
|
| 3089 | 3089 | } |
| 3090 | 3090 | public function getId() |
| 3091 | 3091 | { |
| 3092 | - return $this->id; |
|
| 3092 | + return $this->id; |
|
| 3093 | 3093 | } |
| 3094 | 3094 | public function setSelf($self) |
| 3095 | 3095 | { |
| 3096 | - $this->self = $self; |
|
| 3096 | + $this->self = $self; |
|
| 3097 | 3097 | } |
| 3098 | 3098 | public function getSelf() |
| 3099 | 3099 | { |
| 3100 | - return $this->self; |
|
| 3100 | + return $this->self; |
|
| 3101 | 3101 | } |
| 3102 | 3102 | } |
| 3103 | 3103 | |
@@ -3112,27 +3112,27 @@ discard block |
||
| 3112 | 3112 | |
| 3113 | 3113 | public function setDate($date) |
| 3114 | 3114 | { |
| 3115 | - $this->date = $date; |
|
| 3115 | + $this->date = $date; |
|
| 3116 | 3116 | } |
| 3117 | 3117 | public function getDate() |
| 3118 | 3118 | { |
| 3119 | - return $this->date; |
|
| 3119 | + return $this->date; |
|
| 3120 | 3120 | } |
| 3121 | 3121 | public function setDateTime($dateTime) |
| 3122 | 3122 | { |
| 3123 | - $this->dateTime = $dateTime; |
|
| 3123 | + $this->dateTime = $dateTime; |
|
| 3124 | 3124 | } |
| 3125 | 3125 | public function getDateTime() |
| 3126 | 3126 | { |
| 3127 | - return $this->dateTime; |
|
| 3127 | + return $this->dateTime; |
|
| 3128 | 3128 | } |
| 3129 | 3129 | public function setTimeZone($timeZone) |
| 3130 | 3130 | { |
| 3131 | - $this->timeZone = $timeZone; |
|
| 3131 | + $this->timeZone = $timeZone; |
|
| 3132 | 3132 | } |
| 3133 | 3133 | public function getTimeZone() |
| 3134 | 3134 | { |
| 3135 | - return $this->timeZone; |
|
| 3135 | + return $this->timeZone; |
|
| 3136 | 3136 | } |
| 3137 | 3137 | } |
| 3138 | 3138 | |
@@ -3146,19 +3146,19 @@ discard block |
||
| 3146 | 3146 | |
| 3147 | 3147 | public function setPrivate($private) |
| 3148 | 3148 | { |
| 3149 | - $this->private = $private; |
|
| 3149 | + $this->private = $private; |
|
| 3150 | 3150 | } |
| 3151 | 3151 | public function getPrivate() |
| 3152 | 3152 | { |
| 3153 | - return $this->private; |
|
| 3153 | + return $this->private; |
|
| 3154 | 3154 | } |
| 3155 | 3155 | public function setShared($shared) |
| 3156 | 3156 | { |
| 3157 | - $this->shared = $shared; |
|
| 3157 | + $this->shared = $shared; |
|
| 3158 | 3158 | } |
| 3159 | 3159 | public function getShared() |
| 3160 | 3160 | { |
| 3161 | - return $this->shared; |
|
| 3161 | + return $this->shared; |
|
| 3162 | 3162 | } |
| 3163 | 3163 | } |
| 3164 | 3164 | |
@@ -3186,67 +3186,67 @@ discard block |
||
| 3186 | 3186 | |
| 3187 | 3187 | public function setDisplay($display) |
| 3188 | 3188 | { |
| 3189 | - $this->display = $display; |
|
| 3189 | + $this->display = $display; |
|
| 3190 | 3190 | } |
| 3191 | 3191 | public function getDisplay() |
| 3192 | 3192 | { |
| 3193 | - return $this->display; |
|
| 3193 | + return $this->display; |
|
| 3194 | 3194 | } |
| 3195 | 3195 | public function setHeight($height) |
| 3196 | 3196 | { |
| 3197 | - $this->height = $height; |
|
| 3197 | + $this->height = $height; |
|
| 3198 | 3198 | } |
| 3199 | 3199 | public function getHeight() |
| 3200 | 3200 | { |
| 3201 | - return $this->height; |
|
| 3201 | + return $this->height; |
|
| 3202 | 3202 | } |
| 3203 | 3203 | public function setIconLink($iconLink) |
| 3204 | 3204 | { |
| 3205 | - $this->iconLink = $iconLink; |
|
| 3205 | + $this->iconLink = $iconLink; |
|
| 3206 | 3206 | } |
| 3207 | 3207 | public function getIconLink() |
| 3208 | 3208 | { |
| 3209 | - return $this->iconLink; |
|
| 3209 | + return $this->iconLink; |
|
| 3210 | 3210 | } |
| 3211 | 3211 | public function setLink($link) |
| 3212 | 3212 | { |
| 3213 | - $this->link = $link; |
|
| 3213 | + $this->link = $link; |
|
| 3214 | 3214 | } |
| 3215 | 3215 | public function getLink() |
| 3216 | 3216 | { |
| 3217 | - return $this->link; |
|
| 3217 | + return $this->link; |
|
| 3218 | 3218 | } |
| 3219 | 3219 | public function setPreferences($preferences) |
| 3220 | 3220 | { |
| 3221 | - $this->preferences = $preferences; |
|
| 3221 | + $this->preferences = $preferences; |
|
| 3222 | 3222 | } |
| 3223 | 3223 | public function getPreferences() |
| 3224 | 3224 | { |
| 3225 | - return $this->preferences; |
|
| 3225 | + return $this->preferences; |
|
| 3226 | 3226 | } |
| 3227 | 3227 | public function setTitle($title) |
| 3228 | 3228 | { |
| 3229 | - $this->title = $title; |
|
| 3229 | + $this->title = $title; |
|
| 3230 | 3230 | } |
| 3231 | 3231 | public function getTitle() |
| 3232 | 3232 | { |
| 3233 | - return $this->title; |
|
| 3233 | + return $this->title; |
|
| 3234 | 3234 | } |
| 3235 | 3235 | public function setType($type) |
| 3236 | 3236 | { |
| 3237 | - $this->type = $type; |
|
| 3237 | + $this->type = $type; |
|
| 3238 | 3238 | } |
| 3239 | 3239 | public function getType() |
| 3240 | 3240 | { |
| 3241 | - return $this->type; |
|
| 3241 | + return $this->type; |
|
| 3242 | 3242 | } |
| 3243 | 3243 | public function setWidth($width) |
| 3244 | 3244 | { |
| 3245 | - $this->width = $width; |
|
| 3245 | + $this->width = $width; |
|
| 3246 | 3246 | } |
| 3247 | 3247 | public function getWidth() |
| 3248 | 3248 | { |
| 3249 | - return $this->width; |
|
| 3249 | + return $this->width; |
|
| 3250 | 3250 | } |
| 3251 | 3251 | } |
| 3252 | 3252 | |
@@ -3266,35 +3266,35 @@ discard block |
||
| 3266 | 3266 | |
| 3267 | 3267 | public function setDisplayName($displayName) |
| 3268 | 3268 | { |
| 3269 | - $this->displayName = $displayName; |
|
| 3269 | + $this->displayName = $displayName; |
|
| 3270 | 3270 | } |
| 3271 | 3271 | public function getDisplayName() |
| 3272 | 3272 | { |
| 3273 | - return $this->displayName; |
|
| 3273 | + return $this->displayName; |
|
| 3274 | 3274 | } |
| 3275 | 3275 | public function setEmail($email) |
| 3276 | 3276 | { |
| 3277 | - $this->email = $email; |
|
| 3277 | + $this->email = $email; |
|
| 3278 | 3278 | } |
| 3279 | 3279 | public function getEmail() |
| 3280 | 3280 | { |
| 3281 | - return $this->email; |
|
| 3281 | + return $this->email; |
|
| 3282 | 3282 | } |
| 3283 | 3283 | public function setId($id) |
| 3284 | 3284 | { |
| 3285 | - $this->id = $id; |
|
| 3285 | + $this->id = $id; |
|
| 3286 | 3286 | } |
| 3287 | 3287 | public function getId() |
| 3288 | 3288 | { |
| 3289 | - return $this->id; |
|
| 3289 | + return $this->id; |
|
| 3290 | 3290 | } |
| 3291 | 3291 | public function setSelf($self) |
| 3292 | 3292 | { |
| 3293 | - $this->self = $self; |
|
| 3293 | + $this->self = $self; |
|
| 3294 | 3294 | } |
| 3295 | 3295 | public function getSelf() |
| 3296 | 3296 | { |
| 3297 | - return $this->self; |
|
| 3297 | + return $this->self; |
|
| 3298 | 3298 | } |
| 3299 | 3299 | } |
| 3300 | 3300 | |
@@ -3308,19 +3308,19 @@ discard block |
||
| 3308 | 3308 | |
| 3309 | 3309 | public function setMethod($method) |
| 3310 | 3310 | { |
| 3311 | - $this->method = $method; |
|
| 3311 | + $this->method = $method; |
|
| 3312 | 3312 | } |
| 3313 | 3313 | public function getMethod() |
| 3314 | 3314 | { |
| 3315 | - return $this->method; |
|
| 3315 | + return $this->method; |
|
| 3316 | 3316 | } |
| 3317 | 3317 | public function setMinutes($minutes) |
| 3318 | 3318 | { |
| 3319 | - $this->minutes = $minutes; |
|
| 3319 | + $this->minutes = $minutes; |
|
| 3320 | 3320 | } |
| 3321 | 3321 | public function getMinutes() |
| 3322 | 3322 | { |
| 3323 | - return $this->minutes; |
|
| 3323 | + return $this->minutes; |
|
| 3324 | 3324 | } |
| 3325 | 3325 | } |
| 3326 | 3326 | |
@@ -3336,19 +3336,19 @@ discard block |
||
| 3336 | 3336 | |
| 3337 | 3337 | public function setOverrides($overrides) |
| 3338 | 3338 | { |
| 3339 | - $this->overrides = $overrides; |
|
| 3339 | + $this->overrides = $overrides; |
|
| 3340 | 3340 | } |
| 3341 | 3341 | public function getOverrides() |
| 3342 | 3342 | { |
| 3343 | - return $this->overrides; |
|
| 3343 | + return $this->overrides; |
|
| 3344 | 3344 | } |
| 3345 | 3345 | public function setUseDefault($useDefault) |
| 3346 | 3346 | { |
| 3347 | - $this->useDefault = $useDefault; |
|
| 3347 | + $this->useDefault = $useDefault; |
|
| 3348 | 3348 | } |
| 3349 | 3349 | public function getUseDefault() |
| 3350 | 3350 | { |
| 3351 | - return $this->useDefault; |
|
| 3351 | + return $this->useDefault; |
|
| 3352 | 3352 | } |
| 3353 | 3353 | } |
| 3354 | 3354 | |
@@ -3362,19 +3362,19 @@ discard block |
||
| 3362 | 3362 | |
| 3363 | 3363 | public function setTitle($title) |
| 3364 | 3364 | { |
| 3365 | - $this->title = $title; |
|
| 3365 | + $this->title = $title; |
|
| 3366 | 3366 | } |
| 3367 | 3367 | public function getTitle() |
| 3368 | 3368 | { |
| 3369 | - return $this->title; |
|
| 3369 | + return $this->title; |
|
| 3370 | 3370 | } |
| 3371 | 3371 | public function setUrl($url) |
| 3372 | 3372 | { |
| 3373 | - $this->url = $url; |
|
| 3373 | + $this->url = $url; |
|
| 3374 | 3374 | } |
| 3375 | 3375 | public function getUrl() |
| 3376 | 3376 | { |
| 3377 | - return $this->url; |
|
| 3377 | + return $this->url; |
|
| 3378 | 3378 | } |
| 3379 | 3379 | } |
| 3380 | 3380 | |
@@ -3400,91 +3400,91 @@ discard block |
||
| 3400 | 3400 | |
| 3401 | 3401 | public function setAccessRole($accessRole) |
| 3402 | 3402 | { |
| 3403 | - $this->accessRole = $accessRole; |
|
| 3403 | + $this->accessRole = $accessRole; |
|
| 3404 | 3404 | } |
| 3405 | 3405 | public function getAccessRole() |
| 3406 | 3406 | { |
| 3407 | - return $this->accessRole; |
|
| 3407 | + return $this->accessRole; |
|
| 3408 | 3408 | } |
| 3409 | 3409 | public function setDefaultReminders($defaultReminders) |
| 3410 | 3410 | { |
| 3411 | - $this->defaultReminders = $defaultReminders; |
|
| 3411 | + $this->defaultReminders = $defaultReminders; |
|
| 3412 | 3412 | } |
| 3413 | 3413 | public function getDefaultReminders() |
| 3414 | 3414 | { |
| 3415 | - return $this->defaultReminders; |
|
| 3415 | + return $this->defaultReminders; |
|
| 3416 | 3416 | } |
| 3417 | 3417 | public function setDescription($description) |
| 3418 | 3418 | { |
| 3419 | - $this->description = $description; |
|
| 3419 | + $this->description = $description; |
|
| 3420 | 3420 | } |
| 3421 | 3421 | public function getDescription() |
| 3422 | 3422 | { |
| 3423 | - return $this->description; |
|
| 3423 | + return $this->description; |
|
| 3424 | 3424 | } |
| 3425 | 3425 | public function setEtag($etag) |
| 3426 | 3426 | { |
| 3427 | - $this->etag = $etag; |
|
| 3427 | + $this->etag = $etag; |
|
| 3428 | 3428 | } |
| 3429 | 3429 | public function getEtag() |
| 3430 | 3430 | { |
| 3431 | - return $this->etag; |
|
| 3431 | + return $this->etag; |
|
| 3432 | 3432 | } |
| 3433 | 3433 | public function setItems($items) |
| 3434 | 3434 | { |
| 3435 | - $this->items = $items; |
|
| 3435 | + $this->items = $items; |
|
| 3436 | 3436 | } |
| 3437 | 3437 | public function getItems() |
| 3438 | 3438 | { |
| 3439 | - return $this->items; |
|
| 3439 | + return $this->items; |
|
| 3440 | 3440 | } |
| 3441 | 3441 | public function setKind($kind) |
| 3442 | 3442 | { |
| 3443 | - $this->kind = $kind; |
|
| 3443 | + $this->kind = $kind; |
|
| 3444 | 3444 | } |
| 3445 | 3445 | public function getKind() |
| 3446 | 3446 | { |
| 3447 | - return $this->kind; |
|
| 3447 | + return $this->kind; |
|
| 3448 | 3448 | } |
| 3449 | 3449 | public function setNextPageToken($nextPageToken) |
| 3450 | 3450 | { |
| 3451 | - $this->nextPageToken = $nextPageToken; |
|
| 3451 | + $this->nextPageToken = $nextPageToken; |
|
| 3452 | 3452 | } |
| 3453 | 3453 | public function getNextPageToken() |
| 3454 | 3454 | { |
| 3455 | - return $this->nextPageToken; |
|
| 3455 | + return $this->nextPageToken; |
|
| 3456 | 3456 | } |
| 3457 | 3457 | public function setNextSyncToken($nextSyncToken) |
| 3458 | 3458 | { |
| 3459 | - $this->nextSyncToken = $nextSyncToken; |
|
| 3459 | + $this->nextSyncToken = $nextSyncToken; |
|
| 3460 | 3460 | } |
| 3461 | 3461 | public function getNextSyncToken() |
| 3462 | 3462 | { |
| 3463 | - return $this->nextSyncToken; |
|
| 3463 | + return $this->nextSyncToken; |
|
| 3464 | 3464 | } |
| 3465 | 3465 | public function setSummary($summary) |
| 3466 | 3466 | { |
| 3467 | - $this->summary = $summary; |
|
| 3467 | + $this->summary = $summary; |
|
| 3468 | 3468 | } |
| 3469 | 3469 | public function getSummary() |
| 3470 | 3470 | { |
| 3471 | - return $this->summary; |
|
| 3471 | + return $this->summary; |
|
| 3472 | 3472 | } |
| 3473 | 3473 | public function setTimeZone($timeZone) |
| 3474 | 3474 | { |
| 3475 | - $this->timeZone = $timeZone; |
|
| 3475 | + $this->timeZone = $timeZone; |
|
| 3476 | 3476 | } |
| 3477 | 3477 | public function getTimeZone() |
| 3478 | 3478 | { |
| 3479 | - return $this->timeZone; |
|
| 3479 | + return $this->timeZone; |
|
| 3480 | 3480 | } |
| 3481 | 3481 | public function setUpdated($updated) |
| 3482 | 3482 | { |
| 3483 | - $this->updated = $updated; |
|
| 3483 | + $this->updated = $updated; |
|
| 3484 | 3484 | } |
| 3485 | 3485 | public function getUpdated() |
| 3486 | 3486 | { |
| 3487 | - return $this->updated; |
|
| 3487 | + return $this->updated; |
|
| 3488 | 3488 | } |
| 3489 | 3489 | } |
| 3490 | 3490 | |
@@ -3501,19 +3501,19 @@ discard block |
||
| 3501 | 3501 | |
| 3502 | 3502 | public function setBusy($busy) |
| 3503 | 3503 | { |
| 3504 | - $this->busy = $busy; |
|
| 3504 | + $this->busy = $busy; |
|
| 3505 | 3505 | } |
| 3506 | 3506 | public function getBusy() |
| 3507 | 3507 | { |
| 3508 | - return $this->busy; |
|
| 3508 | + return $this->busy; |
|
| 3509 | 3509 | } |
| 3510 | 3510 | public function setErrors($errors) |
| 3511 | 3511 | { |
| 3512 | - $this->errors = $errors; |
|
| 3512 | + $this->errors = $errors; |
|
| 3513 | 3513 | } |
| 3514 | 3514 | public function getErrors() |
| 3515 | 3515 | { |
| 3516 | - return $this->errors; |
|
| 3516 | + return $this->errors; |
|
| 3517 | 3517 | } |
| 3518 | 3518 | } |
| 3519 | 3519 | |
@@ -3529,19 +3529,19 @@ discard block |
||
| 3529 | 3529 | |
| 3530 | 3530 | public function setCalendars($calendars) |
| 3531 | 3531 | { |
| 3532 | - $this->calendars = $calendars; |
|
| 3532 | + $this->calendars = $calendars; |
|
| 3533 | 3533 | } |
| 3534 | 3534 | public function getCalendars() |
| 3535 | 3535 | { |
| 3536 | - return $this->calendars; |
|
| 3536 | + return $this->calendars; |
|
| 3537 | 3537 | } |
| 3538 | 3538 | public function setErrors($errors) |
| 3539 | 3539 | { |
| 3540 | - $this->errors = $errors; |
|
| 3540 | + $this->errors = $errors; |
|
| 3541 | 3541 | } |
| 3542 | 3542 | public function getErrors() |
| 3543 | 3543 | { |
| 3544 | - return $this->errors; |
|
| 3544 | + return $this->errors; |
|
| 3545 | 3545 | } |
| 3546 | 3546 | } |
| 3547 | 3547 | |
@@ -3561,51 +3561,51 @@ discard block |
||
| 3561 | 3561 | |
| 3562 | 3562 | public function setCalendarExpansionMax($calendarExpansionMax) |
| 3563 | 3563 | { |
| 3564 | - $this->calendarExpansionMax = $calendarExpansionMax; |
|
| 3564 | + $this->calendarExpansionMax = $calendarExpansionMax; |
|
| 3565 | 3565 | } |
| 3566 | 3566 | public function getCalendarExpansionMax() |
| 3567 | 3567 | { |
| 3568 | - return $this->calendarExpansionMax; |
|
| 3568 | + return $this->calendarExpansionMax; |
|
| 3569 | 3569 | } |
| 3570 | 3570 | public function setGroupExpansionMax($groupExpansionMax) |
| 3571 | 3571 | { |
| 3572 | - $this->groupExpansionMax = $groupExpansionMax; |
|
| 3572 | + $this->groupExpansionMax = $groupExpansionMax; |
|
| 3573 | 3573 | } |
| 3574 | 3574 | public function getGroupExpansionMax() |
| 3575 | 3575 | { |
| 3576 | - return $this->groupExpansionMax; |
|
| 3576 | + return $this->groupExpansionMax; |
|
| 3577 | 3577 | } |
| 3578 | 3578 | public function setItems($items) |
| 3579 | 3579 | { |
| 3580 | - $this->items = $items; |
|
| 3580 | + $this->items = $items; |
|
| 3581 | 3581 | } |
| 3582 | 3582 | public function getItems() |
| 3583 | 3583 | { |
| 3584 | - return $this->items; |
|
| 3584 | + return $this->items; |
|
| 3585 | 3585 | } |
| 3586 | 3586 | public function setTimeMax($timeMax) |
| 3587 | 3587 | { |
| 3588 | - $this->timeMax = $timeMax; |
|
| 3588 | + $this->timeMax = $timeMax; |
|
| 3589 | 3589 | } |
| 3590 | 3590 | public function getTimeMax() |
| 3591 | 3591 | { |
| 3592 | - return $this->timeMax; |
|
| 3592 | + return $this->timeMax; |
|
| 3593 | 3593 | } |
| 3594 | 3594 | public function setTimeMin($timeMin) |
| 3595 | 3595 | { |
| 3596 | - $this->timeMin = $timeMin; |
|
| 3596 | + $this->timeMin = $timeMin; |
|
| 3597 | 3597 | } |
| 3598 | 3598 | public function getTimeMin() |
| 3599 | 3599 | { |
| 3600 | - return $this->timeMin; |
|
| 3600 | + return $this->timeMin; |
|
| 3601 | 3601 | } |
| 3602 | 3602 | public function setTimeZone($timeZone) |
| 3603 | 3603 | { |
| 3604 | - $this->timeZone = $timeZone; |
|
| 3604 | + $this->timeZone = $timeZone; |
|
| 3605 | 3605 | } |
| 3606 | 3606 | public function getTimeZone() |
| 3607 | 3607 | { |
| 3608 | - return $this->timeZone; |
|
| 3608 | + return $this->timeZone; |
|
| 3609 | 3609 | } |
| 3610 | 3610 | } |
| 3611 | 3611 | |
@@ -3618,11 +3618,11 @@ discard block |
||
| 3618 | 3618 | |
| 3619 | 3619 | public function setId($id) |
| 3620 | 3620 | { |
| 3621 | - $this->id = $id; |
|
| 3621 | + $this->id = $id; |
|
| 3622 | 3622 | } |
| 3623 | 3623 | public function getId() |
| 3624 | 3624 | { |
| 3625 | - return $this->id; |
|
| 3625 | + return $this->id; |
|
| 3626 | 3626 | } |
| 3627 | 3627 | } |
| 3628 | 3628 | |
@@ -3641,43 +3641,43 @@ discard block |
||
| 3641 | 3641 | |
| 3642 | 3642 | public function setCalendars($calendars) |
| 3643 | 3643 | { |
| 3644 | - $this->calendars = $calendars; |
|
| 3644 | + $this->calendars = $calendars; |
|
| 3645 | 3645 | } |
| 3646 | 3646 | public function getCalendars() |
| 3647 | 3647 | { |
| 3648 | - return $this->calendars; |
|
| 3648 | + return $this->calendars; |
|
| 3649 | 3649 | } |
| 3650 | 3650 | public function setGroups($groups) |
| 3651 | 3651 | { |
| 3652 | - $this->groups = $groups; |
|
| 3652 | + $this->groups = $groups; |
|
| 3653 | 3653 | } |
| 3654 | 3654 | public function getGroups() |
| 3655 | 3655 | { |
| 3656 | - return $this->groups; |
|
| 3656 | + return $this->groups; |
|
| 3657 | 3657 | } |
| 3658 | 3658 | public function setKind($kind) |
| 3659 | 3659 | { |
| 3660 | - $this->kind = $kind; |
|
| 3660 | + $this->kind = $kind; |
|
| 3661 | 3661 | } |
| 3662 | 3662 | public function getKind() |
| 3663 | 3663 | { |
| 3664 | - return $this->kind; |
|
| 3664 | + return $this->kind; |
|
| 3665 | 3665 | } |
| 3666 | 3666 | public function setTimeMax($timeMax) |
| 3667 | 3667 | { |
| 3668 | - $this->timeMax = $timeMax; |
|
| 3668 | + $this->timeMax = $timeMax; |
|
| 3669 | 3669 | } |
| 3670 | 3670 | public function getTimeMax() |
| 3671 | 3671 | { |
| 3672 | - return $this->timeMax; |
|
| 3672 | + return $this->timeMax; |
|
| 3673 | 3673 | } |
| 3674 | 3674 | public function setTimeMin($timeMin) |
| 3675 | 3675 | { |
| 3676 | - $this->timeMin = $timeMin; |
|
| 3676 | + $this->timeMin = $timeMin; |
|
| 3677 | 3677 | } |
| 3678 | 3678 | public function getTimeMin() |
| 3679 | 3679 | { |
| 3680 | - return $this->timeMin; |
|
| 3680 | + return $this->timeMin; |
|
| 3681 | 3681 | } |
| 3682 | 3682 | } |
| 3683 | 3683 | |
@@ -3701,35 +3701,35 @@ discard block |
||
| 3701 | 3701 | |
| 3702 | 3702 | public function setEtag($etag) |
| 3703 | 3703 | { |
| 3704 | - $this->etag = $etag; |
|
| 3704 | + $this->etag = $etag; |
|
| 3705 | 3705 | } |
| 3706 | 3706 | public function getEtag() |
| 3707 | 3707 | { |
| 3708 | - return $this->etag; |
|
| 3708 | + return $this->etag; |
|
| 3709 | 3709 | } |
| 3710 | 3710 | public function setId($id) |
| 3711 | 3711 | { |
| 3712 | - $this->id = $id; |
|
| 3712 | + $this->id = $id; |
|
| 3713 | 3713 | } |
| 3714 | 3714 | public function getId() |
| 3715 | 3715 | { |
| 3716 | - return $this->id; |
|
| 3716 | + return $this->id; |
|
| 3717 | 3717 | } |
| 3718 | 3718 | public function setKind($kind) |
| 3719 | 3719 | { |
| 3720 | - $this->kind = $kind; |
|
| 3720 | + $this->kind = $kind; |
|
| 3721 | 3721 | } |
| 3722 | 3722 | public function getKind() |
| 3723 | 3723 | { |
| 3724 | - return $this->kind; |
|
| 3724 | + return $this->kind; |
|
| 3725 | 3725 | } |
| 3726 | 3726 | public function setValue($value) |
| 3727 | 3727 | { |
| 3728 | - $this->value = $value; |
|
| 3728 | + $this->value = $value; |
|
| 3729 | 3729 | } |
| 3730 | 3730 | public function getValue() |
| 3731 | 3731 | { |
| 3732 | - return $this->value; |
|
| 3732 | + return $this->value; |
|
| 3733 | 3733 | } |
| 3734 | 3734 | } |
| 3735 | 3735 | |
@@ -3748,43 +3748,43 @@ discard block |
||
| 3748 | 3748 | |
| 3749 | 3749 | public function setEtag($etag) |
| 3750 | 3750 | { |
| 3751 | - $this->etag = $etag; |
|
| 3751 | + $this->etag = $etag; |
|
| 3752 | 3752 | } |
| 3753 | 3753 | public function getEtag() |
| 3754 | 3754 | { |
| 3755 | - return $this->etag; |
|
| 3755 | + return $this->etag; |
|
| 3756 | 3756 | } |
| 3757 | 3757 | public function setItems($items) |
| 3758 | 3758 | { |
| 3759 | - $this->items = $items; |
|
| 3759 | + $this->items = $items; |
|
| 3760 | 3760 | } |
| 3761 | 3761 | public function getItems() |
| 3762 | 3762 | { |
| 3763 | - return $this->items; |
|
| 3763 | + return $this->items; |
|
| 3764 | 3764 | } |
| 3765 | 3765 | public function setKind($kind) |
| 3766 | 3766 | { |
| 3767 | - $this->kind = $kind; |
|
| 3767 | + $this->kind = $kind; |
|
| 3768 | 3768 | } |
| 3769 | 3769 | public function getKind() |
| 3770 | 3770 | { |
| 3771 | - return $this->kind; |
|
| 3771 | + return $this->kind; |
|
| 3772 | 3772 | } |
| 3773 | 3773 | public function setNextPageToken($nextPageToken) |
| 3774 | 3774 | { |
| 3775 | - $this->nextPageToken = $nextPageToken; |
|
| 3775 | + $this->nextPageToken = $nextPageToken; |
|
| 3776 | 3776 | } |
| 3777 | 3777 | public function getNextPageToken() |
| 3778 | 3778 | { |
| 3779 | - return $this->nextPageToken; |
|
| 3779 | + return $this->nextPageToken; |
|
| 3780 | 3780 | } |
| 3781 | 3781 | public function setNextSyncToken($nextSyncToken) |
| 3782 | 3782 | { |
| 3783 | - $this->nextSyncToken = $nextSyncToken; |
|
| 3783 | + $this->nextSyncToken = $nextSyncToken; |
|
| 3784 | 3784 | } |
| 3785 | 3785 | public function getNextSyncToken() |
| 3786 | 3786 | { |
| 3787 | - return $this->nextSyncToken; |
|
| 3787 | + return $this->nextSyncToken; |
|
| 3788 | 3788 | } |
| 3789 | 3789 | } |
| 3790 | 3790 | |
@@ -3798,18 +3798,18 @@ discard block |
||
| 3798 | 3798 | |
| 3799 | 3799 | public function setEnd($end) |
| 3800 | 3800 | { |
| 3801 | - $this->end = $end; |
|
| 3801 | + $this->end = $end; |
|
| 3802 | 3802 | } |
| 3803 | 3803 | public function getEnd() |
| 3804 | 3804 | { |
| 3805 | - return $this->end; |
|
| 3805 | + return $this->end; |
|
| 3806 | 3806 | } |
| 3807 | 3807 | public function setStart($start) |
| 3808 | 3808 | { |
| 3809 | - $this->start = $start; |
|
| 3809 | + $this->start = $start; |
|
| 3810 | 3810 | } |
| 3811 | 3811 | public function getStart() |
| 3812 | 3812 | { |
| 3813 | - return $this->start; |
|
| 3813 | + return $this->start; |
|
| 3814 | 3814 | } |
| 3815 | 3815 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | 'required' => true, |
| 82 | 82 | ), |
| 83 | 83 | ), |
| 84 | - ),'get' => array( |
|
| 84 | + ), 'get' => array( |
|
| 85 | 85 | 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
| 86 | 86 | 'httpMethod' => 'GET', |
| 87 | 87 | 'parameters' => array( |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | 'required' => true, |
| 97 | 97 | ), |
| 98 | 98 | ), |
| 99 | - ),'insert' => array( |
|
| 99 | + ), 'insert' => array( |
|
| 100 | 100 | 'path' => 'calendars/{calendarId}/acl', |
| 101 | 101 | 'httpMethod' => 'POST', |
| 102 | 102 | 'parameters' => array( |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | 'required' => true, |
| 107 | 107 | ), |
| 108 | 108 | ), |
| 109 | - ),'list' => array( |
|
| 109 | + ), 'list' => array( |
|
| 110 | 110 | 'path' => 'calendars/{calendarId}/acl', |
| 111 | 111 | 'httpMethod' => 'GET', |
| 112 | 112 | 'parameters' => array( |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | 'type' => 'boolean', |
| 133 | 133 | ), |
| 134 | 134 | ), |
| 135 | - ),'patch' => array( |
|
| 135 | + ), 'patch' => array( |
|
| 136 | 136 | 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
| 137 | 137 | 'httpMethod' => 'PATCH', |
| 138 | 138 | 'parameters' => array( |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'required' => true, |
| 148 | 148 | ), |
| 149 | 149 | ), |
| 150 | - ),'update' => array( |
|
| 150 | + ), 'update' => array( |
|
| 151 | 151 | 'path' => 'calendars/{calendarId}/acl/{ruleId}', |
| 152 | 152 | 'httpMethod' => 'PUT', |
| 153 | 153 | 'parameters' => array( |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | 'required' => true, |
| 163 | 163 | ), |
| 164 | 164 | ), |
| 165 | - ),'watch' => array( |
|
| 165 | + ), 'watch' => array( |
|
| 166 | 166 | 'path' => 'calendars/{calendarId}/acl/watch', |
| 167 | 167 | 'httpMethod' => 'POST', |
| 168 | 168 | 'parameters' => array( |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | 'required' => true, |
| 209 | 209 | ), |
| 210 | 210 | ), |
| 211 | - ),'get' => array( |
|
| 211 | + ), 'get' => array( |
|
| 212 | 212 | 'path' => 'users/me/calendarList/{calendarId}', |
| 213 | 213 | 'httpMethod' => 'GET', |
| 214 | 214 | 'parameters' => array( |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | 'required' => true, |
| 219 | 219 | ), |
| 220 | 220 | ), |
| 221 | - ),'insert' => array( |
|
| 221 | + ), 'insert' => array( |
|
| 222 | 222 | 'path' => 'users/me/calendarList', |
| 223 | 223 | 'httpMethod' => 'POST', |
| 224 | 224 | 'parameters' => array( |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | 'type' => 'boolean', |
| 228 | 228 | ), |
| 229 | 229 | ), |
| 230 | - ),'list' => array( |
|
| 230 | + ), 'list' => array( |
|
| 231 | 231 | 'path' => 'users/me/calendarList', |
| 232 | 232 | 'httpMethod' => 'GET', |
| 233 | 233 | 'parameters' => array( |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | 'type' => 'boolean', |
| 257 | 257 | ), |
| 258 | 258 | ), |
| 259 | - ),'patch' => array( |
|
| 259 | + ), 'patch' => array( |
|
| 260 | 260 | 'path' => 'users/me/calendarList/{calendarId}', |
| 261 | 261 | 'httpMethod' => 'PATCH', |
| 262 | 262 | 'parameters' => array( |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | 'type' => 'boolean', |
| 271 | 271 | ), |
| 272 | 272 | ), |
| 273 | - ),'update' => array( |
|
| 273 | + ), 'update' => array( |
|
| 274 | 274 | 'path' => 'users/me/calendarList/{calendarId}', |
| 275 | 275 | 'httpMethod' => 'PUT', |
| 276 | 276 | 'parameters' => array( |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | 'type' => 'boolean', |
| 285 | 285 | ), |
| 286 | 286 | ), |
| 287 | - ),'watch' => array( |
|
| 287 | + ), 'watch' => array( |
|
| 288 | 288 | 'path' => 'users/me/calendarList/watch', |
| 289 | 289 | 'httpMethod' => 'POST', |
| 290 | 290 | 'parameters' => array( |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | 'required' => true, |
| 334 | 334 | ), |
| 335 | 335 | ), |
| 336 | - ),'delete' => array( |
|
| 336 | + ), 'delete' => array( |
|
| 337 | 337 | 'path' => 'calendars/{calendarId}', |
| 338 | 338 | 'httpMethod' => 'DELETE', |
| 339 | 339 | 'parameters' => array( |
@@ -343,7 +343,7 @@ discard block |
||
| 343 | 343 | 'required' => true, |
| 344 | 344 | ), |
| 345 | 345 | ), |
| 346 | - ),'get' => array( |
|
| 346 | + ), 'get' => array( |
|
| 347 | 347 | 'path' => 'calendars/{calendarId}', |
| 348 | 348 | 'httpMethod' => 'GET', |
| 349 | 349 | 'parameters' => array( |
@@ -353,11 +353,11 @@ discard block |
||
| 353 | 353 | 'required' => true, |
| 354 | 354 | ), |
| 355 | 355 | ), |
| 356 | - ),'insert' => array( |
|
| 356 | + ), 'insert' => array( |
|
| 357 | 357 | 'path' => 'calendars', |
| 358 | 358 | 'httpMethod' => 'POST', |
| 359 | 359 | 'parameters' => array(), |
| 360 | - ),'patch' => array( |
|
| 360 | + ), 'patch' => array( |
|
| 361 | 361 | 'path' => 'calendars/{calendarId}', |
| 362 | 362 | 'httpMethod' => 'PATCH', |
| 363 | 363 | 'parameters' => array( |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | 'required' => true, |
| 368 | 368 | ), |
| 369 | 369 | ), |
| 370 | - ),'update' => array( |
|
| 370 | + ), 'update' => array( |
|
| 371 | 371 | 'path' => 'calendars/{calendarId}', |
| 372 | 372 | 'httpMethod' => 'PUT', |
| 373 | 373 | 'parameters' => array( |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | 'type' => 'boolean', |
| 435 | 435 | ), |
| 436 | 436 | ), |
| 437 | - ),'get' => array( |
|
| 437 | + ), 'get' => array( |
|
| 438 | 438 | 'path' => 'calendars/{calendarId}/events/{eventId}', |
| 439 | 439 | 'httpMethod' => 'GET', |
| 440 | 440 | 'parameters' => array( |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | 'type' => 'integer', |
| 462 | 462 | ), |
| 463 | 463 | ), |
| 464 | - ),'import' => array( |
|
| 464 | + ), 'import' => array( |
|
| 465 | 465 | 'path' => 'calendars/{calendarId}/events/import', |
| 466 | 466 | 'httpMethod' => 'POST', |
| 467 | 467 | 'parameters' => array( |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | 'type' => 'boolean', |
| 476 | 476 | ), |
| 477 | 477 | ), |
| 478 | - ),'insert' => array( |
|
| 478 | + ), 'insert' => array( |
|
| 479 | 479 | 'path' => 'calendars/{calendarId}/events', |
| 480 | 480 | 'httpMethod' => 'POST', |
| 481 | 481 | 'parameters' => array( |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | 'type' => 'integer', |
| 498 | 498 | ), |
| 499 | 499 | ), |
| 500 | - ),'instances' => array( |
|
| 500 | + ), 'instances' => array( |
|
| 501 | 501 | 'path' => 'calendars/{calendarId}/events/{eventId}/instances', |
| 502 | 502 | 'httpMethod' => 'GET', |
| 503 | 503 | 'parameters' => array( |
@@ -548,7 +548,7 @@ discard block |
||
| 548 | 548 | 'type' => 'integer', |
| 549 | 549 | ), |
| 550 | 550 | ), |
| 551 | - ),'list' => array( |
|
| 551 | + ), 'list' => array( |
|
| 552 | 552 | 'path' => 'calendars/{calendarId}/events', |
| 553 | 553 | 'httpMethod' => 'GET', |
| 554 | 554 | 'parameters' => array( |
@@ -628,7 +628,7 @@ discard block |
||
| 628 | 628 | 'type' => 'integer', |
| 629 | 629 | ), |
| 630 | 630 | ), |
| 631 | - ),'move' => array( |
|
| 631 | + ), 'move' => array( |
|
| 632 | 632 | 'path' => 'calendars/{calendarId}/events/{eventId}/move', |
| 633 | 633 | 'httpMethod' => 'POST', |
| 634 | 634 | 'parameters' => array( |
@@ -652,7 +652,7 @@ discard block |
||
| 652 | 652 | 'type' => 'boolean', |
| 653 | 653 | ), |
| 654 | 654 | ), |
| 655 | - ),'patch' => array( |
|
| 655 | + ), 'patch' => array( |
|
| 656 | 656 | 'path' => 'calendars/{calendarId}/events/{eventId}', |
| 657 | 657 | 'httpMethod' => 'PATCH', |
| 658 | 658 | 'parameters' => array( |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | 'type' => 'integer', |
| 684 | 684 | ), |
| 685 | 685 | ), |
| 686 | - ),'quickAdd' => array( |
|
| 686 | + ), 'quickAdd' => array( |
|
| 687 | 687 | 'path' => 'calendars/{calendarId}/events/quickAdd', |
| 688 | 688 | 'httpMethod' => 'POST', |
| 689 | 689 | 'parameters' => array( |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | 'type' => 'boolean', |
| 703 | 703 | ), |
| 704 | 704 | ), |
| 705 | - ),'update' => array( |
|
| 705 | + ), 'update' => array( |
|
| 706 | 706 | 'path' => 'calendars/{calendarId}/events/{eventId}', |
| 707 | 707 | 'httpMethod' => 'PUT', |
| 708 | 708 | 'parameters' => array( |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | 'type' => 'integer', |
| 734 | 734 | ), |
| 735 | 735 | ), |
| 736 | - ),'watch' => array( |
|
| 736 | + ), 'watch' => array( |
|
| 737 | 737 | 'path' => 'calendars/{calendarId}/events/watch', |
| 738 | 738 | 'httpMethod' => 'POST', |
| 739 | 739 | 'parameters' => array( |
@@ -847,7 +847,7 @@ discard block |
||
| 847 | 847 | 'required' => true, |
| 848 | 848 | ), |
| 849 | 849 | ), |
| 850 | - ),'list' => array( |
|
| 850 | + ), 'list' => array( |
|
| 851 | 851 | 'path' => 'users/me/settings', |
| 852 | 852 | 'httpMethod' => 'GET', |
| 853 | 853 | 'parameters' => array( |
@@ -864,7 +864,7 @@ discard block |
||
| 864 | 864 | 'type' => 'string', |
| 865 | 865 | ), |
| 866 | 866 | ), |
| 867 | - ),'watch' => array( |
|
| 867 | + ), 'watch' => array( |
|
| 868 | 868 | 'path' => 'users/me/settings/watch', |
| 869 | 869 | 'httpMethod' => 'POST', |
| 870 | 870 | 'parameters' => array( |
@@ -43,23 +43,23 @@ discard block |
||
| 43 | 43 | * @param array|null $retryMap Map of errors with retry counts. |
| 44 | 44 | */ |
| 45 | 45 | public function __construct( |
| 46 | - $message, |
|
| 47 | - $code = 0, |
|
| 48 | - Exception $previous = null, |
|
| 49 | - $errors = array(), |
|
| 50 | - array $retryMap = null |
|
| 46 | + $message, |
|
| 47 | + $code = 0, |
|
| 48 | + Exception $previous = null, |
|
| 49 | + $errors = array(), |
|
| 50 | + array $retryMap = null |
|
| 51 | 51 | ) { |
| 52 | - if (version_compare(PHP_VERSION, '5.3.0') >= 0) { |
|
| 53 | - parent::__construct($message, $code, $previous); |
|
| 54 | - } else { |
|
| 55 | - parent::__construct($message, $code); |
|
| 56 | - } |
|
| 52 | + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { |
|
| 53 | + parent::__construct($message, $code, $previous); |
|
| 54 | + } else { |
|
| 55 | + parent::__construct($message, $code); |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - $this->errors = $errors; |
|
| 58 | + $this->errors = $errors; |
|
| 59 | 59 | |
| 60 | - if (is_array($retryMap)) { |
|
| 61 | - $this->retryMap = $retryMap; |
|
| 62 | - } |
|
| 60 | + if (is_array($retryMap)) { |
|
| 61 | + $this->retryMap = $retryMap; |
|
| 62 | + } |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function getErrors() |
| 79 | 79 | { |
| 80 | - return $this->errors; |
|
| 80 | + return $this->errors; |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -89,17 +89,17 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function allowedRetries() |
| 91 | 91 | { |
| 92 | - if (isset($this->retryMap[$this->code])) { |
|
| 93 | - return $this->retryMap[$this->code]; |
|
| 94 | - } |
|
| 92 | + if (isset($this->retryMap[$this->code])) { |
|
| 93 | + return $this->retryMap[$this->code]; |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - $errors = $this->getErrors(); |
|
| 96 | + $errors = $this->getErrors(); |
|
| 97 | 97 | |
| 98 | - if (!empty($errors) && isset($errors[0]['reason']) && |
|
| 99 | - isset($this->retryMap[$errors[0]['reason']])) { |
|
| 100 | - return $this->retryMap[$errors[0]['reason']]; |
|
| 101 | - } |
|
| 98 | + if (!empty($errors) && isset($errors[0]['reason']) && |
|
| 99 | + isset($this->retryMap[$errors[0]['reason']])) { |
|
| 100 | + return $this->retryMap[$errors[0]['reason']]; |
|
| 101 | + } |
|
| 102 | 102 | |
| 103 | - return 0; |
|
| 103 | + return 0; |
|
| 104 | 104 | } |
| 105 | 105 | } |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | 18 | if (!class_exists('Google_Client')) { |
| 19 | - require_once dirname(__FILE__) . '/../autoload.php'; |
|
| 19 | + require_once dirname(__FILE__).'/../autoload.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | class Google_Service_Exception extends Google_Exception implements Google_Task_Retryable |
@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Manage the list of sites and domains you control. */ |
| 34 | 34 | const SITEVERIFICATION = |
| 35 | - "https://www.googleapis.com/auth/siteverification"; |
|
| 35 | + "https://www.googleapis.com/auth/siteverification"; |
|
| 36 | 36 | /** Manage your new site verifications with Google. */ |
| 37 | 37 | const SITEVERIFICATION_VERIFY_ONLY = |
| 38 | - "https://www.googleapis.com/auth/siteverification.verify_only"; |
|
| 38 | + "https://www.googleapis.com/auth/siteverification.verify_only"; |
|
| 39 | 39 | |
| 40 | 40 | public $webResource; |
| 41 | 41 | |
@@ -47,80 +47,80 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function __construct(Google_Client $client) |
| 49 | 49 | { |
| 50 | - parent::__construct($client); |
|
| 51 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 52 | - $this->servicePath = 'siteVerification/v1/'; |
|
| 53 | - $this->version = 'v1'; |
|
| 54 | - $this->serviceName = 'siteVerification'; |
|
| 55 | - |
|
| 56 | - $this->webResource = new Google_Service_SiteVerification_WebResource_Resource( |
|
| 57 | - $this, |
|
| 58 | - $this->serviceName, |
|
| 59 | - 'webResource', |
|
| 60 | - array( |
|
| 61 | - 'methods' => array( |
|
| 62 | - 'delete' => array( |
|
| 63 | - 'path' => 'webResource/{id}', |
|
| 64 | - 'httpMethod' => 'DELETE', |
|
| 65 | - 'parameters' => array( |
|
| 66 | - 'id' => array( |
|
| 67 | - 'location' => 'path', |
|
| 68 | - 'type' => 'string', |
|
| 69 | - 'required' => true, |
|
| 70 | - ), |
|
| 71 | - ), |
|
| 72 | - ),'get' => array( |
|
| 73 | - 'path' => 'webResource/{id}', |
|
| 74 | - 'httpMethod' => 'GET', |
|
| 75 | - 'parameters' => array( |
|
| 76 | - 'id' => array( |
|
| 77 | - 'location' => 'path', |
|
| 78 | - 'type' => 'string', |
|
| 79 | - 'required' => true, |
|
| 80 | - ), |
|
| 81 | - ), |
|
| 82 | - ),'getToken' => array( |
|
| 83 | - 'path' => 'token', |
|
| 84 | - 'httpMethod' => 'POST', |
|
| 85 | - 'parameters' => array(), |
|
| 86 | - ),'insert' => array( |
|
| 87 | - 'path' => 'webResource', |
|
| 88 | - 'httpMethod' => 'POST', |
|
| 89 | - 'parameters' => array( |
|
| 90 | - 'verificationMethod' => array( |
|
| 91 | - 'location' => 'query', |
|
| 92 | - 'type' => 'string', |
|
| 93 | - 'required' => true, |
|
| 94 | - ), |
|
| 95 | - ), |
|
| 96 | - ),'list' => array( |
|
| 97 | - 'path' => 'webResource', |
|
| 98 | - 'httpMethod' => 'GET', |
|
| 99 | - 'parameters' => array(), |
|
| 100 | - ),'patch' => array( |
|
| 101 | - 'path' => 'webResource/{id}', |
|
| 102 | - 'httpMethod' => 'PATCH', |
|
| 103 | - 'parameters' => array( |
|
| 104 | - 'id' => array( |
|
| 105 | - 'location' => 'path', |
|
| 106 | - 'type' => 'string', |
|
| 107 | - 'required' => true, |
|
| 108 | - ), |
|
| 109 | - ), |
|
| 110 | - ),'update' => array( |
|
| 111 | - 'path' => 'webResource/{id}', |
|
| 112 | - 'httpMethod' => 'PUT', |
|
| 113 | - 'parameters' => array( |
|
| 114 | - 'id' => array( |
|
| 115 | - 'location' => 'path', |
|
| 116 | - 'type' => 'string', |
|
| 117 | - 'required' => true, |
|
| 118 | - ), |
|
| 119 | - ), |
|
| 120 | - ), |
|
| 121 | - ) |
|
| 122 | - ) |
|
| 123 | - ); |
|
| 50 | + parent::__construct($client); |
|
| 51 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 52 | + $this->servicePath = 'siteVerification/v1/'; |
|
| 53 | + $this->version = 'v1'; |
|
| 54 | + $this->serviceName = 'siteVerification'; |
|
| 55 | + |
|
| 56 | + $this->webResource = new Google_Service_SiteVerification_WebResource_Resource( |
|
| 57 | + $this, |
|
| 58 | + $this->serviceName, |
|
| 59 | + 'webResource', |
|
| 60 | + array( |
|
| 61 | + 'methods' => array( |
|
| 62 | + 'delete' => array( |
|
| 63 | + 'path' => 'webResource/{id}', |
|
| 64 | + 'httpMethod' => 'DELETE', |
|
| 65 | + 'parameters' => array( |
|
| 66 | + 'id' => array( |
|
| 67 | + 'location' => 'path', |
|
| 68 | + 'type' => 'string', |
|
| 69 | + 'required' => true, |
|
| 70 | + ), |
|
| 71 | + ), |
|
| 72 | + ),'get' => array( |
|
| 73 | + 'path' => 'webResource/{id}', |
|
| 74 | + 'httpMethod' => 'GET', |
|
| 75 | + 'parameters' => array( |
|
| 76 | + 'id' => array( |
|
| 77 | + 'location' => 'path', |
|
| 78 | + 'type' => 'string', |
|
| 79 | + 'required' => true, |
|
| 80 | + ), |
|
| 81 | + ), |
|
| 82 | + ),'getToken' => array( |
|
| 83 | + 'path' => 'token', |
|
| 84 | + 'httpMethod' => 'POST', |
|
| 85 | + 'parameters' => array(), |
|
| 86 | + ),'insert' => array( |
|
| 87 | + 'path' => 'webResource', |
|
| 88 | + 'httpMethod' => 'POST', |
|
| 89 | + 'parameters' => array( |
|
| 90 | + 'verificationMethod' => array( |
|
| 91 | + 'location' => 'query', |
|
| 92 | + 'type' => 'string', |
|
| 93 | + 'required' => true, |
|
| 94 | + ), |
|
| 95 | + ), |
|
| 96 | + ),'list' => array( |
|
| 97 | + 'path' => 'webResource', |
|
| 98 | + 'httpMethod' => 'GET', |
|
| 99 | + 'parameters' => array(), |
|
| 100 | + ),'patch' => array( |
|
| 101 | + 'path' => 'webResource/{id}', |
|
| 102 | + 'httpMethod' => 'PATCH', |
|
| 103 | + 'parameters' => array( |
|
| 104 | + 'id' => array( |
|
| 105 | + 'location' => 'path', |
|
| 106 | + 'type' => 'string', |
|
| 107 | + 'required' => true, |
|
| 108 | + ), |
|
| 109 | + ), |
|
| 110 | + ),'update' => array( |
|
| 111 | + 'path' => 'webResource/{id}', |
|
| 112 | + 'httpMethod' => 'PUT', |
|
| 113 | + 'parameters' => array( |
|
| 114 | + 'id' => array( |
|
| 115 | + 'location' => 'path', |
|
| 116 | + 'type' => 'string', |
|
| 117 | + 'required' => true, |
|
| 118 | + ), |
|
| 119 | + ), |
|
| 120 | + ), |
|
| 121 | + ) |
|
| 122 | + ) |
|
| 123 | + ); |
|
| 124 | 124 | } |
| 125 | 125 | } |
| 126 | 126 | |
@@ -144,9 +144,9 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | public function delete($id, $optParams = array()) |
| 146 | 146 | { |
| 147 | - $params = array('id' => $id); |
|
| 148 | - $params = array_merge($params, $optParams); |
|
| 149 | - return $this->call('delete', array($params)); |
|
| 147 | + $params = array('id' => $id); |
|
| 148 | + $params = array_merge($params, $optParams); |
|
| 149 | + return $this->call('delete', array($params)); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | /** |
@@ -158,9 +158,9 @@ discard block |
||
| 158 | 158 | */ |
| 159 | 159 | public function get($id, $optParams = array()) |
| 160 | 160 | { |
| 161 | - $params = array('id' => $id); |
|
| 162 | - $params = array_merge($params, $optParams); |
|
| 163 | - return $this->call('get', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 161 | + $params = array('id' => $id); |
|
| 162 | + $params = array_merge($params, $optParams); |
|
| 163 | + return $this->call('get', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | /** |
@@ -173,9 +173,9 @@ discard block |
||
| 173 | 173 | */ |
| 174 | 174 | public function getToken(Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody, $optParams = array()) |
| 175 | 175 | { |
| 176 | - $params = array('postBody' => $postBody); |
|
| 177 | - $params = array_merge($params, $optParams); |
|
| 178 | - return $this->call('getToken', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse"); |
|
| 176 | + $params = array('postBody' => $postBody); |
|
| 177 | + $params = array_merge($params, $optParams); |
|
| 178 | + return $this->call('getToken', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse"); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -189,9 +189,9 @@ discard block |
||
| 189 | 189 | */ |
| 190 | 190 | public function insert($verificationMethod, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) |
| 191 | 191 | { |
| 192 | - $params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody); |
|
| 193 | - $params = array_merge($params, $optParams); |
|
| 194 | - return $this->call('insert', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 192 | + $params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody); |
|
| 193 | + $params = array_merge($params, $optParams); |
|
| 194 | + return $this->call('insert', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
@@ -203,9 +203,9 @@ discard block |
||
| 203 | 203 | */ |
| 204 | 204 | public function listWebResource($optParams = array()) |
| 205 | 205 | { |
| 206 | - $params = array(); |
|
| 207 | - $params = array_merge($params, $optParams); |
|
| 208 | - return $this->call('list', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceListResponse"); |
|
| 206 | + $params = array(); |
|
| 207 | + $params = array_merge($params, $optParams); |
|
| 208 | + return $this->call('list', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceListResponse"); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
@@ -219,9 +219,9 @@ discard block |
||
| 219 | 219 | */ |
| 220 | 220 | public function patch($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) |
| 221 | 221 | { |
| 222 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 223 | - $params = array_merge($params, $optParams); |
|
| 224 | - return $this->call('patch', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 222 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 223 | + $params = array_merge($params, $optParams); |
|
| 224 | + return $this->call('patch', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | /** |
@@ -234,9 +234,9 @@ discard block |
||
| 234 | 234 | */ |
| 235 | 235 | public function update($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array()) |
| 236 | 236 | { |
| 237 | - $params = array('id' => $id, 'postBody' => $postBody); |
|
| 238 | - $params = array_merge($params, $optParams); |
|
| 239 | - return $this->call('update', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 237 | + $params = array('id' => $id, 'postBody' => $postBody); |
|
| 238 | + $params = array_merge($params, $optParams); |
|
| 239 | + return $this->call('update', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource"); |
|
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | 242 | |
@@ -254,19 +254,19 @@ discard block |
||
| 254 | 254 | |
| 255 | 255 | public function setSite(Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite $site) |
| 256 | 256 | { |
| 257 | - $this->site = $site; |
|
| 257 | + $this->site = $site; |
|
| 258 | 258 | } |
| 259 | 259 | public function getSite() |
| 260 | 260 | { |
| 261 | - return $this->site; |
|
| 261 | + return $this->site; |
|
| 262 | 262 | } |
| 263 | 263 | public function setVerificationMethod($verificationMethod) |
| 264 | 264 | { |
| 265 | - $this->verificationMethod = $verificationMethod; |
|
| 265 | + $this->verificationMethod = $verificationMethod; |
|
| 266 | 266 | } |
| 267 | 267 | public function getVerificationMethod() |
| 268 | 268 | { |
| 269 | - return $this->verificationMethod; |
|
| 269 | + return $this->verificationMethod; |
|
| 270 | 270 | } |
| 271 | 271 | } |
| 272 | 272 | |
@@ -280,19 +280,19 @@ discard block |
||
| 280 | 280 | |
| 281 | 281 | public function setIdentifier($identifier) |
| 282 | 282 | { |
| 283 | - $this->identifier = $identifier; |
|
| 283 | + $this->identifier = $identifier; |
|
| 284 | 284 | } |
| 285 | 285 | public function getIdentifier() |
| 286 | 286 | { |
| 287 | - return $this->identifier; |
|
| 287 | + return $this->identifier; |
|
| 288 | 288 | } |
| 289 | 289 | public function setType($type) |
| 290 | 290 | { |
| 291 | - $this->type = $type; |
|
| 291 | + $this->type = $type; |
|
| 292 | 292 | } |
| 293 | 293 | public function getType() |
| 294 | 294 | { |
| 295 | - return $this->type; |
|
| 295 | + return $this->type; |
|
| 296 | 296 | } |
| 297 | 297 | } |
| 298 | 298 | |
@@ -306,19 +306,19 @@ discard block |
||
| 306 | 306 | |
| 307 | 307 | public function setMethod($method) |
| 308 | 308 | { |
| 309 | - $this->method = $method; |
|
| 309 | + $this->method = $method; |
|
| 310 | 310 | } |
| 311 | 311 | public function getMethod() |
| 312 | 312 | { |
| 313 | - return $this->method; |
|
| 313 | + return $this->method; |
|
| 314 | 314 | } |
| 315 | 315 | public function setToken($token) |
| 316 | 316 | { |
| 317 | - $this->token = $token; |
|
| 317 | + $this->token = $token; |
|
| 318 | 318 | } |
| 319 | 319 | public function getToken() |
| 320 | 320 | { |
| 321 | - return $this->token; |
|
| 321 | + return $this->token; |
|
| 322 | 322 | } |
| 323 | 323 | } |
| 324 | 324 | |
@@ -333,11 +333,11 @@ discard block |
||
| 333 | 333 | |
| 334 | 334 | public function setItems($items) |
| 335 | 335 | { |
| 336 | - $this->items = $items; |
|
| 336 | + $this->items = $items; |
|
| 337 | 337 | } |
| 338 | 338 | public function getItems() |
| 339 | 339 | { |
| 340 | - return $this->items; |
|
| 340 | + return $this->items; |
|
| 341 | 341 | } |
| 342 | 342 | } |
| 343 | 343 | |
@@ -354,27 +354,27 @@ discard block |
||
| 354 | 354 | |
| 355 | 355 | public function setId($id) |
| 356 | 356 | { |
| 357 | - $this->id = $id; |
|
| 357 | + $this->id = $id; |
|
| 358 | 358 | } |
| 359 | 359 | public function getId() |
| 360 | 360 | { |
| 361 | - return $this->id; |
|
| 361 | + return $this->id; |
|
| 362 | 362 | } |
| 363 | 363 | public function setOwners($owners) |
| 364 | 364 | { |
| 365 | - $this->owners = $owners; |
|
| 365 | + $this->owners = $owners; |
|
| 366 | 366 | } |
| 367 | 367 | public function getOwners() |
| 368 | 368 | { |
| 369 | - return $this->owners; |
|
| 369 | + return $this->owners; |
|
| 370 | 370 | } |
| 371 | 371 | public function setSite(Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite $site) |
| 372 | 372 | { |
| 373 | - $this->site = $site; |
|
| 373 | + $this->site = $site; |
|
| 374 | 374 | } |
| 375 | 375 | public function getSite() |
| 376 | 376 | { |
| 377 | - return $this->site; |
|
| 377 | + return $this->site; |
|
| 378 | 378 | } |
| 379 | 379 | } |
| 380 | 380 | |
@@ -388,18 +388,18 @@ discard block |
||
| 388 | 388 | |
| 389 | 389 | public function setIdentifier($identifier) |
| 390 | 390 | { |
| 391 | - $this->identifier = $identifier; |
|
| 391 | + $this->identifier = $identifier; |
|
| 392 | 392 | } |
| 393 | 393 | public function getIdentifier() |
| 394 | 394 | { |
| 395 | - return $this->identifier; |
|
| 395 | + return $this->identifier; |
|
| 396 | 396 | } |
| 397 | 397 | public function setType($type) |
| 398 | 398 | { |
| 399 | - $this->type = $type; |
|
| 399 | + $this->type = $type; |
|
| 400 | 400 | } |
| 401 | 401 | public function getType() |
| 402 | 402 | { |
| 403 | - return $this->type; |
|
| 403 | + return $this->type; |
|
| 404 | 404 | } |
| 405 | 405 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | 'required' => true, |
| 70 | 70 | ), |
| 71 | 71 | ), |
| 72 | - ),'get' => array( |
|
| 72 | + ), 'get' => array( |
|
| 73 | 73 | 'path' => 'webResource/{id}', |
| 74 | 74 | 'httpMethod' => 'GET', |
| 75 | 75 | 'parameters' => array( |
@@ -79,11 +79,11 @@ discard block |
||
| 79 | 79 | 'required' => true, |
| 80 | 80 | ), |
| 81 | 81 | ), |
| 82 | - ),'getToken' => array( |
|
| 82 | + ), 'getToken' => array( |
|
| 83 | 83 | 'path' => 'token', |
| 84 | 84 | 'httpMethod' => 'POST', |
| 85 | 85 | 'parameters' => array(), |
| 86 | - ),'insert' => array( |
|
| 86 | + ), 'insert' => array( |
|
| 87 | 87 | 'path' => 'webResource', |
| 88 | 88 | 'httpMethod' => 'POST', |
| 89 | 89 | 'parameters' => array( |
@@ -93,11 +93,11 @@ discard block |
||
| 93 | 93 | 'required' => true, |
| 94 | 94 | ), |
| 95 | 95 | ), |
| 96 | - ),'list' => array( |
|
| 96 | + ), 'list' => array( |
|
| 97 | 97 | 'path' => 'webResource', |
| 98 | 98 | 'httpMethod' => 'GET', |
| 99 | 99 | 'parameters' => array(), |
| 100 | - ),'patch' => array( |
|
| 100 | + ), 'patch' => array( |
|
| 101 | 101 | 'path' => 'webResource/{id}', |
| 102 | 102 | 'httpMethod' => 'PATCH', |
| 103 | 103 | 'parameters' => array( |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | 'required' => true, |
| 108 | 108 | ), |
| 109 | 109 | ), |
| 110 | - ),'update' => array( |
|
| 110 | + ), 'update' => array( |
|
| 111 | 111 | 'path' => 'webResource/{id}', |
| 112 | 112 | 'httpMethod' => 'PUT', |
| 113 | 113 | 'parameters' => array( |
@@ -32,22 +32,22 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** View your activity information in Google Fit. */ |
| 34 | 34 | const FITNESS_ACTIVITY_READ = |
| 35 | - "https://www.googleapis.com/auth/fitness.activity.read"; |
|
| 35 | + "https://www.googleapis.com/auth/fitness.activity.read"; |
|
| 36 | 36 | /** View and store your activity information in Google Fit. */ |
| 37 | 37 | const FITNESS_ACTIVITY_WRITE = |
| 38 | - "https://www.googleapis.com/auth/fitness.activity.write"; |
|
| 38 | + "https://www.googleapis.com/auth/fitness.activity.write"; |
|
| 39 | 39 | /** View body sensor information in Google Fit. */ |
| 40 | 40 | const FITNESS_BODY_READ = |
| 41 | - "https://www.googleapis.com/auth/fitness.body.read"; |
|
| 41 | + "https://www.googleapis.com/auth/fitness.body.read"; |
|
| 42 | 42 | /** View and store body sensor data in Google Fit. */ |
| 43 | 43 | const FITNESS_BODY_WRITE = |
| 44 | - "https://www.googleapis.com/auth/fitness.body.write"; |
|
| 44 | + "https://www.googleapis.com/auth/fitness.body.write"; |
|
| 45 | 45 | /** View your stored location data in Google Fit. */ |
| 46 | 46 | const FITNESS_LOCATION_READ = |
| 47 | - "https://www.googleapis.com/auth/fitness.location.read"; |
|
| 47 | + "https://www.googleapis.com/auth/fitness.location.read"; |
|
| 48 | 48 | /** View and store your location data in Google Fit. */ |
| 49 | 49 | const FITNESS_LOCATION_WRITE = |
| 50 | - "https://www.googleapis.com/auth/fitness.location.write"; |
|
| 50 | + "https://www.googleapis.com/auth/fitness.location.write"; |
|
| 51 | 51 | |
| 52 | 52 | public $users_dataSources; |
| 53 | 53 | public $users_dataSources_datasets; |
@@ -62,291 +62,291 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function __construct(Google_Client $client) |
| 64 | 64 | { |
| 65 | - parent::__construct($client); |
|
| 66 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 67 | - $this->servicePath = 'fitness/v1/users/'; |
|
| 68 | - $this->version = 'v1'; |
|
| 69 | - $this->serviceName = 'fitness'; |
|
| 70 | - |
|
| 71 | - $this->users_dataSources = new Google_Service_Fitness_UsersDataSources_Resource( |
|
| 72 | - $this, |
|
| 73 | - $this->serviceName, |
|
| 74 | - 'dataSources', |
|
| 75 | - array( |
|
| 76 | - 'methods' => array( |
|
| 77 | - 'create' => array( |
|
| 78 | - 'path' => '{userId}/dataSources', |
|
| 79 | - 'httpMethod' => 'POST', |
|
| 80 | - 'parameters' => array( |
|
| 81 | - 'userId' => array( |
|
| 82 | - 'location' => 'path', |
|
| 83 | - 'type' => 'string', |
|
| 84 | - 'required' => true, |
|
| 85 | - ), |
|
| 86 | - ), |
|
| 87 | - ),'delete' => array( |
|
| 88 | - 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 89 | - 'httpMethod' => 'DELETE', |
|
| 90 | - 'parameters' => array( |
|
| 91 | - 'userId' => array( |
|
| 92 | - 'location' => 'path', |
|
| 93 | - 'type' => 'string', |
|
| 94 | - 'required' => true, |
|
| 95 | - ), |
|
| 96 | - 'dataSourceId' => array( |
|
| 97 | - 'location' => 'path', |
|
| 98 | - 'type' => 'string', |
|
| 99 | - 'required' => true, |
|
| 100 | - ), |
|
| 101 | - ), |
|
| 102 | - ),'get' => array( |
|
| 103 | - 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 104 | - 'httpMethod' => 'GET', |
|
| 105 | - 'parameters' => array( |
|
| 106 | - 'userId' => array( |
|
| 107 | - 'location' => 'path', |
|
| 108 | - 'type' => 'string', |
|
| 109 | - 'required' => true, |
|
| 110 | - ), |
|
| 111 | - 'dataSourceId' => array( |
|
| 112 | - 'location' => 'path', |
|
| 113 | - 'type' => 'string', |
|
| 114 | - 'required' => true, |
|
| 115 | - ), |
|
| 116 | - ), |
|
| 117 | - ),'list' => array( |
|
| 118 | - 'path' => '{userId}/dataSources', |
|
| 119 | - 'httpMethod' => 'GET', |
|
| 120 | - 'parameters' => array( |
|
| 121 | - 'userId' => array( |
|
| 122 | - 'location' => 'path', |
|
| 123 | - 'type' => 'string', |
|
| 124 | - 'required' => true, |
|
| 125 | - ), |
|
| 126 | - 'dataTypeName' => array( |
|
| 127 | - 'location' => 'query', |
|
| 128 | - 'type' => 'string', |
|
| 129 | - 'repeated' => true, |
|
| 130 | - ), |
|
| 131 | - ), |
|
| 132 | - ),'patch' => array( |
|
| 133 | - 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 134 | - 'httpMethod' => 'PATCH', |
|
| 135 | - 'parameters' => array( |
|
| 136 | - 'userId' => array( |
|
| 137 | - 'location' => 'path', |
|
| 138 | - 'type' => 'string', |
|
| 139 | - 'required' => true, |
|
| 140 | - ), |
|
| 141 | - 'dataSourceId' => array( |
|
| 142 | - 'location' => 'path', |
|
| 143 | - 'type' => 'string', |
|
| 144 | - 'required' => true, |
|
| 145 | - ), |
|
| 146 | - ), |
|
| 147 | - ),'update' => array( |
|
| 148 | - 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 149 | - 'httpMethod' => 'PUT', |
|
| 150 | - 'parameters' => array( |
|
| 151 | - 'userId' => array( |
|
| 152 | - 'location' => 'path', |
|
| 153 | - 'type' => 'string', |
|
| 154 | - 'required' => true, |
|
| 155 | - ), |
|
| 156 | - 'dataSourceId' => array( |
|
| 157 | - 'location' => 'path', |
|
| 158 | - 'type' => 'string', |
|
| 159 | - 'required' => true, |
|
| 160 | - ), |
|
| 161 | - ), |
|
| 162 | - ), |
|
| 163 | - ) |
|
| 164 | - ) |
|
| 165 | - ); |
|
| 166 | - $this->users_dataSources_datasets = new Google_Service_Fitness_UsersDataSourcesDatasets_Resource( |
|
| 167 | - $this, |
|
| 168 | - $this->serviceName, |
|
| 169 | - 'datasets', |
|
| 170 | - array( |
|
| 171 | - 'methods' => array( |
|
| 172 | - 'delete' => array( |
|
| 173 | - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 174 | - 'httpMethod' => 'DELETE', |
|
| 175 | - 'parameters' => array( |
|
| 176 | - 'userId' => array( |
|
| 177 | - 'location' => 'path', |
|
| 178 | - 'type' => 'string', |
|
| 179 | - 'required' => true, |
|
| 180 | - ), |
|
| 181 | - 'dataSourceId' => array( |
|
| 182 | - 'location' => 'path', |
|
| 183 | - 'type' => 'string', |
|
| 184 | - 'required' => true, |
|
| 185 | - ), |
|
| 186 | - 'datasetId' => array( |
|
| 187 | - 'location' => 'path', |
|
| 188 | - 'type' => 'string', |
|
| 189 | - 'required' => true, |
|
| 190 | - ), |
|
| 191 | - 'modifiedTimeMillis' => array( |
|
| 192 | - 'location' => 'query', |
|
| 193 | - 'type' => 'string', |
|
| 194 | - ), |
|
| 195 | - 'currentTimeMillis' => array( |
|
| 196 | - 'location' => 'query', |
|
| 197 | - 'type' => 'string', |
|
| 198 | - ), |
|
| 199 | - ), |
|
| 200 | - ),'get' => array( |
|
| 201 | - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 202 | - 'httpMethod' => 'GET', |
|
| 203 | - 'parameters' => array( |
|
| 204 | - 'userId' => array( |
|
| 205 | - 'location' => 'path', |
|
| 206 | - 'type' => 'string', |
|
| 207 | - 'required' => true, |
|
| 208 | - ), |
|
| 209 | - 'dataSourceId' => array( |
|
| 210 | - 'location' => 'path', |
|
| 211 | - 'type' => 'string', |
|
| 212 | - 'required' => true, |
|
| 213 | - ), |
|
| 214 | - 'datasetId' => array( |
|
| 215 | - 'location' => 'path', |
|
| 216 | - 'type' => 'string', |
|
| 217 | - 'required' => true, |
|
| 218 | - ), |
|
| 219 | - 'limit' => array( |
|
| 220 | - 'location' => 'query', |
|
| 221 | - 'type' => 'integer', |
|
| 222 | - ), |
|
| 223 | - 'pageToken' => array( |
|
| 224 | - 'location' => 'query', |
|
| 225 | - 'type' => 'string', |
|
| 226 | - ), |
|
| 227 | - ), |
|
| 228 | - ),'patch' => array( |
|
| 229 | - 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 230 | - 'httpMethod' => 'PATCH', |
|
| 231 | - 'parameters' => array( |
|
| 232 | - 'userId' => array( |
|
| 233 | - 'location' => 'path', |
|
| 234 | - 'type' => 'string', |
|
| 235 | - 'required' => true, |
|
| 236 | - ), |
|
| 237 | - 'dataSourceId' => array( |
|
| 238 | - 'location' => 'path', |
|
| 239 | - 'type' => 'string', |
|
| 240 | - 'required' => true, |
|
| 241 | - ), |
|
| 242 | - 'datasetId' => array( |
|
| 243 | - 'location' => 'path', |
|
| 244 | - 'type' => 'string', |
|
| 245 | - 'required' => true, |
|
| 246 | - ), |
|
| 247 | - 'currentTimeMillis' => array( |
|
| 248 | - 'location' => 'query', |
|
| 249 | - 'type' => 'string', |
|
| 250 | - ), |
|
| 251 | - ), |
|
| 252 | - ), |
|
| 253 | - ) |
|
| 254 | - ) |
|
| 255 | - ); |
|
| 256 | - $this->users_dataset = new Google_Service_Fitness_UsersDataset_Resource( |
|
| 257 | - $this, |
|
| 258 | - $this->serviceName, |
|
| 259 | - 'dataset', |
|
| 260 | - array( |
|
| 261 | - 'methods' => array( |
|
| 262 | - 'aggregate' => array( |
|
| 263 | - 'path' => '{userId}/dataset:aggregate', |
|
| 264 | - 'httpMethod' => 'POST', |
|
| 265 | - 'parameters' => array( |
|
| 266 | - 'userId' => array( |
|
| 267 | - 'location' => 'path', |
|
| 268 | - 'type' => 'string', |
|
| 269 | - 'required' => true, |
|
| 270 | - ), |
|
| 271 | - ), |
|
| 272 | - ), |
|
| 273 | - ) |
|
| 274 | - ) |
|
| 275 | - ); |
|
| 276 | - $this->users_sessions = new Google_Service_Fitness_UsersSessions_Resource( |
|
| 277 | - $this, |
|
| 278 | - $this->serviceName, |
|
| 279 | - 'sessions', |
|
| 280 | - array( |
|
| 281 | - 'methods' => array( |
|
| 282 | - 'delete' => array( |
|
| 283 | - 'path' => '{userId}/sessions/{sessionId}', |
|
| 284 | - 'httpMethod' => 'DELETE', |
|
| 285 | - 'parameters' => array( |
|
| 286 | - 'userId' => array( |
|
| 287 | - 'location' => 'path', |
|
| 288 | - 'type' => 'string', |
|
| 289 | - 'required' => true, |
|
| 290 | - ), |
|
| 291 | - 'sessionId' => array( |
|
| 292 | - 'location' => 'path', |
|
| 293 | - 'type' => 'string', |
|
| 294 | - 'required' => true, |
|
| 295 | - ), |
|
| 296 | - 'currentTimeMillis' => array( |
|
| 297 | - 'location' => 'query', |
|
| 298 | - 'type' => 'string', |
|
| 299 | - ), |
|
| 300 | - ), |
|
| 301 | - ),'list' => array( |
|
| 302 | - 'path' => '{userId}/sessions', |
|
| 303 | - 'httpMethod' => 'GET', |
|
| 304 | - 'parameters' => array( |
|
| 305 | - 'userId' => array( |
|
| 306 | - 'location' => 'path', |
|
| 307 | - 'type' => 'string', |
|
| 308 | - 'required' => true, |
|
| 309 | - ), |
|
| 310 | - 'pageToken' => array( |
|
| 311 | - 'location' => 'query', |
|
| 312 | - 'type' => 'string', |
|
| 313 | - ), |
|
| 314 | - 'endTime' => array( |
|
| 315 | - 'location' => 'query', |
|
| 316 | - 'type' => 'string', |
|
| 317 | - ), |
|
| 318 | - 'includeDeleted' => array( |
|
| 319 | - 'location' => 'query', |
|
| 320 | - 'type' => 'boolean', |
|
| 321 | - ), |
|
| 322 | - 'startTime' => array( |
|
| 323 | - 'location' => 'query', |
|
| 324 | - 'type' => 'string', |
|
| 325 | - ), |
|
| 326 | - ), |
|
| 327 | - ),'update' => array( |
|
| 328 | - 'path' => '{userId}/sessions/{sessionId}', |
|
| 329 | - 'httpMethod' => 'PUT', |
|
| 330 | - 'parameters' => array( |
|
| 331 | - 'userId' => array( |
|
| 332 | - 'location' => 'path', |
|
| 333 | - 'type' => 'string', |
|
| 334 | - 'required' => true, |
|
| 335 | - ), |
|
| 336 | - 'sessionId' => array( |
|
| 337 | - 'location' => 'path', |
|
| 338 | - 'type' => 'string', |
|
| 339 | - 'required' => true, |
|
| 340 | - ), |
|
| 341 | - 'currentTimeMillis' => array( |
|
| 342 | - 'location' => 'query', |
|
| 343 | - 'type' => 'string', |
|
| 344 | - ), |
|
| 345 | - ), |
|
| 346 | - ), |
|
| 347 | - ) |
|
| 348 | - ) |
|
| 349 | - ); |
|
| 65 | + parent::__construct($client); |
|
| 66 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 67 | + $this->servicePath = 'fitness/v1/users/'; |
|
| 68 | + $this->version = 'v1'; |
|
| 69 | + $this->serviceName = 'fitness'; |
|
| 70 | + |
|
| 71 | + $this->users_dataSources = new Google_Service_Fitness_UsersDataSources_Resource( |
|
| 72 | + $this, |
|
| 73 | + $this->serviceName, |
|
| 74 | + 'dataSources', |
|
| 75 | + array( |
|
| 76 | + 'methods' => array( |
|
| 77 | + 'create' => array( |
|
| 78 | + 'path' => '{userId}/dataSources', |
|
| 79 | + 'httpMethod' => 'POST', |
|
| 80 | + 'parameters' => array( |
|
| 81 | + 'userId' => array( |
|
| 82 | + 'location' => 'path', |
|
| 83 | + 'type' => 'string', |
|
| 84 | + 'required' => true, |
|
| 85 | + ), |
|
| 86 | + ), |
|
| 87 | + ),'delete' => array( |
|
| 88 | + 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 89 | + 'httpMethod' => 'DELETE', |
|
| 90 | + 'parameters' => array( |
|
| 91 | + 'userId' => array( |
|
| 92 | + 'location' => 'path', |
|
| 93 | + 'type' => 'string', |
|
| 94 | + 'required' => true, |
|
| 95 | + ), |
|
| 96 | + 'dataSourceId' => array( |
|
| 97 | + 'location' => 'path', |
|
| 98 | + 'type' => 'string', |
|
| 99 | + 'required' => true, |
|
| 100 | + ), |
|
| 101 | + ), |
|
| 102 | + ),'get' => array( |
|
| 103 | + 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 104 | + 'httpMethod' => 'GET', |
|
| 105 | + 'parameters' => array( |
|
| 106 | + 'userId' => array( |
|
| 107 | + 'location' => 'path', |
|
| 108 | + 'type' => 'string', |
|
| 109 | + 'required' => true, |
|
| 110 | + ), |
|
| 111 | + 'dataSourceId' => array( |
|
| 112 | + 'location' => 'path', |
|
| 113 | + 'type' => 'string', |
|
| 114 | + 'required' => true, |
|
| 115 | + ), |
|
| 116 | + ), |
|
| 117 | + ),'list' => array( |
|
| 118 | + 'path' => '{userId}/dataSources', |
|
| 119 | + 'httpMethod' => 'GET', |
|
| 120 | + 'parameters' => array( |
|
| 121 | + 'userId' => array( |
|
| 122 | + 'location' => 'path', |
|
| 123 | + 'type' => 'string', |
|
| 124 | + 'required' => true, |
|
| 125 | + ), |
|
| 126 | + 'dataTypeName' => array( |
|
| 127 | + 'location' => 'query', |
|
| 128 | + 'type' => 'string', |
|
| 129 | + 'repeated' => true, |
|
| 130 | + ), |
|
| 131 | + ), |
|
| 132 | + ),'patch' => array( |
|
| 133 | + 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 134 | + 'httpMethod' => 'PATCH', |
|
| 135 | + 'parameters' => array( |
|
| 136 | + 'userId' => array( |
|
| 137 | + 'location' => 'path', |
|
| 138 | + 'type' => 'string', |
|
| 139 | + 'required' => true, |
|
| 140 | + ), |
|
| 141 | + 'dataSourceId' => array( |
|
| 142 | + 'location' => 'path', |
|
| 143 | + 'type' => 'string', |
|
| 144 | + 'required' => true, |
|
| 145 | + ), |
|
| 146 | + ), |
|
| 147 | + ),'update' => array( |
|
| 148 | + 'path' => '{userId}/dataSources/{dataSourceId}', |
|
| 149 | + 'httpMethod' => 'PUT', |
|
| 150 | + 'parameters' => array( |
|
| 151 | + 'userId' => array( |
|
| 152 | + 'location' => 'path', |
|
| 153 | + 'type' => 'string', |
|
| 154 | + 'required' => true, |
|
| 155 | + ), |
|
| 156 | + 'dataSourceId' => array( |
|
| 157 | + 'location' => 'path', |
|
| 158 | + 'type' => 'string', |
|
| 159 | + 'required' => true, |
|
| 160 | + ), |
|
| 161 | + ), |
|
| 162 | + ), |
|
| 163 | + ) |
|
| 164 | + ) |
|
| 165 | + ); |
|
| 166 | + $this->users_dataSources_datasets = new Google_Service_Fitness_UsersDataSourcesDatasets_Resource( |
|
| 167 | + $this, |
|
| 168 | + $this->serviceName, |
|
| 169 | + 'datasets', |
|
| 170 | + array( |
|
| 171 | + 'methods' => array( |
|
| 172 | + 'delete' => array( |
|
| 173 | + 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 174 | + 'httpMethod' => 'DELETE', |
|
| 175 | + 'parameters' => array( |
|
| 176 | + 'userId' => array( |
|
| 177 | + 'location' => 'path', |
|
| 178 | + 'type' => 'string', |
|
| 179 | + 'required' => true, |
|
| 180 | + ), |
|
| 181 | + 'dataSourceId' => array( |
|
| 182 | + 'location' => 'path', |
|
| 183 | + 'type' => 'string', |
|
| 184 | + 'required' => true, |
|
| 185 | + ), |
|
| 186 | + 'datasetId' => array( |
|
| 187 | + 'location' => 'path', |
|
| 188 | + 'type' => 'string', |
|
| 189 | + 'required' => true, |
|
| 190 | + ), |
|
| 191 | + 'modifiedTimeMillis' => array( |
|
| 192 | + 'location' => 'query', |
|
| 193 | + 'type' => 'string', |
|
| 194 | + ), |
|
| 195 | + 'currentTimeMillis' => array( |
|
| 196 | + 'location' => 'query', |
|
| 197 | + 'type' => 'string', |
|
| 198 | + ), |
|
| 199 | + ), |
|
| 200 | + ),'get' => array( |
|
| 201 | + 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 202 | + 'httpMethod' => 'GET', |
|
| 203 | + 'parameters' => array( |
|
| 204 | + 'userId' => array( |
|
| 205 | + 'location' => 'path', |
|
| 206 | + 'type' => 'string', |
|
| 207 | + 'required' => true, |
|
| 208 | + ), |
|
| 209 | + 'dataSourceId' => array( |
|
| 210 | + 'location' => 'path', |
|
| 211 | + 'type' => 'string', |
|
| 212 | + 'required' => true, |
|
| 213 | + ), |
|
| 214 | + 'datasetId' => array( |
|
| 215 | + 'location' => 'path', |
|
| 216 | + 'type' => 'string', |
|
| 217 | + 'required' => true, |
|
| 218 | + ), |
|
| 219 | + 'limit' => array( |
|
| 220 | + 'location' => 'query', |
|
| 221 | + 'type' => 'integer', |
|
| 222 | + ), |
|
| 223 | + 'pageToken' => array( |
|
| 224 | + 'location' => 'query', |
|
| 225 | + 'type' => 'string', |
|
| 226 | + ), |
|
| 227 | + ), |
|
| 228 | + ),'patch' => array( |
|
| 229 | + 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
|
| 230 | + 'httpMethod' => 'PATCH', |
|
| 231 | + 'parameters' => array( |
|
| 232 | + 'userId' => array( |
|
| 233 | + 'location' => 'path', |
|
| 234 | + 'type' => 'string', |
|
| 235 | + 'required' => true, |
|
| 236 | + ), |
|
| 237 | + 'dataSourceId' => array( |
|
| 238 | + 'location' => 'path', |
|
| 239 | + 'type' => 'string', |
|
| 240 | + 'required' => true, |
|
| 241 | + ), |
|
| 242 | + 'datasetId' => array( |
|
| 243 | + 'location' => 'path', |
|
| 244 | + 'type' => 'string', |
|
| 245 | + 'required' => true, |
|
| 246 | + ), |
|
| 247 | + 'currentTimeMillis' => array( |
|
| 248 | + 'location' => 'query', |
|
| 249 | + 'type' => 'string', |
|
| 250 | + ), |
|
| 251 | + ), |
|
| 252 | + ), |
|
| 253 | + ) |
|
| 254 | + ) |
|
| 255 | + ); |
|
| 256 | + $this->users_dataset = new Google_Service_Fitness_UsersDataset_Resource( |
|
| 257 | + $this, |
|
| 258 | + $this->serviceName, |
|
| 259 | + 'dataset', |
|
| 260 | + array( |
|
| 261 | + 'methods' => array( |
|
| 262 | + 'aggregate' => array( |
|
| 263 | + 'path' => '{userId}/dataset:aggregate', |
|
| 264 | + 'httpMethod' => 'POST', |
|
| 265 | + 'parameters' => array( |
|
| 266 | + 'userId' => array( |
|
| 267 | + 'location' => 'path', |
|
| 268 | + 'type' => 'string', |
|
| 269 | + 'required' => true, |
|
| 270 | + ), |
|
| 271 | + ), |
|
| 272 | + ), |
|
| 273 | + ) |
|
| 274 | + ) |
|
| 275 | + ); |
|
| 276 | + $this->users_sessions = new Google_Service_Fitness_UsersSessions_Resource( |
|
| 277 | + $this, |
|
| 278 | + $this->serviceName, |
|
| 279 | + 'sessions', |
|
| 280 | + array( |
|
| 281 | + 'methods' => array( |
|
| 282 | + 'delete' => array( |
|
| 283 | + 'path' => '{userId}/sessions/{sessionId}', |
|
| 284 | + 'httpMethod' => 'DELETE', |
|
| 285 | + 'parameters' => array( |
|
| 286 | + 'userId' => array( |
|
| 287 | + 'location' => 'path', |
|
| 288 | + 'type' => 'string', |
|
| 289 | + 'required' => true, |
|
| 290 | + ), |
|
| 291 | + 'sessionId' => array( |
|
| 292 | + 'location' => 'path', |
|
| 293 | + 'type' => 'string', |
|
| 294 | + 'required' => true, |
|
| 295 | + ), |
|
| 296 | + 'currentTimeMillis' => array( |
|
| 297 | + 'location' => 'query', |
|
| 298 | + 'type' => 'string', |
|
| 299 | + ), |
|
| 300 | + ), |
|
| 301 | + ),'list' => array( |
|
| 302 | + 'path' => '{userId}/sessions', |
|
| 303 | + 'httpMethod' => 'GET', |
|
| 304 | + 'parameters' => array( |
|
| 305 | + 'userId' => array( |
|
| 306 | + 'location' => 'path', |
|
| 307 | + 'type' => 'string', |
|
| 308 | + 'required' => true, |
|
| 309 | + ), |
|
| 310 | + 'pageToken' => array( |
|
| 311 | + 'location' => 'query', |
|
| 312 | + 'type' => 'string', |
|
| 313 | + ), |
|
| 314 | + 'endTime' => array( |
|
| 315 | + 'location' => 'query', |
|
| 316 | + 'type' => 'string', |
|
| 317 | + ), |
|
| 318 | + 'includeDeleted' => array( |
|
| 319 | + 'location' => 'query', |
|
| 320 | + 'type' => 'boolean', |
|
| 321 | + ), |
|
| 322 | + 'startTime' => array( |
|
| 323 | + 'location' => 'query', |
|
| 324 | + 'type' => 'string', |
|
| 325 | + ), |
|
| 326 | + ), |
|
| 327 | + ),'update' => array( |
|
| 328 | + 'path' => '{userId}/sessions/{sessionId}', |
|
| 329 | + 'httpMethod' => 'PUT', |
|
| 330 | + 'parameters' => array( |
|
| 331 | + 'userId' => array( |
|
| 332 | + 'location' => 'path', |
|
| 333 | + 'type' => 'string', |
|
| 334 | + 'required' => true, |
|
| 335 | + ), |
|
| 336 | + 'sessionId' => array( |
|
| 337 | + 'location' => 'path', |
|
| 338 | + 'type' => 'string', |
|
| 339 | + 'required' => true, |
|
| 340 | + ), |
|
| 341 | + 'currentTimeMillis' => array( |
|
| 342 | + 'location' => 'query', |
|
| 343 | + 'type' => 'string', |
|
| 344 | + ), |
|
| 345 | + ), |
|
| 346 | + ), |
|
| 347 | + ) |
|
| 348 | + ) |
|
| 349 | + ); |
|
| 350 | 350 | } |
| 351 | 351 | } |
| 352 | 352 | |
@@ -392,9 +392,9 @@ discard block |
||
| 392 | 392 | */ |
| 393 | 393 | public function create($userId, Google_Service_Fitness_DataSource $postBody, $optParams = array()) |
| 394 | 394 | { |
| 395 | - $params = array('userId' => $userId, 'postBody' => $postBody); |
|
| 396 | - $params = array_merge($params, $optParams); |
|
| 397 | - return $this->call('create', array($params), "Google_Service_Fitness_DataSource"); |
|
| 395 | + $params = array('userId' => $userId, 'postBody' => $postBody); |
|
| 396 | + $params = array_merge($params, $optParams); |
|
| 397 | + return $this->call('create', array($params), "Google_Service_Fitness_DataSource"); |
|
| 398 | 398 | } |
| 399 | 399 | |
| 400 | 400 | /** |
@@ -409,9 +409,9 @@ discard block |
||
| 409 | 409 | */ |
| 410 | 410 | public function delete($userId, $dataSourceId, $optParams = array()) |
| 411 | 411 | { |
| 412 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); |
|
| 413 | - $params = array_merge($params, $optParams); |
|
| 414 | - return $this->call('delete', array($params), "Google_Service_Fitness_DataSource"); |
|
| 412 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); |
|
| 413 | + $params = array_merge($params, $optParams); |
|
| 414 | + return $this->call('delete', array($params), "Google_Service_Fitness_DataSource"); |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | 417 | /** |
@@ -426,9 +426,9 @@ discard block |
||
| 426 | 426 | */ |
| 427 | 427 | public function get($userId, $dataSourceId, $optParams = array()) |
| 428 | 428 | { |
| 429 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); |
|
| 430 | - $params = array_merge($params, $optParams); |
|
| 431 | - return $this->call('get', array($params), "Google_Service_Fitness_DataSource"); |
|
| 429 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId); |
|
| 430 | + $params = array_merge($params, $optParams); |
|
| 431 | + return $this->call('get', array($params), "Google_Service_Fitness_DataSource"); |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | /** |
@@ -447,9 +447,9 @@ discard block |
||
| 447 | 447 | */ |
| 448 | 448 | public function listUsersDataSources($userId, $optParams = array()) |
| 449 | 449 | { |
| 450 | - $params = array('userId' => $userId); |
|
| 451 | - $params = array_merge($params, $optParams); |
|
| 452 | - return $this->call('list', array($params), "Google_Service_Fitness_ListDataSourcesResponse"); |
|
| 450 | + $params = array('userId' => $userId); |
|
| 451 | + $params = array_merge($params, $optParams); |
|
| 452 | + return $this->call('list', array($params), "Google_Service_Fitness_ListDataSourcesResponse"); |
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | /** |
@@ -470,9 +470,9 @@ discard block |
||
| 470 | 470 | */ |
| 471 | 471 | public function patch($userId, $dataSourceId, Google_Service_Fitness_DataSource $postBody, $optParams = array()) |
| 472 | 472 | { |
| 473 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody); |
|
| 474 | - $params = array_merge($params, $optParams); |
|
| 475 | - return $this->call('patch', array($params), "Google_Service_Fitness_DataSource"); |
|
| 473 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody); |
|
| 474 | + $params = array_merge($params, $optParams); |
|
| 475 | + return $this->call('patch', array($params), "Google_Service_Fitness_DataSource"); |
|
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | /** |
@@ -492,9 +492,9 @@ discard block |
||
| 492 | 492 | */ |
| 493 | 493 | public function update($userId, $dataSourceId, Google_Service_Fitness_DataSource $postBody, $optParams = array()) |
| 494 | 494 | { |
| 495 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody); |
|
| 496 | - $params = array_merge($params, $optParams); |
|
| 497 | - return $this->call('update', array($params), "Google_Service_Fitness_DataSource"); |
|
| 495 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'postBody' => $postBody); |
|
| 496 | + $params = array_merge($params, $optParams); |
|
| 497 | + return $this->call('update', array($params), "Google_Service_Fitness_DataSource"); |
|
| 498 | 498 | } |
| 499 | 499 | } |
| 500 | 500 | |
@@ -535,9 +535,9 @@ discard block |
||
| 535 | 535 | */ |
| 536 | 536 | public function delete($userId, $dataSourceId, $datasetId, $optParams = array()) |
| 537 | 537 | { |
| 538 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); |
|
| 539 | - $params = array_merge($params, $optParams); |
|
| 540 | - return $this->call('delete', array($params)); |
|
| 538 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); |
|
| 539 | + $params = array_merge($params, $optParams); |
|
| 540 | + return $this->call('delete', array($params)); |
|
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | /** |
@@ -569,9 +569,9 @@ discard block |
||
| 569 | 569 | */ |
| 570 | 570 | public function get($userId, $dataSourceId, $datasetId, $optParams = array()) |
| 571 | 571 | { |
| 572 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); |
|
| 573 | - $params = array_merge($params, $optParams); |
|
| 574 | - return $this->call('get', array($params), "Google_Service_Fitness_Dataset"); |
|
| 572 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId); |
|
| 573 | + $params = array_merge($params, $optParams); |
|
| 574 | + return $this->call('get', array($params), "Google_Service_Fitness_Dataset"); |
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | 577 | /** |
@@ -598,9 +598,9 @@ discard block |
||
| 598 | 598 | */ |
| 599 | 599 | public function patch($userId, $dataSourceId, $datasetId, Google_Service_Fitness_Dataset $postBody, $optParams = array()) |
| 600 | 600 | { |
| 601 | - $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId, 'postBody' => $postBody); |
|
| 602 | - $params = array_merge($params, $optParams); |
|
| 603 | - return $this->call('patch', array($params), "Google_Service_Fitness_Dataset"); |
|
| 601 | + $params = array('userId' => $userId, 'dataSourceId' => $dataSourceId, 'datasetId' => $datasetId, 'postBody' => $postBody); |
|
| 602 | + $params = array_merge($params, $optParams); |
|
| 603 | + return $this->call('patch', array($params), "Google_Service_Fitness_Dataset"); |
|
| 604 | 604 | } |
| 605 | 605 | } |
| 606 | 606 | /** |
@@ -624,9 +624,9 @@ discard block |
||
| 624 | 624 | */ |
| 625 | 625 | public function aggregate($userId, Google_Service_Fitness_AggregateRequest $postBody, $optParams = array()) |
| 626 | 626 | { |
| 627 | - $params = array('userId' => $userId, 'postBody' => $postBody); |
|
| 628 | - $params = array_merge($params, $optParams); |
|
| 629 | - return $this->call('aggregate', array($params), "Google_Service_Fitness_AggregateResponse"); |
|
| 627 | + $params = array('userId' => $userId, 'postBody' => $postBody); |
|
| 628 | + $params = array_merge($params, $optParams); |
|
| 629 | + return $this->call('aggregate', array($params), "Google_Service_Fitness_AggregateResponse"); |
|
| 630 | 630 | } |
| 631 | 631 | } |
| 632 | 632 | /** |
@@ -653,9 +653,9 @@ discard block |
||
| 653 | 653 | */ |
| 654 | 654 | public function delete($userId, $sessionId, $optParams = array()) |
| 655 | 655 | { |
| 656 | - $params = array('userId' => $userId, 'sessionId' => $sessionId); |
|
| 657 | - $params = array_merge($params, $optParams); |
|
| 658 | - return $this->call('delete', array($params)); |
|
| 656 | + $params = array('userId' => $userId, 'sessionId' => $sessionId); |
|
| 657 | + $params = array_merge($params, $optParams); |
|
| 658 | + return $this->call('delete', array($params)); |
|
| 659 | 659 | } |
| 660 | 660 | |
| 661 | 661 | /** |
@@ -679,9 +679,9 @@ discard block |
||
| 679 | 679 | */ |
| 680 | 680 | public function listUsersSessions($userId, $optParams = array()) |
| 681 | 681 | { |
| 682 | - $params = array('userId' => $userId); |
|
| 683 | - $params = array_merge($params, $optParams); |
|
| 684 | - return $this->call('list', array($params), "Google_Service_Fitness_ListSessionsResponse"); |
|
| 682 | + $params = array('userId' => $userId); |
|
| 683 | + $params = array_merge($params, $optParams); |
|
| 684 | + return $this->call('list', array($params), "Google_Service_Fitness_ListSessionsResponse"); |
|
| 685 | 685 | } |
| 686 | 686 | |
| 687 | 687 | /** |
@@ -699,9 +699,9 @@ discard block |
||
| 699 | 699 | */ |
| 700 | 700 | public function update($userId, $sessionId, Google_Service_Fitness_Session $postBody, $optParams = array()) |
| 701 | 701 | { |
| 702 | - $params = array('userId' => $userId, 'sessionId' => $sessionId, 'postBody' => $postBody); |
|
| 703 | - $params = array_merge($params, $optParams); |
|
| 704 | - return $this->call('update', array($params), "Google_Service_Fitness_Session"); |
|
| 702 | + $params = array('userId' => $userId, 'sessionId' => $sessionId, 'postBody' => $postBody); |
|
| 703 | + $params = array_merge($params, $optParams); |
|
| 704 | + return $this->call('update', array($params), "Google_Service_Fitness_Session"); |
|
| 705 | 705 | } |
| 706 | 706 | } |
| 707 | 707 | |
@@ -725,51 +725,51 @@ discard block |
||
| 725 | 725 | |
| 726 | 726 | public function setActivity($activity) |
| 727 | 727 | { |
| 728 | - $this->activity = $activity; |
|
| 728 | + $this->activity = $activity; |
|
| 729 | 729 | } |
| 730 | 730 | public function getActivity() |
| 731 | 731 | { |
| 732 | - return $this->activity; |
|
| 732 | + return $this->activity; |
|
| 733 | 733 | } |
| 734 | 734 | public function setDataset($dataset) |
| 735 | 735 | { |
| 736 | - $this->dataset = $dataset; |
|
| 736 | + $this->dataset = $dataset; |
|
| 737 | 737 | } |
| 738 | 738 | public function getDataset() |
| 739 | 739 | { |
| 740 | - return $this->dataset; |
|
| 740 | + return $this->dataset; |
|
| 741 | 741 | } |
| 742 | 742 | public function setEndTimeMillis($endTimeMillis) |
| 743 | 743 | { |
| 744 | - $this->endTimeMillis = $endTimeMillis; |
|
| 744 | + $this->endTimeMillis = $endTimeMillis; |
|
| 745 | 745 | } |
| 746 | 746 | public function getEndTimeMillis() |
| 747 | 747 | { |
| 748 | - return $this->endTimeMillis; |
|
| 748 | + return $this->endTimeMillis; |
|
| 749 | 749 | } |
| 750 | 750 | public function setSession(Google_Service_Fitness_Session $session) |
| 751 | 751 | { |
| 752 | - $this->session = $session; |
|
| 752 | + $this->session = $session; |
|
| 753 | 753 | } |
| 754 | 754 | public function getSession() |
| 755 | 755 | { |
| 756 | - return $this->session; |
|
| 756 | + return $this->session; |
|
| 757 | 757 | } |
| 758 | 758 | public function setStartTimeMillis($startTimeMillis) |
| 759 | 759 | { |
| 760 | - $this->startTimeMillis = $startTimeMillis; |
|
| 760 | + $this->startTimeMillis = $startTimeMillis; |
|
| 761 | 761 | } |
| 762 | 762 | public function getStartTimeMillis() |
| 763 | 763 | { |
| 764 | - return $this->startTimeMillis; |
|
| 764 | + return $this->startTimeMillis; |
|
| 765 | 765 | } |
| 766 | 766 | public function setType($type) |
| 767 | 767 | { |
| 768 | - $this->type = $type; |
|
| 768 | + $this->type = $type; |
|
| 769 | 769 | } |
| 770 | 770 | public function getType() |
| 771 | 771 | { |
| 772 | - return $this->type; |
|
| 772 | + return $this->type; |
|
| 773 | 773 | } |
| 774 | 774 | } |
| 775 | 775 | |
@@ -785,35 +785,35 @@ discard block |
||
| 785 | 785 | |
| 786 | 786 | public function setDataSourceId($dataSourceId) |
| 787 | 787 | { |
| 788 | - $this->dataSourceId = $dataSourceId; |
|
| 788 | + $this->dataSourceId = $dataSourceId; |
|
| 789 | 789 | } |
| 790 | 790 | public function getDataSourceId() |
| 791 | 791 | { |
| 792 | - return $this->dataSourceId; |
|
| 792 | + return $this->dataSourceId; |
|
| 793 | 793 | } |
| 794 | 794 | public function setDataTypeName($dataTypeName) |
| 795 | 795 | { |
| 796 | - $this->dataTypeName = $dataTypeName; |
|
| 796 | + $this->dataTypeName = $dataTypeName; |
|
| 797 | 797 | } |
| 798 | 798 | public function getDataTypeName() |
| 799 | 799 | { |
| 800 | - return $this->dataTypeName; |
|
| 800 | + return $this->dataTypeName; |
|
| 801 | 801 | } |
| 802 | 802 | public function setOutputDataSourceId($outputDataSourceId) |
| 803 | 803 | { |
| 804 | - $this->outputDataSourceId = $outputDataSourceId; |
|
| 804 | + $this->outputDataSourceId = $outputDataSourceId; |
|
| 805 | 805 | } |
| 806 | 806 | public function getOutputDataSourceId() |
| 807 | 807 | { |
| 808 | - return $this->outputDataSourceId; |
|
| 808 | + return $this->outputDataSourceId; |
|
| 809 | 809 | } |
| 810 | 810 | public function setOutputDataTypeName($outputDataTypeName) |
| 811 | 811 | { |
| 812 | - $this->outputDataTypeName = $outputDataTypeName; |
|
| 812 | + $this->outputDataTypeName = $outputDataTypeName; |
|
| 813 | 813 | } |
| 814 | 814 | public function getOutputDataTypeName() |
| 815 | 815 | { |
| 816 | - return $this->outputDataTypeName; |
|
| 816 | + return $this->outputDataTypeName; |
|
| 817 | 817 | } |
| 818 | 818 | } |
| 819 | 819 | |
@@ -838,59 +838,59 @@ discard block |
||
| 838 | 838 | |
| 839 | 839 | public function setAggregateBy($aggregateBy) |
| 840 | 840 | { |
| 841 | - $this->aggregateBy = $aggregateBy; |
|
| 841 | + $this->aggregateBy = $aggregateBy; |
|
| 842 | 842 | } |
| 843 | 843 | public function getAggregateBy() |
| 844 | 844 | { |
| 845 | - return $this->aggregateBy; |
|
| 845 | + return $this->aggregateBy; |
|
| 846 | 846 | } |
| 847 | 847 | public function setBucketByActivitySegment(Google_Service_Fitness_BucketByActivity $bucketByActivitySegment) |
| 848 | 848 | { |
| 849 | - $this->bucketByActivitySegment = $bucketByActivitySegment; |
|
| 849 | + $this->bucketByActivitySegment = $bucketByActivitySegment; |
|
| 850 | 850 | } |
| 851 | 851 | public function getBucketByActivitySegment() |
| 852 | 852 | { |
| 853 | - return $this->bucketByActivitySegment; |
|
| 853 | + return $this->bucketByActivitySegment; |
|
| 854 | 854 | } |
| 855 | 855 | public function setBucketByActivityType(Google_Service_Fitness_BucketByActivity $bucketByActivityType) |
| 856 | 856 | { |
| 857 | - $this->bucketByActivityType = $bucketByActivityType; |
|
| 857 | + $this->bucketByActivityType = $bucketByActivityType; |
|
| 858 | 858 | } |
| 859 | 859 | public function getBucketByActivityType() |
| 860 | 860 | { |
| 861 | - return $this->bucketByActivityType; |
|
| 861 | + return $this->bucketByActivityType; |
|
| 862 | 862 | } |
| 863 | 863 | public function setBucketBySession(Google_Service_Fitness_BucketBySession $bucketBySession) |
| 864 | 864 | { |
| 865 | - $this->bucketBySession = $bucketBySession; |
|
| 865 | + $this->bucketBySession = $bucketBySession; |
|
| 866 | 866 | } |
| 867 | 867 | public function getBucketBySession() |
| 868 | 868 | { |
| 869 | - return $this->bucketBySession; |
|
| 869 | + return $this->bucketBySession; |
|
| 870 | 870 | } |
| 871 | 871 | public function setBucketByTime(Google_Service_Fitness_BucketByTime $bucketByTime) |
| 872 | 872 | { |
| 873 | - $this->bucketByTime = $bucketByTime; |
|
| 873 | + $this->bucketByTime = $bucketByTime; |
|
| 874 | 874 | } |
| 875 | 875 | public function getBucketByTime() |
| 876 | 876 | { |
| 877 | - return $this->bucketByTime; |
|
| 877 | + return $this->bucketByTime; |
|
| 878 | 878 | } |
| 879 | 879 | public function setEndTimeMillis($endTimeMillis) |
| 880 | 880 | { |
| 881 | - $this->endTimeMillis = $endTimeMillis; |
|
| 881 | + $this->endTimeMillis = $endTimeMillis; |
|
| 882 | 882 | } |
| 883 | 883 | public function getEndTimeMillis() |
| 884 | 884 | { |
| 885 | - return $this->endTimeMillis; |
|
| 885 | + return $this->endTimeMillis; |
|
| 886 | 886 | } |
| 887 | 887 | public function setStartTimeMillis($startTimeMillis) |
| 888 | 888 | { |
| 889 | - $this->startTimeMillis = $startTimeMillis; |
|
| 889 | + $this->startTimeMillis = $startTimeMillis; |
|
| 890 | 890 | } |
| 891 | 891 | public function getStartTimeMillis() |
| 892 | 892 | { |
| 893 | - return $this->startTimeMillis; |
|
| 893 | + return $this->startTimeMillis; |
|
| 894 | 894 | } |
| 895 | 895 | } |
| 896 | 896 | |
@@ -905,11 +905,11 @@ discard block |
||
| 905 | 905 | |
| 906 | 906 | public function setBucket($bucket) |
| 907 | 907 | { |
| 908 | - $this->bucket = $bucket; |
|
| 908 | + $this->bucket = $bucket; |
|
| 909 | 909 | } |
| 910 | 910 | public function getBucket() |
| 911 | 911 | { |
| 912 | - return $this->bucket; |
|
| 912 | + return $this->bucket; |
|
| 913 | 913 | } |
| 914 | 914 | } |
| 915 | 915 | |
@@ -925,35 +925,35 @@ discard block |
||
| 925 | 925 | |
| 926 | 926 | public function setDetailsUrl($detailsUrl) |
| 927 | 927 | { |
| 928 | - $this->detailsUrl = $detailsUrl; |
|
| 928 | + $this->detailsUrl = $detailsUrl; |
|
| 929 | 929 | } |
| 930 | 930 | public function getDetailsUrl() |
| 931 | 931 | { |
| 932 | - return $this->detailsUrl; |
|
| 932 | + return $this->detailsUrl; |
|
| 933 | 933 | } |
| 934 | 934 | public function setName($name) |
| 935 | 935 | { |
| 936 | - $this->name = $name; |
|
| 936 | + $this->name = $name; |
|
| 937 | 937 | } |
| 938 | 938 | public function getName() |
| 939 | 939 | { |
| 940 | - return $this->name; |
|
| 940 | + return $this->name; |
|
| 941 | 941 | } |
| 942 | 942 | public function setPackageName($packageName) |
| 943 | 943 | { |
| 944 | - $this->packageName = $packageName; |
|
| 944 | + $this->packageName = $packageName; |
|
| 945 | 945 | } |
| 946 | 946 | public function getPackageName() |
| 947 | 947 | { |
| 948 | - return $this->packageName; |
|
| 948 | + return $this->packageName; |
|
| 949 | 949 | } |
| 950 | 950 | public function setVersion($version) |
| 951 | 951 | { |
| 952 | - $this->version = $version; |
|
| 952 | + $this->version = $version; |
|
| 953 | 953 | } |
| 954 | 954 | public function getVersion() |
| 955 | 955 | { |
| 956 | - return $this->version; |
|
| 956 | + return $this->version; |
|
| 957 | 957 | } |
| 958 | 958 | } |
| 959 | 959 | |
@@ -967,19 +967,19 @@ discard block |
||
| 967 | 967 | |
| 968 | 968 | public function setActivityDataSourceId($activityDataSourceId) |
| 969 | 969 | { |
| 970 | - $this->activityDataSourceId = $activityDataSourceId; |
|
| 970 | + $this->activityDataSourceId = $activityDataSourceId; |
|
| 971 | 971 | } |
| 972 | 972 | public function getActivityDataSourceId() |
| 973 | 973 | { |
| 974 | - return $this->activityDataSourceId; |
|
| 974 | + return $this->activityDataSourceId; |
|
| 975 | 975 | } |
| 976 | 976 | public function setMinDurationMillis($minDurationMillis) |
| 977 | 977 | { |
| 978 | - $this->minDurationMillis = $minDurationMillis; |
|
| 978 | + $this->minDurationMillis = $minDurationMillis; |
|
| 979 | 979 | } |
| 980 | 980 | public function getMinDurationMillis() |
| 981 | 981 | { |
| 982 | - return $this->minDurationMillis; |
|
| 982 | + return $this->minDurationMillis; |
|
| 983 | 983 | } |
| 984 | 984 | } |
| 985 | 985 | |
@@ -992,11 +992,11 @@ discard block |
||
| 992 | 992 | |
| 993 | 993 | public function setMinDurationMillis($minDurationMillis) |
| 994 | 994 | { |
| 995 | - $this->minDurationMillis = $minDurationMillis; |
|
| 995 | + $this->minDurationMillis = $minDurationMillis; |
|
| 996 | 996 | } |
| 997 | 997 | public function getMinDurationMillis() |
| 998 | 998 | { |
| 999 | - return $this->minDurationMillis; |
|
| 999 | + return $this->minDurationMillis; |
|
| 1000 | 1000 | } |
| 1001 | 1001 | } |
| 1002 | 1002 | |
@@ -1009,11 +1009,11 @@ discard block |
||
| 1009 | 1009 | |
| 1010 | 1010 | public function setDurationMillis($durationMillis) |
| 1011 | 1011 | { |
| 1012 | - $this->durationMillis = $durationMillis; |
|
| 1012 | + $this->durationMillis = $durationMillis; |
|
| 1013 | 1013 | } |
| 1014 | 1014 | public function getDurationMillis() |
| 1015 | 1015 | { |
| 1016 | - return $this->durationMillis; |
|
| 1016 | + return $this->durationMillis; |
|
| 1017 | 1017 | } |
| 1018 | 1018 | } |
| 1019 | 1019 | |
@@ -1035,67 +1035,67 @@ discard block |
||
| 1035 | 1035 | |
| 1036 | 1036 | public function setComputationTimeMillis($computationTimeMillis) |
| 1037 | 1037 | { |
| 1038 | - $this->computationTimeMillis = $computationTimeMillis; |
|
| 1038 | + $this->computationTimeMillis = $computationTimeMillis; |
|
| 1039 | 1039 | } |
| 1040 | 1040 | public function getComputationTimeMillis() |
| 1041 | 1041 | { |
| 1042 | - return $this->computationTimeMillis; |
|
| 1042 | + return $this->computationTimeMillis; |
|
| 1043 | 1043 | } |
| 1044 | 1044 | public function setDataTypeName($dataTypeName) |
| 1045 | 1045 | { |
| 1046 | - $this->dataTypeName = $dataTypeName; |
|
| 1046 | + $this->dataTypeName = $dataTypeName; |
|
| 1047 | 1047 | } |
| 1048 | 1048 | public function getDataTypeName() |
| 1049 | 1049 | { |
| 1050 | - return $this->dataTypeName; |
|
| 1050 | + return $this->dataTypeName; |
|
| 1051 | 1051 | } |
| 1052 | 1052 | public function setEndTimeNanos($endTimeNanos) |
| 1053 | 1053 | { |
| 1054 | - $this->endTimeNanos = $endTimeNanos; |
|
| 1054 | + $this->endTimeNanos = $endTimeNanos; |
|
| 1055 | 1055 | } |
| 1056 | 1056 | public function getEndTimeNanos() |
| 1057 | 1057 | { |
| 1058 | - return $this->endTimeNanos; |
|
| 1058 | + return $this->endTimeNanos; |
|
| 1059 | 1059 | } |
| 1060 | 1060 | public function setModifiedTimeMillis($modifiedTimeMillis) |
| 1061 | 1061 | { |
| 1062 | - $this->modifiedTimeMillis = $modifiedTimeMillis; |
|
| 1062 | + $this->modifiedTimeMillis = $modifiedTimeMillis; |
|
| 1063 | 1063 | } |
| 1064 | 1064 | public function getModifiedTimeMillis() |
| 1065 | 1065 | { |
| 1066 | - return $this->modifiedTimeMillis; |
|
| 1066 | + return $this->modifiedTimeMillis; |
|
| 1067 | 1067 | } |
| 1068 | 1068 | public function setOriginDataSourceId($originDataSourceId) |
| 1069 | 1069 | { |
| 1070 | - $this->originDataSourceId = $originDataSourceId; |
|
| 1070 | + $this->originDataSourceId = $originDataSourceId; |
|
| 1071 | 1071 | } |
| 1072 | 1072 | public function getOriginDataSourceId() |
| 1073 | 1073 | { |
| 1074 | - return $this->originDataSourceId; |
|
| 1074 | + return $this->originDataSourceId; |
|
| 1075 | 1075 | } |
| 1076 | 1076 | public function setRawTimestampNanos($rawTimestampNanos) |
| 1077 | 1077 | { |
| 1078 | - $this->rawTimestampNanos = $rawTimestampNanos; |
|
| 1078 | + $this->rawTimestampNanos = $rawTimestampNanos; |
|
| 1079 | 1079 | } |
| 1080 | 1080 | public function getRawTimestampNanos() |
| 1081 | 1081 | { |
| 1082 | - return $this->rawTimestampNanos; |
|
| 1082 | + return $this->rawTimestampNanos; |
|
| 1083 | 1083 | } |
| 1084 | 1084 | public function setStartTimeNanos($startTimeNanos) |
| 1085 | 1085 | { |
| 1086 | - $this->startTimeNanos = $startTimeNanos; |
|
| 1086 | + $this->startTimeNanos = $startTimeNanos; |
|
| 1087 | 1087 | } |
| 1088 | 1088 | public function getStartTimeNanos() |
| 1089 | 1089 | { |
| 1090 | - return $this->startTimeNanos; |
|
| 1090 | + return $this->startTimeNanos; |
|
| 1091 | 1091 | } |
| 1092 | 1092 | public function setValue($value) |
| 1093 | 1093 | { |
| 1094 | - $this->value = $value; |
|
| 1094 | + $this->value = $value; |
|
| 1095 | 1095 | } |
| 1096 | 1096 | public function getValue() |
| 1097 | 1097 | { |
| 1098 | - return $this->value; |
|
| 1098 | + return $this->value; |
|
| 1099 | 1099 | } |
| 1100 | 1100 | } |
| 1101 | 1101 | |
@@ -1117,59 +1117,59 @@ discard block |
||
| 1117 | 1117 | |
| 1118 | 1118 | public function setApplication(Google_Service_Fitness_Application $application) |
| 1119 | 1119 | { |
| 1120 | - $this->application = $application; |
|
| 1120 | + $this->application = $application; |
|
| 1121 | 1121 | } |
| 1122 | 1122 | public function getApplication() |
| 1123 | 1123 | { |
| 1124 | - return $this->application; |
|
| 1124 | + return $this->application; |
|
| 1125 | 1125 | } |
| 1126 | 1126 | public function setDataStreamId($dataStreamId) |
| 1127 | 1127 | { |
| 1128 | - $this->dataStreamId = $dataStreamId; |
|
| 1128 | + $this->dataStreamId = $dataStreamId; |
|
| 1129 | 1129 | } |
| 1130 | 1130 | public function getDataStreamId() |
| 1131 | 1131 | { |
| 1132 | - return $this->dataStreamId; |
|
| 1132 | + return $this->dataStreamId; |
|
| 1133 | 1133 | } |
| 1134 | 1134 | public function setDataStreamName($dataStreamName) |
| 1135 | 1135 | { |
| 1136 | - $this->dataStreamName = $dataStreamName; |
|
| 1136 | + $this->dataStreamName = $dataStreamName; |
|
| 1137 | 1137 | } |
| 1138 | 1138 | public function getDataStreamName() |
| 1139 | 1139 | { |
| 1140 | - return $this->dataStreamName; |
|
| 1140 | + return $this->dataStreamName; |
|
| 1141 | 1141 | } |
| 1142 | 1142 | public function setDataType(Google_Service_Fitness_DataType $dataType) |
| 1143 | 1143 | { |
| 1144 | - $this->dataType = $dataType; |
|
| 1144 | + $this->dataType = $dataType; |
|
| 1145 | 1145 | } |
| 1146 | 1146 | public function getDataType() |
| 1147 | 1147 | { |
| 1148 | - return $this->dataType; |
|
| 1148 | + return $this->dataType; |
|
| 1149 | 1149 | } |
| 1150 | 1150 | public function setDevice(Google_Service_Fitness_Device $device) |
| 1151 | 1151 | { |
| 1152 | - $this->device = $device; |
|
| 1152 | + $this->device = $device; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | public function getDevice() |
| 1155 | 1155 | { |
| 1156 | - return $this->device; |
|
| 1156 | + return $this->device; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | public function setName($name) |
| 1159 | 1159 | { |
| 1160 | - $this->name = $name; |
|
| 1160 | + $this->name = $name; |
|
| 1161 | 1161 | } |
| 1162 | 1162 | public function getName() |
| 1163 | 1163 | { |
| 1164 | - return $this->name; |
|
| 1164 | + return $this->name; |
|
| 1165 | 1165 | } |
| 1166 | 1166 | public function setType($type) |
| 1167 | 1167 | { |
| 1168 | - $this->type = $type; |
|
| 1168 | + $this->type = $type; |
|
| 1169 | 1169 | } |
| 1170 | 1170 | public function getType() |
| 1171 | 1171 | { |
| 1172 | - return $this->type; |
|
| 1172 | + return $this->type; |
|
| 1173 | 1173 | } |
| 1174 | 1174 | } |
| 1175 | 1175 | |
@@ -1185,19 +1185,19 @@ discard block |
||
| 1185 | 1185 | |
| 1186 | 1186 | public function setField($field) |
| 1187 | 1187 | { |
| 1188 | - $this->field = $field; |
|
| 1188 | + $this->field = $field; |
|
| 1189 | 1189 | } |
| 1190 | 1190 | public function getField() |
| 1191 | 1191 | { |
| 1192 | - return $this->field; |
|
| 1192 | + return $this->field; |
|
| 1193 | 1193 | } |
| 1194 | 1194 | public function setName($name) |
| 1195 | 1195 | { |
| 1196 | - $this->name = $name; |
|
| 1196 | + $this->name = $name; |
|
| 1197 | 1197 | } |
| 1198 | 1198 | public function getName() |
| 1199 | 1199 | { |
| 1200 | - return $this->name; |
|
| 1200 | + return $this->name; |
|
| 1201 | 1201 | } |
| 1202 | 1202 | } |
| 1203 | 1203 | |
@@ -1212,27 +1212,27 @@ discard block |
||
| 1212 | 1212 | |
| 1213 | 1213 | public function setFormat($format) |
| 1214 | 1214 | { |
| 1215 | - $this->format = $format; |
|
| 1215 | + $this->format = $format; |
|
| 1216 | 1216 | } |
| 1217 | 1217 | public function getFormat() |
| 1218 | 1218 | { |
| 1219 | - return $this->format; |
|
| 1219 | + return $this->format; |
|
| 1220 | 1220 | } |
| 1221 | 1221 | public function setName($name) |
| 1222 | 1222 | { |
| 1223 | - $this->name = $name; |
|
| 1223 | + $this->name = $name; |
|
| 1224 | 1224 | } |
| 1225 | 1225 | public function getName() |
| 1226 | 1226 | { |
| 1227 | - return $this->name; |
|
| 1227 | + return $this->name; |
|
| 1228 | 1228 | } |
| 1229 | 1229 | public function setOptional($optional) |
| 1230 | 1230 | { |
| 1231 | - $this->optional = $optional; |
|
| 1231 | + $this->optional = $optional; |
|
| 1232 | 1232 | } |
| 1233 | 1233 | public function getOptional() |
| 1234 | 1234 | { |
| 1235 | - return $this->optional; |
|
| 1235 | + return $this->optional; |
|
| 1236 | 1236 | } |
| 1237 | 1237 | } |
| 1238 | 1238 | |
@@ -1251,43 +1251,43 @@ discard block |
||
| 1251 | 1251 | |
| 1252 | 1252 | public function setDataSourceId($dataSourceId) |
| 1253 | 1253 | { |
| 1254 | - $this->dataSourceId = $dataSourceId; |
|
| 1254 | + $this->dataSourceId = $dataSourceId; |
|
| 1255 | 1255 | } |
| 1256 | 1256 | public function getDataSourceId() |
| 1257 | 1257 | { |
| 1258 | - return $this->dataSourceId; |
|
| 1258 | + return $this->dataSourceId; |
|
| 1259 | 1259 | } |
| 1260 | 1260 | public function setMaxEndTimeNs($maxEndTimeNs) |
| 1261 | 1261 | { |
| 1262 | - $this->maxEndTimeNs = $maxEndTimeNs; |
|
| 1262 | + $this->maxEndTimeNs = $maxEndTimeNs; |
|
| 1263 | 1263 | } |
| 1264 | 1264 | public function getMaxEndTimeNs() |
| 1265 | 1265 | { |
| 1266 | - return $this->maxEndTimeNs; |
|
| 1266 | + return $this->maxEndTimeNs; |
|
| 1267 | 1267 | } |
| 1268 | 1268 | public function setMinStartTimeNs($minStartTimeNs) |
| 1269 | 1269 | { |
| 1270 | - $this->minStartTimeNs = $minStartTimeNs; |
|
| 1270 | + $this->minStartTimeNs = $minStartTimeNs; |
|
| 1271 | 1271 | } |
| 1272 | 1272 | public function getMinStartTimeNs() |
| 1273 | 1273 | { |
| 1274 | - return $this->minStartTimeNs; |
|
| 1274 | + return $this->minStartTimeNs; |
|
| 1275 | 1275 | } |
| 1276 | 1276 | public function setNextPageToken($nextPageToken) |
| 1277 | 1277 | { |
| 1278 | - $this->nextPageToken = $nextPageToken; |
|
| 1278 | + $this->nextPageToken = $nextPageToken; |
|
| 1279 | 1279 | } |
| 1280 | 1280 | public function getNextPageToken() |
| 1281 | 1281 | { |
| 1282 | - return $this->nextPageToken; |
|
| 1282 | + return $this->nextPageToken; |
|
| 1283 | 1283 | } |
| 1284 | 1284 | public function setPoint($point) |
| 1285 | 1285 | { |
| 1286 | - $this->point = $point; |
|
| 1286 | + $this->point = $point; |
|
| 1287 | 1287 | } |
| 1288 | 1288 | public function getPoint() |
| 1289 | 1289 | { |
| 1290 | - return $this->point; |
|
| 1290 | + return $this->point; |
|
| 1291 | 1291 | } |
| 1292 | 1292 | } |
| 1293 | 1293 | |
@@ -1304,43 +1304,43 @@ discard block |
||
| 1304 | 1304 | |
| 1305 | 1305 | public function setManufacturer($manufacturer) |
| 1306 | 1306 | { |
| 1307 | - $this->manufacturer = $manufacturer; |
|
| 1307 | + $this->manufacturer = $manufacturer; |
|
| 1308 | 1308 | } |
| 1309 | 1309 | public function getManufacturer() |
| 1310 | 1310 | { |
| 1311 | - return $this->manufacturer; |
|
| 1311 | + return $this->manufacturer; |
|
| 1312 | 1312 | } |
| 1313 | 1313 | public function setModel($model) |
| 1314 | 1314 | { |
| 1315 | - $this->model = $model; |
|
| 1315 | + $this->model = $model; |
|
| 1316 | 1316 | } |
| 1317 | 1317 | public function getModel() |
| 1318 | 1318 | { |
| 1319 | - return $this->model; |
|
| 1319 | + return $this->model; |
|
| 1320 | 1320 | } |
| 1321 | 1321 | public function setType($type) |
| 1322 | 1322 | { |
| 1323 | - $this->type = $type; |
|
| 1323 | + $this->type = $type; |
|
| 1324 | 1324 | } |
| 1325 | 1325 | public function getType() |
| 1326 | 1326 | { |
| 1327 | - return $this->type; |
|
| 1327 | + return $this->type; |
|
| 1328 | 1328 | } |
| 1329 | 1329 | public function setUid($uid) |
| 1330 | 1330 | { |
| 1331 | - $this->uid = $uid; |
|
| 1331 | + $this->uid = $uid; |
|
| 1332 | 1332 | } |
| 1333 | 1333 | public function getUid() |
| 1334 | 1334 | { |
| 1335 | - return $this->uid; |
|
| 1335 | + return $this->uid; |
|
| 1336 | 1336 | } |
| 1337 | 1337 | public function setVersion($version) |
| 1338 | 1338 | { |
| 1339 | - $this->version = $version; |
|
| 1339 | + $this->version = $version; |
|
| 1340 | 1340 | } |
| 1341 | 1341 | public function getVersion() |
| 1342 | 1342 | { |
| 1343 | - return $this->version; |
|
| 1343 | + return $this->version; |
|
| 1344 | 1344 | } |
| 1345 | 1345 | } |
| 1346 | 1346 | |
@@ -1355,11 +1355,11 @@ discard block |
||
| 1355 | 1355 | |
| 1356 | 1356 | public function setDataSource($dataSource) |
| 1357 | 1357 | { |
| 1358 | - $this->dataSource = $dataSource; |
|
| 1358 | + $this->dataSource = $dataSource; |
|
| 1359 | 1359 | } |
| 1360 | 1360 | public function getDataSource() |
| 1361 | 1361 | { |
| 1362 | - return $this->dataSource; |
|
| 1362 | + return $this->dataSource; |
|
| 1363 | 1363 | } |
| 1364 | 1364 | } |
| 1365 | 1365 | |
@@ -1377,27 +1377,27 @@ discard block |
||
| 1377 | 1377 | |
| 1378 | 1378 | public function setDeletedSession($deletedSession) |
| 1379 | 1379 | { |
| 1380 | - $this->deletedSession = $deletedSession; |
|
| 1380 | + $this->deletedSession = $deletedSession; |
|
| 1381 | 1381 | } |
| 1382 | 1382 | public function getDeletedSession() |
| 1383 | 1383 | { |
| 1384 | - return $this->deletedSession; |
|
| 1384 | + return $this->deletedSession; |
|
| 1385 | 1385 | } |
| 1386 | 1386 | public function setNextPageToken($nextPageToken) |
| 1387 | 1387 | { |
| 1388 | - $this->nextPageToken = $nextPageToken; |
|
| 1388 | + $this->nextPageToken = $nextPageToken; |
|
| 1389 | 1389 | } |
| 1390 | 1390 | public function getNextPageToken() |
| 1391 | 1391 | { |
| 1392 | - return $this->nextPageToken; |
|
| 1392 | + return $this->nextPageToken; |
|
| 1393 | 1393 | } |
| 1394 | 1394 | public function setSession($session) |
| 1395 | 1395 | { |
| 1396 | - $this->session = $session; |
|
| 1396 | + $this->session = $session; |
|
| 1397 | 1397 | } |
| 1398 | 1398 | public function getSession() |
| 1399 | 1399 | { |
| 1400 | - return $this->session; |
|
| 1400 | + return $this->session; |
|
| 1401 | 1401 | } |
| 1402 | 1402 | } |
| 1403 | 1403 | |
@@ -1419,75 +1419,75 @@ discard block |
||
| 1419 | 1419 | |
| 1420 | 1420 | public function setActiveTimeMillis($activeTimeMillis) |
| 1421 | 1421 | { |
| 1422 | - $this->activeTimeMillis = $activeTimeMillis; |
|
| 1422 | + $this->activeTimeMillis = $activeTimeMillis; |
|
| 1423 | 1423 | } |
| 1424 | 1424 | public function getActiveTimeMillis() |
| 1425 | 1425 | { |
| 1426 | - return $this->activeTimeMillis; |
|
| 1426 | + return $this->activeTimeMillis; |
|
| 1427 | 1427 | } |
| 1428 | 1428 | public function setActivityType($activityType) |
| 1429 | 1429 | { |
| 1430 | - $this->activityType = $activityType; |
|
| 1430 | + $this->activityType = $activityType; |
|
| 1431 | 1431 | } |
| 1432 | 1432 | public function getActivityType() |
| 1433 | 1433 | { |
| 1434 | - return $this->activityType; |
|
| 1434 | + return $this->activityType; |
|
| 1435 | 1435 | } |
| 1436 | 1436 | public function setApplication(Google_Service_Fitness_Application $application) |
| 1437 | 1437 | { |
| 1438 | - $this->application = $application; |
|
| 1438 | + $this->application = $application; |
|
| 1439 | 1439 | } |
| 1440 | 1440 | public function getApplication() |
| 1441 | 1441 | { |
| 1442 | - return $this->application; |
|
| 1442 | + return $this->application; |
|
| 1443 | 1443 | } |
| 1444 | 1444 | public function setDescription($description) |
| 1445 | 1445 | { |
| 1446 | - $this->description = $description; |
|
| 1446 | + $this->description = $description; |
|
| 1447 | 1447 | } |
| 1448 | 1448 | public function getDescription() |
| 1449 | 1449 | { |
| 1450 | - return $this->description; |
|
| 1450 | + return $this->description; |
|
| 1451 | 1451 | } |
| 1452 | 1452 | public function setEndTimeMillis($endTimeMillis) |
| 1453 | 1453 | { |
| 1454 | - $this->endTimeMillis = $endTimeMillis; |
|
| 1454 | + $this->endTimeMillis = $endTimeMillis; |
|
| 1455 | 1455 | } |
| 1456 | 1456 | public function getEndTimeMillis() |
| 1457 | 1457 | { |
| 1458 | - return $this->endTimeMillis; |
|
| 1458 | + return $this->endTimeMillis; |
|
| 1459 | 1459 | } |
| 1460 | 1460 | public function setId($id) |
| 1461 | 1461 | { |
| 1462 | - $this->id = $id; |
|
| 1462 | + $this->id = $id; |
|
| 1463 | 1463 | } |
| 1464 | 1464 | public function getId() |
| 1465 | 1465 | { |
| 1466 | - return $this->id; |
|
| 1466 | + return $this->id; |
|
| 1467 | 1467 | } |
| 1468 | 1468 | public function setModifiedTimeMillis($modifiedTimeMillis) |
| 1469 | 1469 | { |
| 1470 | - $this->modifiedTimeMillis = $modifiedTimeMillis; |
|
| 1470 | + $this->modifiedTimeMillis = $modifiedTimeMillis; |
|
| 1471 | 1471 | } |
| 1472 | 1472 | public function getModifiedTimeMillis() |
| 1473 | 1473 | { |
| 1474 | - return $this->modifiedTimeMillis; |
|
| 1474 | + return $this->modifiedTimeMillis; |
|
| 1475 | 1475 | } |
| 1476 | 1476 | public function setName($name) |
| 1477 | 1477 | { |
| 1478 | - $this->name = $name; |
|
| 1478 | + $this->name = $name; |
|
| 1479 | 1479 | } |
| 1480 | 1480 | public function getName() |
| 1481 | 1481 | { |
| 1482 | - return $this->name; |
|
| 1482 | + return $this->name; |
|
| 1483 | 1483 | } |
| 1484 | 1484 | public function setStartTimeMillis($startTimeMillis) |
| 1485 | 1485 | { |
| 1486 | - $this->startTimeMillis = $startTimeMillis; |
|
| 1486 | + $this->startTimeMillis = $startTimeMillis; |
|
| 1487 | 1487 | } |
| 1488 | 1488 | public function getStartTimeMillis() |
| 1489 | 1489 | { |
| 1490 | - return $this->startTimeMillis; |
|
| 1490 | + return $this->startTimeMillis; |
|
| 1491 | 1491 | } |
| 1492 | 1492 | } |
| 1493 | 1493 | |
@@ -1501,18 +1501,18 @@ discard block |
||
| 1501 | 1501 | |
| 1502 | 1502 | public function setFpVal($fpVal) |
| 1503 | 1503 | { |
| 1504 | - $this->fpVal = $fpVal; |
|
| 1504 | + $this->fpVal = $fpVal; |
|
| 1505 | 1505 | } |
| 1506 | 1506 | public function getFpVal() |
| 1507 | 1507 | { |
| 1508 | - return $this->fpVal; |
|
| 1508 | + return $this->fpVal; |
|
| 1509 | 1509 | } |
| 1510 | 1510 | public function setIntVal($intVal) |
| 1511 | 1511 | { |
| 1512 | - $this->intVal = $intVal; |
|
| 1512 | + $this->intVal = $intVal; |
|
| 1513 | 1513 | } |
| 1514 | 1514 | public function getIntVal() |
| 1515 | 1515 | { |
| 1516 | - return $this->intVal; |
|
| 1516 | + return $this->intVal; |
|
| 1517 | 1517 | } |
| 1518 | 1518 | } |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | 'required' => true, |
| 85 | 85 | ), |
| 86 | 86 | ), |
| 87 | - ),'delete' => array( |
|
| 87 | + ), 'delete' => array( |
|
| 88 | 88 | 'path' => '{userId}/dataSources/{dataSourceId}', |
| 89 | 89 | 'httpMethod' => 'DELETE', |
| 90 | 90 | 'parameters' => array( |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | 'required' => true, |
| 100 | 100 | ), |
| 101 | 101 | ), |
| 102 | - ),'get' => array( |
|
| 102 | + ), 'get' => array( |
|
| 103 | 103 | 'path' => '{userId}/dataSources/{dataSourceId}', |
| 104 | 104 | 'httpMethod' => 'GET', |
| 105 | 105 | 'parameters' => array( |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | 'required' => true, |
| 115 | 115 | ), |
| 116 | 116 | ), |
| 117 | - ),'list' => array( |
|
| 117 | + ), 'list' => array( |
|
| 118 | 118 | 'path' => '{userId}/dataSources', |
| 119 | 119 | 'httpMethod' => 'GET', |
| 120 | 120 | 'parameters' => array( |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | 'repeated' => true, |
| 130 | 130 | ), |
| 131 | 131 | ), |
| 132 | - ),'patch' => array( |
|
| 132 | + ), 'patch' => array( |
|
| 133 | 133 | 'path' => '{userId}/dataSources/{dataSourceId}', |
| 134 | 134 | 'httpMethod' => 'PATCH', |
| 135 | 135 | 'parameters' => array( |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | 'required' => true, |
| 145 | 145 | ), |
| 146 | 146 | ), |
| 147 | - ),'update' => array( |
|
| 147 | + ), 'update' => array( |
|
| 148 | 148 | 'path' => '{userId}/dataSources/{dataSourceId}', |
| 149 | 149 | 'httpMethod' => 'PUT', |
| 150 | 150 | 'parameters' => array( |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | 'type' => 'string', |
| 198 | 198 | ), |
| 199 | 199 | ), |
| 200 | - ),'get' => array( |
|
| 200 | + ), 'get' => array( |
|
| 201 | 201 | 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
| 202 | 202 | 'httpMethod' => 'GET', |
| 203 | 203 | 'parameters' => array( |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | 'type' => 'string', |
| 226 | 226 | ), |
| 227 | 227 | ), |
| 228 | - ),'patch' => array( |
|
| 228 | + ), 'patch' => array( |
|
| 229 | 229 | 'path' => '{userId}/dataSources/{dataSourceId}/datasets/{datasetId}', |
| 230 | 230 | 'httpMethod' => 'PATCH', |
| 231 | 231 | 'parameters' => array( |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | 'type' => 'string', |
| 299 | 299 | ), |
| 300 | 300 | ), |
| 301 | - ),'list' => array( |
|
| 301 | + ), 'list' => array( |
|
| 302 | 302 | 'path' => '{userId}/sessions', |
| 303 | 303 | 'httpMethod' => 'GET', |
| 304 | 304 | 'parameters' => array( |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | 'type' => 'string', |
| 325 | 325 | ), |
| 326 | 326 | ), |
| 327 | - ),'update' => array( |
|
| 327 | + ), 'update' => array( |
|
| 328 | 328 | 'path' => '{userId}/sessions/{sessionId}', |
| 329 | 329 | 'httpMethod' => 'PUT', |
| 330 | 330 | 'parameters' => array( |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | /** Manage corporate Android devices. */ |
| 35 | 35 | const ANDROIDENTERPRISE = |
| 36 | - "https://www.googleapis.com/auth/androidenterprise"; |
|
| 36 | + "https://www.googleapis.com/auth/androidenterprise"; |
|
| 37 | 37 | |
| 38 | 38 | public $collections; |
| 39 | 39 | public $collectionviewers; |
@@ -55,881 +55,881 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | public function __construct(Google_Client $client) |
| 57 | 57 | { |
| 58 | - parent::__construct($client); |
|
| 59 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 60 | - $this->servicePath = 'androidenterprise/v1/'; |
|
| 61 | - $this->version = 'v1'; |
|
| 62 | - $this->serviceName = 'androidenterprise'; |
|
| 63 | - |
|
| 64 | - $this->collections = new Google_Service_AndroidEnterprise_Collections_Resource( |
|
| 65 | - $this, |
|
| 66 | - $this->serviceName, |
|
| 67 | - 'collections', |
|
| 68 | - array( |
|
| 69 | - 'methods' => array( |
|
| 70 | - 'delete' => array( |
|
| 71 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 72 | - 'httpMethod' => 'DELETE', |
|
| 73 | - 'parameters' => array( |
|
| 74 | - 'enterpriseId' => array( |
|
| 75 | - 'location' => 'path', |
|
| 76 | - 'type' => 'string', |
|
| 77 | - 'required' => true, |
|
| 78 | - ), |
|
| 79 | - 'collectionId' => array( |
|
| 80 | - 'location' => 'path', |
|
| 81 | - 'type' => 'string', |
|
| 82 | - 'required' => true, |
|
| 83 | - ), |
|
| 84 | - ), |
|
| 85 | - ),'get' => array( |
|
| 86 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 87 | - 'httpMethod' => 'GET', |
|
| 88 | - 'parameters' => array( |
|
| 89 | - 'enterpriseId' => array( |
|
| 90 | - 'location' => 'path', |
|
| 91 | - 'type' => 'string', |
|
| 92 | - 'required' => true, |
|
| 93 | - ), |
|
| 94 | - 'collectionId' => array( |
|
| 95 | - 'location' => 'path', |
|
| 96 | - 'type' => 'string', |
|
| 97 | - 'required' => true, |
|
| 98 | - ), |
|
| 99 | - ), |
|
| 100 | - ),'insert' => array( |
|
| 101 | - 'path' => 'enterprises/{enterpriseId}/collections', |
|
| 102 | - 'httpMethod' => 'POST', |
|
| 103 | - 'parameters' => array( |
|
| 104 | - 'enterpriseId' => array( |
|
| 105 | - 'location' => 'path', |
|
| 106 | - 'type' => 'string', |
|
| 107 | - 'required' => true, |
|
| 108 | - ), |
|
| 109 | - ), |
|
| 110 | - ),'list' => array( |
|
| 111 | - 'path' => 'enterprises/{enterpriseId}/collections', |
|
| 112 | - 'httpMethod' => 'GET', |
|
| 113 | - 'parameters' => array( |
|
| 114 | - 'enterpriseId' => array( |
|
| 115 | - 'location' => 'path', |
|
| 116 | - 'type' => 'string', |
|
| 117 | - 'required' => true, |
|
| 118 | - ), |
|
| 119 | - ), |
|
| 120 | - ),'patch' => array( |
|
| 121 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 122 | - 'httpMethod' => 'PATCH', |
|
| 123 | - 'parameters' => array( |
|
| 124 | - 'enterpriseId' => array( |
|
| 125 | - 'location' => 'path', |
|
| 126 | - 'type' => 'string', |
|
| 127 | - 'required' => true, |
|
| 128 | - ), |
|
| 129 | - 'collectionId' => array( |
|
| 130 | - 'location' => 'path', |
|
| 131 | - 'type' => 'string', |
|
| 132 | - 'required' => true, |
|
| 133 | - ), |
|
| 134 | - ), |
|
| 135 | - ),'update' => array( |
|
| 136 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 137 | - 'httpMethod' => 'PUT', |
|
| 138 | - 'parameters' => array( |
|
| 139 | - 'enterpriseId' => array( |
|
| 140 | - 'location' => 'path', |
|
| 141 | - 'type' => 'string', |
|
| 142 | - 'required' => true, |
|
| 143 | - ), |
|
| 144 | - 'collectionId' => array( |
|
| 145 | - 'location' => 'path', |
|
| 146 | - 'type' => 'string', |
|
| 147 | - 'required' => true, |
|
| 148 | - ), |
|
| 149 | - ), |
|
| 150 | - ), |
|
| 151 | - ) |
|
| 152 | - ) |
|
| 153 | - ); |
|
| 154 | - $this->collectionviewers = new Google_Service_AndroidEnterprise_Collectionviewers_Resource( |
|
| 155 | - $this, |
|
| 156 | - $this->serviceName, |
|
| 157 | - 'collectionviewers', |
|
| 158 | - array( |
|
| 159 | - 'methods' => array( |
|
| 160 | - 'delete' => array( |
|
| 161 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 162 | - 'httpMethod' => 'DELETE', |
|
| 163 | - 'parameters' => array( |
|
| 164 | - 'enterpriseId' => array( |
|
| 165 | - 'location' => 'path', |
|
| 166 | - 'type' => 'string', |
|
| 167 | - 'required' => true, |
|
| 168 | - ), |
|
| 169 | - 'collectionId' => array( |
|
| 170 | - 'location' => 'path', |
|
| 171 | - 'type' => 'string', |
|
| 172 | - 'required' => true, |
|
| 173 | - ), |
|
| 174 | - 'userId' => array( |
|
| 175 | - 'location' => 'path', |
|
| 176 | - 'type' => 'string', |
|
| 177 | - 'required' => true, |
|
| 178 | - ), |
|
| 179 | - ), |
|
| 180 | - ),'get' => array( |
|
| 181 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 182 | - 'httpMethod' => 'GET', |
|
| 183 | - 'parameters' => array( |
|
| 184 | - 'enterpriseId' => array( |
|
| 185 | - 'location' => 'path', |
|
| 186 | - 'type' => 'string', |
|
| 187 | - 'required' => true, |
|
| 188 | - ), |
|
| 189 | - 'collectionId' => array( |
|
| 190 | - 'location' => 'path', |
|
| 191 | - 'type' => 'string', |
|
| 192 | - 'required' => true, |
|
| 193 | - ), |
|
| 194 | - 'userId' => array( |
|
| 195 | - 'location' => 'path', |
|
| 196 | - 'type' => 'string', |
|
| 197 | - 'required' => true, |
|
| 198 | - ), |
|
| 199 | - ), |
|
| 200 | - ),'list' => array( |
|
| 201 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users', |
|
| 202 | - 'httpMethod' => 'GET', |
|
| 203 | - 'parameters' => array( |
|
| 204 | - 'enterpriseId' => array( |
|
| 205 | - 'location' => 'path', |
|
| 206 | - 'type' => 'string', |
|
| 207 | - 'required' => true, |
|
| 208 | - ), |
|
| 209 | - 'collectionId' => array( |
|
| 210 | - 'location' => 'path', |
|
| 211 | - 'type' => 'string', |
|
| 212 | - 'required' => true, |
|
| 213 | - ), |
|
| 214 | - ), |
|
| 215 | - ),'patch' => array( |
|
| 216 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 217 | - 'httpMethod' => 'PATCH', |
|
| 218 | - 'parameters' => array( |
|
| 219 | - 'enterpriseId' => array( |
|
| 220 | - 'location' => 'path', |
|
| 221 | - 'type' => 'string', |
|
| 222 | - 'required' => true, |
|
| 223 | - ), |
|
| 224 | - 'collectionId' => array( |
|
| 225 | - 'location' => 'path', |
|
| 226 | - 'type' => 'string', |
|
| 227 | - 'required' => true, |
|
| 228 | - ), |
|
| 229 | - 'userId' => array( |
|
| 230 | - 'location' => 'path', |
|
| 231 | - 'type' => 'string', |
|
| 232 | - 'required' => true, |
|
| 233 | - ), |
|
| 234 | - ), |
|
| 235 | - ),'update' => array( |
|
| 236 | - 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 237 | - 'httpMethod' => 'PUT', |
|
| 238 | - 'parameters' => array( |
|
| 239 | - 'enterpriseId' => array( |
|
| 240 | - 'location' => 'path', |
|
| 241 | - 'type' => 'string', |
|
| 242 | - 'required' => true, |
|
| 243 | - ), |
|
| 244 | - 'collectionId' => 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 | - ), |
|
| 256 | - ) |
|
| 257 | - ) |
|
| 258 | - ); |
|
| 259 | - $this->devices = new Google_Service_AndroidEnterprise_Devices_Resource( |
|
| 260 | - $this, |
|
| 261 | - $this->serviceName, |
|
| 262 | - 'devices', |
|
| 263 | - array( |
|
| 264 | - 'methods' => array( |
|
| 265 | - 'get' => array( |
|
| 266 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}', |
|
| 267 | - 'httpMethod' => 'GET', |
|
| 268 | - 'parameters' => array( |
|
| 269 | - 'enterpriseId' => array( |
|
| 270 | - 'location' => 'path', |
|
| 271 | - 'type' => 'string', |
|
| 272 | - 'required' => true, |
|
| 273 | - ), |
|
| 274 | - 'userId' => array( |
|
| 275 | - 'location' => 'path', |
|
| 276 | - 'type' => 'string', |
|
| 277 | - 'required' => true, |
|
| 278 | - ), |
|
| 279 | - 'deviceId' => array( |
|
| 280 | - 'location' => 'path', |
|
| 281 | - 'type' => 'string', |
|
| 282 | - 'required' => true, |
|
| 283 | - ), |
|
| 284 | - ), |
|
| 285 | - ),'getState' => array( |
|
| 286 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
|
| 287 | - 'httpMethod' => 'GET', |
|
| 288 | - 'parameters' => array( |
|
| 289 | - 'enterpriseId' => array( |
|
| 290 | - 'location' => 'path', |
|
| 291 | - 'type' => 'string', |
|
| 292 | - 'required' => true, |
|
| 293 | - ), |
|
| 294 | - 'userId' => array( |
|
| 295 | - 'location' => 'path', |
|
| 296 | - 'type' => 'string', |
|
| 297 | - 'required' => true, |
|
| 298 | - ), |
|
| 299 | - 'deviceId' => array( |
|
| 300 | - 'location' => 'path', |
|
| 301 | - 'type' => 'string', |
|
| 302 | - 'required' => true, |
|
| 303 | - ), |
|
| 304 | - ), |
|
| 305 | - ),'list' => array( |
|
| 306 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices', |
|
| 307 | - 'httpMethod' => 'GET', |
|
| 308 | - 'parameters' => array( |
|
| 309 | - 'enterpriseId' => array( |
|
| 310 | - 'location' => 'path', |
|
| 311 | - 'type' => 'string', |
|
| 312 | - 'required' => true, |
|
| 313 | - ), |
|
| 314 | - 'userId' => array( |
|
| 315 | - 'location' => 'path', |
|
| 316 | - 'type' => 'string', |
|
| 317 | - 'required' => true, |
|
| 318 | - ), |
|
| 319 | - ), |
|
| 320 | - ),'setState' => array( |
|
| 321 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
|
| 322 | - 'httpMethod' => 'PUT', |
|
| 323 | - 'parameters' => array( |
|
| 324 | - 'enterpriseId' => array( |
|
| 325 | - 'location' => 'path', |
|
| 326 | - 'type' => 'string', |
|
| 327 | - 'required' => true, |
|
| 328 | - ), |
|
| 329 | - 'userId' => array( |
|
| 330 | - 'location' => 'path', |
|
| 331 | - 'type' => 'string', |
|
| 332 | - 'required' => true, |
|
| 333 | - ), |
|
| 334 | - 'deviceId' => array( |
|
| 335 | - 'location' => 'path', |
|
| 336 | - 'type' => 'string', |
|
| 337 | - 'required' => true, |
|
| 338 | - ), |
|
| 339 | - ), |
|
| 340 | - ), |
|
| 341 | - ) |
|
| 342 | - ) |
|
| 343 | - ); |
|
| 344 | - $this->enterprises = new Google_Service_AndroidEnterprise_Enterprises_Resource( |
|
| 345 | - $this, |
|
| 346 | - $this->serviceName, |
|
| 347 | - 'enterprises', |
|
| 348 | - array( |
|
| 349 | - 'methods' => array( |
|
| 350 | - 'delete' => array( |
|
| 351 | - 'path' => 'enterprises/{enterpriseId}', |
|
| 352 | - 'httpMethod' => 'DELETE', |
|
| 353 | - 'parameters' => array( |
|
| 354 | - 'enterpriseId' => array( |
|
| 355 | - 'location' => 'path', |
|
| 356 | - 'type' => 'string', |
|
| 357 | - 'required' => true, |
|
| 358 | - ), |
|
| 359 | - ), |
|
| 360 | - ),'enroll' => array( |
|
| 361 | - 'path' => 'enterprises/enroll', |
|
| 362 | - 'httpMethod' => 'POST', |
|
| 363 | - 'parameters' => array( |
|
| 364 | - 'token' => array( |
|
| 365 | - 'location' => 'query', |
|
| 366 | - 'type' => 'string', |
|
| 367 | - 'required' => true, |
|
| 368 | - ), |
|
| 369 | - ), |
|
| 370 | - ),'get' => array( |
|
| 371 | - 'path' => 'enterprises/{enterpriseId}', |
|
| 372 | - 'httpMethod' => 'GET', |
|
| 373 | - 'parameters' => array( |
|
| 374 | - 'enterpriseId' => array( |
|
| 375 | - 'location' => 'path', |
|
| 376 | - 'type' => 'string', |
|
| 377 | - 'required' => true, |
|
| 378 | - ), |
|
| 379 | - ), |
|
| 380 | - ),'insert' => array( |
|
| 381 | - 'path' => 'enterprises', |
|
| 382 | - 'httpMethod' => 'POST', |
|
| 383 | - 'parameters' => array( |
|
| 384 | - 'token' => array( |
|
| 385 | - 'location' => 'query', |
|
| 386 | - 'type' => 'string', |
|
| 387 | - 'required' => true, |
|
| 388 | - ), |
|
| 389 | - ), |
|
| 390 | - ),'list' => array( |
|
| 391 | - 'path' => 'enterprises', |
|
| 392 | - 'httpMethod' => 'GET', |
|
| 393 | - 'parameters' => array( |
|
| 394 | - 'domain' => array( |
|
| 395 | - 'location' => 'query', |
|
| 396 | - 'type' => 'string', |
|
| 397 | - 'required' => true, |
|
| 398 | - ), |
|
| 399 | - ), |
|
| 400 | - ),'setAccount' => array( |
|
| 401 | - 'path' => 'enterprises/{enterpriseId}/account', |
|
| 402 | - 'httpMethod' => 'PUT', |
|
| 403 | - 'parameters' => array( |
|
| 404 | - 'enterpriseId' => array( |
|
| 405 | - 'location' => 'path', |
|
| 406 | - 'type' => 'string', |
|
| 407 | - 'required' => true, |
|
| 408 | - ), |
|
| 409 | - ), |
|
| 410 | - ),'unenroll' => array( |
|
| 411 | - 'path' => 'enterprises/{enterpriseId}/unenroll', |
|
| 412 | - 'httpMethod' => 'POST', |
|
| 413 | - 'parameters' => array( |
|
| 414 | - 'enterpriseId' => array( |
|
| 415 | - 'location' => 'path', |
|
| 416 | - 'type' => 'string', |
|
| 417 | - 'required' => true, |
|
| 418 | - ), |
|
| 419 | - ), |
|
| 420 | - ), |
|
| 421 | - ) |
|
| 422 | - ) |
|
| 423 | - ); |
|
| 424 | - $this->entitlements = new Google_Service_AndroidEnterprise_Entitlements_Resource( |
|
| 425 | - $this, |
|
| 426 | - $this->serviceName, |
|
| 427 | - 'entitlements', |
|
| 428 | - array( |
|
| 429 | - 'methods' => array( |
|
| 430 | - 'delete' => array( |
|
| 431 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 432 | - 'httpMethod' => 'DELETE', |
|
| 433 | - 'parameters' => array( |
|
| 434 | - 'enterpriseId' => array( |
|
| 435 | - 'location' => 'path', |
|
| 436 | - 'type' => 'string', |
|
| 437 | - 'required' => true, |
|
| 438 | - ), |
|
| 439 | - 'userId' => array( |
|
| 440 | - 'location' => 'path', |
|
| 441 | - 'type' => 'string', |
|
| 442 | - 'required' => true, |
|
| 443 | - ), |
|
| 444 | - 'entitlementId' => array( |
|
| 445 | - 'location' => 'path', |
|
| 446 | - 'type' => 'string', |
|
| 447 | - 'required' => true, |
|
| 448 | - ), |
|
| 449 | - ), |
|
| 450 | - ),'get' => array( |
|
| 451 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 452 | - 'httpMethod' => 'GET', |
|
| 453 | - 'parameters' => array( |
|
| 454 | - 'enterpriseId' => array( |
|
| 455 | - 'location' => 'path', |
|
| 456 | - 'type' => 'string', |
|
| 457 | - 'required' => true, |
|
| 458 | - ), |
|
| 459 | - 'userId' => array( |
|
| 460 | - 'location' => 'path', |
|
| 461 | - 'type' => 'string', |
|
| 462 | - 'required' => true, |
|
| 463 | - ), |
|
| 464 | - 'entitlementId' => array( |
|
| 465 | - 'location' => 'path', |
|
| 466 | - 'type' => 'string', |
|
| 467 | - 'required' => true, |
|
| 468 | - ), |
|
| 469 | - ), |
|
| 470 | - ),'list' => array( |
|
| 471 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements', |
|
| 472 | - 'httpMethod' => 'GET', |
|
| 473 | - 'parameters' => array( |
|
| 474 | - 'enterpriseId' => array( |
|
| 475 | - 'location' => 'path', |
|
| 476 | - 'type' => 'string', |
|
| 477 | - 'required' => true, |
|
| 478 | - ), |
|
| 479 | - 'userId' => array( |
|
| 480 | - 'location' => 'path', |
|
| 481 | - 'type' => 'string', |
|
| 482 | - 'required' => true, |
|
| 483 | - ), |
|
| 484 | - ), |
|
| 485 | - ),'patch' => array( |
|
| 486 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 487 | - 'httpMethod' => 'PATCH', |
|
| 488 | - 'parameters' => array( |
|
| 489 | - 'enterpriseId' => array( |
|
| 490 | - 'location' => 'path', |
|
| 491 | - 'type' => 'string', |
|
| 492 | - 'required' => true, |
|
| 493 | - ), |
|
| 494 | - 'userId' => array( |
|
| 495 | - 'location' => 'path', |
|
| 496 | - 'type' => 'string', |
|
| 497 | - 'required' => true, |
|
| 498 | - ), |
|
| 499 | - 'entitlementId' => array( |
|
| 500 | - 'location' => 'path', |
|
| 501 | - 'type' => 'string', |
|
| 502 | - 'required' => true, |
|
| 503 | - ), |
|
| 504 | - 'install' => array( |
|
| 505 | - 'location' => 'query', |
|
| 506 | - 'type' => 'boolean', |
|
| 507 | - ), |
|
| 508 | - ), |
|
| 509 | - ),'update' => array( |
|
| 510 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 511 | - 'httpMethod' => 'PUT', |
|
| 512 | - 'parameters' => array( |
|
| 513 | - 'enterpriseId' => array( |
|
| 514 | - 'location' => 'path', |
|
| 515 | - 'type' => 'string', |
|
| 516 | - 'required' => true, |
|
| 517 | - ), |
|
| 518 | - 'userId' => array( |
|
| 519 | - 'location' => 'path', |
|
| 520 | - 'type' => 'string', |
|
| 521 | - 'required' => true, |
|
| 522 | - ), |
|
| 523 | - 'entitlementId' => array( |
|
| 524 | - 'location' => 'path', |
|
| 525 | - 'type' => 'string', |
|
| 526 | - 'required' => true, |
|
| 527 | - ), |
|
| 528 | - 'install' => array( |
|
| 529 | - 'location' => 'query', |
|
| 530 | - 'type' => 'boolean', |
|
| 531 | - ), |
|
| 532 | - ), |
|
| 533 | - ), |
|
| 534 | - ) |
|
| 535 | - ) |
|
| 536 | - ); |
|
| 537 | - $this->grouplicenses = new Google_Service_AndroidEnterprise_Grouplicenses_Resource( |
|
| 538 | - $this, |
|
| 539 | - $this->serviceName, |
|
| 540 | - 'grouplicenses', |
|
| 541 | - array( |
|
| 542 | - 'methods' => array( |
|
| 543 | - 'get' => array( |
|
| 544 | - 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}', |
|
| 545 | - 'httpMethod' => 'GET', |
|
| 546 | - 'parameters' => array( |
|
| 547 | - 'enterpriseId' => array( |
|
| 548 | - 'location' => 'path', |
|
| 549 | - 'type' => 'string', |
|
| 550 | - 'required' => true, |
|
| 551 | - ), |
|
| 552 | - 'groupLicenseId' => array( |
|
| 553 | - 'location' => 'path', |
|
| 554 | - 'type' => 'string', |
|
| 555 | - 'required' => true, |
|
| 556 | - ), |
|
| 557 | - ), |
|
| 558 | - ),'list' => array( |
|
| 559 | - 'path' => 'enterprises/{enterpriseId}/groupLicenses', |
|
| 560 | - 'httpMethod' => 'GET', |
|
| 561 | - 'parameters' => array( |
|
| 562 | - 'enterpriseId' => array( |
|
| 563 | - 'location' => 'path', |
|
| 564 | - 'type' => 'string', |
|
| 565 | - 'required' => true, |
|
| 566 | - ), |
|
| 567 | - ), |
|
| 568 | - ), |
|
| 569 | - ) |
|
| 570 | - ) |
|
| 571 | - ); |
|
| 572 | - $this->grouplicenseusers = new Google_Service_AndroidEnterprise_Grouplicenseusers_Resource( |
|
| 573 | - $this, |
|
| 574 | - $this->serviceName, |
|
| 575 | - 'grouplicenseusers', |
|
| 576 | - array( |
|
| 577 | - 'methods' => array( |
|
| 578 | - 'list' => array( |
|
| 579 | - 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users', |
|
| 580 | - 'httpMethod' => 'GET', |
|
| 581 | - 'parameters' => array( |
|
| 582 | - 'enterpriseId' => array( |
|
| 583 | - 'location' => 'path', |
|
| 584 | - 'type' => 'string', |
|
| 585 | - 'required' => true, |
|
| 586 | - ), |
|
| 587 | - 'groupLicenseId' => array( |
|
| 588 | - 'location' => 'path', |
|
| 589 | - 'type' => 'string', |
|
| 590 | - 'required' => true, |
|
| 591 | - ), |
|
| 592 | - ), |
|
| 593 | - ), |
|
| 594 | - ) |
|
| 595 | - ) |
|
| 596 | - ); |
|
| 597 | - $this->installs = new Google_Service_AndroidEnterprise_Installs_Resource( |
|
| 598 | - $this, |
|
| 599 | - $this->serviceName, |
|
| 600 | - 'installs', |
|
| 601 | - array( |
|
| 602 | - 'methods' => array( |
|
| 603 | - 'delete' => array( |
|
| 604 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 605 | - 'httpMethod' => 'DELETE', |
|
| 606 | - 'parameters' => array( |
|
| 607 | - 'enterpriseId' => array( |
|
| 608 | - 'location' => 'path', |
|
| 609 | - 'type' => 'string', |
|
| 610 | - 'required' => true, |
|
| 611 | - ), |
|
| 612 | - 'userId' => array( |
|
| 613 | - 'location' => 'path', |
|
| 614 | - 'type' => 'string', |
|
| 615 | - 'required' => true, |
|
| 616 | - ), |
|
| 617 | - 'deviceId' => array( |
|
| 618 | - 'location' => 'path', |
|
| 619 | - 'type' => 'string', |
|
| 620 | - 'required' => true, |
|
| 621 | - ), |
|
| 622 | - 'installId' => array( |
|
| 623 | - 'location' => 'path', |
|
| 624 | - 'type' => 'string', |
|
| 625 | - 'required' => true, |
|
| 626 | - ), |
|
| 627 | - ), |
|
| 628 | - ),'get' => array( |
|
| 629 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 630 | - 'httpMethod' => 'GET', |
|
| 631 | - 'parameters' => array( |
|
| 632 | - 'enterpriseId' => array( |
|
| 633 | - 'location' => 'path', |
|
| 634 | - 'type' => 'string', |
|
| 635 | - 'required' => true, |
|
| 636 | - ), |
|
| 637 | - 'userId' => array( |
|
| 638 | - 'location' => 'path', |
|
| 639 | - 'type' => 'string', |
|
| 640 | - 'required' => true, |
|
| 641 | - ), |
|
| 642 | - 'deviceId' => array( |
|
| 643 | - 'location' => 'path', |
|
| 644 | - 'type' => 'string', |
|
| 645 | - 'required' => true, |
|
| 646 | - ), |
|
| 647 | - 'installId' => array( |
|
| 648 | - 'location' => 'path', |
|
| 649 | - 'type' => 'string', |
|
| 650 | - 'required' => true, |
|
| 651 | - ), |
|
| 652 | - ), |
|
| 653 | - ),'list' => array( |
|
| 654 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs', |
|
| 655 | - 'httpMethod' => 'GET', |
|
| 656 | - 'parameters' => array( |
|
| 657 | - 'enterpriseId' => array( |
|
| 658 | - 'location' => 'path', |
|
| 659 | - 'type' => 'string', |
|
| 660 | - 'required' => true, |
|
| 661 | - ), |
|
| 662 | - 'userId' => array( |
|
| 663 | - 'location' => 'path', |
|
| 664 | - 'type' => 'string', |
|
| 665 | - 'required' => true, |
|
| 666 | - ), |
|
| 667 | - 'deviceId' => array( |
|
| 668 | - 'location' => 'path', |
|
| 669 | - 'type' => 'string', |
|
| 670 | - 'required' => true, |
|
| 671 | - ), |
|
| 672 | - ), |
|
| 673 | - ),'patch' => array( |
|
| 674 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 675 | - 'httpMethod' => 'PATCH', |
|
| 676 | - 'parameters' => array( |
|
| 677 | - 'enterpriseId' => array( |
|
| 678 | - 'location' => 'path', |
|
| 679 | - 'type' => 'string', |
|
| 680 | - 'required' => true, |
|
| 681 | - ), |
|
| 682 | - 'userId' => array( |
|
| 683 | - 'location' => 'path', |
|
| 684 | - 'type' => 'string', |
|
| 685 | - 'required' => true, |
|
| 686 | - ), |
|
| 687 | - 'deviceId' => array( |
|
| 688 | - 'location' => 'path', |
|
| 689 | - 'type' => 'string', |
|
| 690 | - 'required' => true, |
|
| 691 | - ), |
|
| 692 | - 'installId' => array( |
|
| 693 | - 'location' => 'path', |
|
| 694 | - 'type' => 'string', |
|
| 695 | - 'required' => true, |
|
| 696 | - ), |
|
| 697 | - ), |
|
| 698 | - ),'update' => array( |
|
| 699 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 700 | - 'httpMethod' => 'PUT', |
|
| 701 | - 'parameters' => array( |
|
| 702 | - 'enterpriseId' => array( |
|
| 703 | - 'location' => 'path', |
|
| 704 | - 'type' => 'string', |
|
| 705 | - 'required' => true, |
|
| 706 | - ), |
|
| 707 | - 'userId' => array( |
|
| 708 | - 'location' => 'path', |
|
| 709 | - 'type' => 'string', |
|
| 710 | - 'required' => true, |
|
| 711 | - ), |
|
| 712 | - 'deviceId' => array( |
|
| 713 | - 'location' => 'path', |
|
| 714 | - 'type' => 'string', |
|
| 715 | - 'required' => true, |
|
| 716 | - ), |
|
| 717 | - 'installId' => array( |
|
| 718 | - 'location' => 'path', |
|
| 719 | - 'type' => 'string', |
|
| 720 | - 'required' => true, |
|
| 721 | - ), |
|
| 722 | - ), |
|
| 723 | - ), |
|
| 724 | - ) |
|
| 725 | - ) |
|
| 726 | - ); |
|
| 727 | - $this->permissions = new Google_Service_AndroidEnterprise_Permissions_Resource( |
|
| 728 | - $this, |
|
| 729 | - $this->serviceName, |
|
| 730 | - 'permissions', |
|
| 731 | - array( |
|
| 732 | - 'methods' => array( |
|
| 733 | - 'get' => array( |
|
| 734 | - 'path' => 'permissions/{permissionId}', |
|
| 735 | - 'httpMethod' => 'GET', |
|
| 736 | - 'parameters' => array( |
|
| 737 | - 'permissionId' => array( |
|
| 738 | - 'location' => 'path', |
|
| 739 | - 'type' => 'string', |
|
| 740 | - 'required' => true, |
|
| 741 | - ), |
|
| 742 | - 'language' => array( |
|
| 743 | - 'location' => 'query', |
|
| 744 | - 'type' => 'string', |
|
| 745 | - ), |
|
| 746 | - ), |
|
| 747 | - ), |
|
| 748 | - ) |
|
| 749 | - ) |
|
| 750 | - ); |
|
| 751 | - $this->products = new Google_Service_AndroidEnterprise_Products_Resource( |
|
| 752 | - $this, |
|
| 753 | - $this->serviceName, |
|
| 754 | - 'products', |
|
| 755 | - array( |
|
| 756 | - 'methods' => array( |
|
| 757 | - 'approve' => array( |
|
| 758 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}/approve', |
|
| 759 | - 'httpMethod' => 'POST', |
|
| 760 | - 'parameters' => array( |
|
| 761 | - 'enterpriseId' => array( |
|
| 762 | - 'location' => 'path', |
|
| 763 | - 'type' => 'string', |
|
| 764 | - 'required' => true, |
|
| 765 | - ), |
|
| 766 | - 'productId' => array( |
|
| 767 | - 'location' => 'path', |
|
| 768 | - 'type' => 'string', |
|
| 769 | - 'required' => true, |
|
| 770 | - ), |
|
| 771 | - ), |
|
| 772 | - ),'generateApprovalUrl' => array( |
|
| 773 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl', |
|
| 774 | - 'httpMethod' => 'POST', |
|
| 775 | - 'parameters' => array( |
|
| 776 | - 'enterpriseId' => array( |
|
| 777 | - 'location' => 'path', |
|
| 778 | - 'type' => 'string', |
|
| 779 | - 'required' => true, |
|
| 780 | - ), |
|
| 781 | - 'productId' => array( |
|
| 782 | - 'location' => 'path', |
|
| 783 | - 'type' => 'string', |
|
| 784 | - 'required' => true, |
|
| 785 | - ), |
|
| 786 | - 'languageCode' => array( |
|
| 787 | - 'location' => 'query', |
|
| 788 | - 'type' => 'string', |
|
| 789 | - ), |
|
| 790 | - ), |
|
| 791 | - ),'get' => array( |
|
| 792 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}', |
|
| 793 | - 'httpMethod' => 'GET', |
|
| 794 | - 'parameters' => array( |
|
| 795 | - 'enterpriseId' => array( |
|
| 796 | - 'location' => 'path', |
|
| 797 | - 'type' => 'string', |
|
| 798 | - 'required' => true, |
|
| 799 | - ), |
|
| 800 | - 'productId' => array( |
|
| 801 | - 'location' => 'path', |
|
| 802 | - 'type' => 'string', |
|
| 803 | - 'required' => true, |
|
| 804 | - ), |
|
| 805 | - 'language' => array( |
|
| 806 | - 'location' => 'query', |
|
| 807 | - 'type' => 'string', |
|
| 808 | - ), |
|
| 809 | - ), |
|
| 810 | - ),'getAppRestrictionsSchema' => array( |
|
| 811 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema', |
|
| 812 | - 'httpMethod' => 'GET', |
|
| 813 | - 'parameters' => array( |
|
| 814 | - 'enterpriseId' => array( |
|
| 815 | - 'location' => 'path', |
|
| 816 | - 'type' => 'string', |
|
| 817 | - 'required' => true, |
|
| 818 | - ), |
|
| 819 | - 'productId' => array( |
|
| 820 | - 'location' => 'path', |
|
| 821 | - 'type' => 'string', |
|
| 822 | - 'required' => true, |
|
| 823 | - ), |
|
| 824 | - 'language' => array( |
|
| 825 | - 'location' => 'query', |
|
| 826 | - 'type' => 'string', |
|
| 827 | - ), |
|
| 828 | - ), |
|
| 829 | - ),'getPermissions' => array( |
|
| 830 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
|
| 831 | - 'httpMethod' => 'GET', |
|
| 832 | - 'parameters' => array( |
|
| 833 | - 'enterpriseId' => array( |
|
| 834 | - 'location' => 'path', |
|
| 835 | - 'type' => 'string', |
|
| 836 | - 'required' => true, |
|
| 837 | - ), |
|
| 838 | - 'productId' => array( |
|
| 839 | - 'location' => 'path', |
|
| 840 | - 'type' => 'string', |
|
| 841 | - 'required' => true, |
|
| 842 | - ), |
|
| 843 | - ), |
|
| 844 | - ),'updatePermissions' => array( |
|
| 845 | - 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
|
| 846 | - 'httpMethod' => 'PUT', |
|
| 847 | - 'parameters' => array( |
|
| 848 | - 'enterpriseId' => array( |
|
| 849 | - 'location' => 'path', |
|
| 850 | - 'type' => 'string', |
|
| 851 | - 'required' => true, |
|
| 852 | - ), |
|
| 853 | - 'productId' => array( |
|
| 854 | - 'location' => 'path', |
|
| 855 | - 'type' => 'string', |
|
| 856 | - 'required' => true, |
|
| 857 | - ), |
|
| 858 | - ), |
|
| 859 | - ), |
|
| 860 | - ) |
|
| 861 | - ) |
|
| 862 | - ); |
|
| 863 | - $this->users = new Google_Service_AndroidEnterprise_Users_Resource( |
|
| 864 | - $this, |
|
| 865 | - $this->serviceName, |
|
| 866 | - 'users', |
|
| 867 | - array( |
|
| 868 | - 'methods' => array( |
|
| 869 | - 'generateToken' => array( |
|
| 870 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', |
|
| 871 | - 'httpMethod' => 'POST', |
|
| 872 | - 'parameters' => array( |
|
| 873 | - 'enterpriseId' => array( |
|
| 874 | - 'location' => 'path', |
|
| 875 | - 'type' => 'string', |
|
| 876 | - 'required' => true, |
|
| 877 | - ), |
|
| 878 | - 'userId' => array( |
|
| 879 | - 'location' => 'path', |
|
| 880 | - 'type' => 'string', |
|
| 881 | - 'required' => true, |
|
| 882 | - ), |
|
| 883 | - ), |
|
| 884 | - ),'get' => array( |
|
| 885 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}', |
|
| 886 | - 'httpMethod' => 'GET', |
|
| 887 | - 'parameters' => array( |
|
| 888 | - 'enterpriseId' => array( |
|
| 889 | - 'location' => 'path', |
|
| 890 | - 'type' => 'string', |
|
| 891 | - 'required' => true, |
|
| 892 | - ), |
|
| 893 | - 'userId' => array( |
|
| 894 | - 'location' => 'path', |
|
| 895 | - 'type' => 'string', |
|
| 896 | - 'required' => true, |
|
| 897 | - ), |
|
| 898 | - ), |
|
| 899 | - ),'list' => array( |
|
| 900 | - 'path' => 'enterprises/{enterpriseId}/users', |
|
| 901 | - 'httpMethod' => 'GET', |
|
| 902 | - 'parameters' => array( |
|
| 903 | - 'enterpriseId' => array( |
|
| 904 | - 'location' => 'path', |
|
| 905 | - 'type' => 'string', |
|
| 906 | - 'required' => true, |
|
| 907 | - ), |
|
| 908 | - 'email' => array( |
|
| 909 | - 'location' => 'query', |
|
| 910 | - 'type' => 'string', |
|
| 911 | - 'required' => true, |
|
| 912 | - ), |
|
| 913 | - ), |
|
| 914 | - ),'revokeToken' => array( |
|
| 915 | - 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', |
|
| 916 | - 'httpMethod' => 'DELETE', |
|
| 917 | - 'parameters' => array( |
|
| 918 | - 'enterpriseId' => array( |
|
| 919 | - 'location' => 'path', |
|
| 920 | - 'type' => 'string', |
|
| 921 | - 'required' => true, |
|
| 922 | - ), |
|
| 923 | - 'userId' => array( |
|
| 924 | - 'location' => 'path', |
|
| 925 | - 'type' => 'string', |
|
| 926 | - 'required' => true, |
|
| 927 | - ), |
|
| 928 | - ), |
|
| 929 | - ), |
|
| 930 | - ) |
|
| 931 | - ) |
|
| 932 | - ); |
|
| 58 | + parent::__construct($client); |
|
| 59 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 60 | + $this->servicePath = 'androidenterprise/v1/'; |
|
| 61 | + $this->version = 'v1'; |
|
| 62 | + $this->serviceName = 'androidenterprise'; |
|
| 63 | + |
|
| 64 | + $this->collections = new Google_Service_AndroidEnterprise_Collections_Resource( |
|
| 65 | + $this, |
|
| 66 | + $this->serviceName, |
|
| 67 | + 'collections', |
|
| 68 | + array( |
|
| 69 | + 'methods' => array( |
|
| 70 | + 'delete' => array( |
|
| 71 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 72 | + 'httpMethod' => 'DELETE', |
|
| 73 | + 'parameters' => array( |
|
| 74 | + 'enterpriseId' => array( |
|
| 75 | + 'location' => 'path', |
|
| 76 | + 'type' => 'string', |
|
| 77 | + 'required' => true, |
|
| 78 | + ), |
|
| 79 | + 'collectionId' => array( |
|
| 80 | + 'location' => 'path', |
|
| 81 | + 'type' => 'string', |
|
| 82 | + 'required' => true, |
|
| 83 | + ), |
|
| 84 | + ), |
|
| 85 | + ),'get' => array( |
|
| 86 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 87 | + 'httpMethod' => 'GET', |
|
| 88 | + 'parameters' => array( |
|
| 89 | + 'enterpriseId' => array( |
|
| 90 | + 'location' => 'path', |
|
| 91 | + 'type' => 'string', |
|
| 92 | + 'required' => true, |
|
| 93 | + ), |
|
| 94 | + 'collectionId' => array( |
|
| 95 | + 'location' => 'path', |
|
| 96 | + 'type' => 'string', |
|
| 97 | + 'required' => true, |
|
| 98 | + ), |
|
| 99 | + ), |
|
| 100 | + ),'insert' => array( |
|
| 101 | + 'path' => 'enterprises/{enterpriseId}/collections', |
|
| 102 | + 'httpMethod' => 'POST', |
|
| 103 | + 'parameters' => array( |
|
| 104 | + 'enterpriseId' => array( |
|
| 105 | + 'location' => 'path', |
|
| 106 | + 'type' => 'string', |
|
| 107 | + 'required' => true, |
|
| 108 | + ), |
|
| 109 | + ), |
|
| 110 | + ),'list' => array( |
|
| 111 | + 'path' => 'enterprises/{enterpriseId}/collections', |
|
| 112 | + 'httpMethod' => 'GET', |
|
| 113 | + 'parameters' => array( |
|
| 114 | + 'enterpriseId' => array( |
|
| 115 | + 'location' => 'path', |
|
| 116 | + 'type' => 'string', |
|
| 117 | + 'required' => true, |
|
| 118 | + ), |
|
| 119 | + ), |
|
| 120 | + ),'patch' => array( |
|
| 121 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 122 | + 'httpMethod' => 'PATCH', |
|
| 123 | + 'parameters' => array( |
|
| 124 | + 'enterpriseId' => array( |
|
| 125 | + 'location' => 'path', |
|
| 126 | + 'type' => 'string', |
|
| 127 | + 'required' => true, |
|
| 128 | + ), |
|
| 129 | + 'collectionId' => array( |
|
| 130 | + 'location' => 'path', |
|
| 131 | + 'type' => 'string', |
|
| 132 | + 'required' => true, |
|
| 133 | + ), |
|
| 134 | + ), |
|
| 135 | + ),'update' => array( |
|
| 136 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
|
| 137 | + 'httpMethod' => 'PUT', |
|
| 138 | + 'parameters' => array( |
|
| 139 | + 'enterpriseId' => array( |
|
| 140 | + 'location' => 'path', |
|
| 141 | + 'type' => 'string', |
|
| 142 | + 'required' => true, |
|
| 143 | + ), |
|
| 144 | + 'collectionId' => array( |
|
| 145 | + 'location' => 'path', |
|
| 146 | + 'type' => 'string', |
|
| 147 | + 'required' => true, |
|
| 148 | + ), |
|
| 149 | + ), |
|
| 150 | + ), |
|
| 151 | + ) |
|
| 152 | + ) |
|
| 153 | + ); |
|
| 154 | + $this->collectionviewers = new Google_Service_AndroidEnterprise_Collectionviewers_Resource( |
|
| 155 | + $this, |
|
| 156 | + $this->serviceName, |
|
| 157 | + 'collectionviewers', |
|
| 158 | + array( |
|
| 159 | + 'methods' => array( |
|
| 160 | + 'delete' => array( |
|
| 161 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 162 | + 'httpMethod' => 'DELETE', |
|
| 163 | + 'parameters' => array( |
|
| 164 | + 'enterpriseId' => array( |
|
| 165 | + 'location' => 'path', |
|
| 166 | + 'type' => 'string', |
|
| 167 | + 'required' => true, |
|
| 168 | + ), |
|
| 169 | + 'collectionId' => array( |
|
| 170 | + 'location' => 'path', |
|
| 171 | + 'type' => 'string', |
|
| 172 | + 'required' => true, |
|
| 173 | + ), |
|
| 174 | + 'userId' => array( |
|
| 175 | + 'location' => 'path', |
|
| 176 | + 'type' => 'string', |
|
| 177 | + 'required' => true, |
|
| 178 | + ), |
|
| 179 | + ), |
|
| 180 | + ),'get' => array( |
|
| 181 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 182 | + 'httpMethod' => 'GET', |
|
| 183 | + 'parameters' => array( |
|
| 184 | + 'enterpriseId' => array( |
|
| 185 | + 'location' => 'path', |
|
| 186 | + 'type' => 'string', |
|
| 187 | + 'required' => true, |
|
| 188 | + ), |
|
| 189 | + 'collectionId' => array( |
|
| 190 | + 'location' => 'path', |
|
| 191 | + 'type' => 'string', |
|
| 192 | + 'required' => true, |
|
| 193 | + ), |
|
| 194 | + 'userId' => array( |
|
| 195 | + 'location' => 'path', |
|
| 196 | + 'type' => 'string', |
|
| 197 | + 'required' => true, |
|
| 198 | + ), |
|
| 199 | + ), |
|
| 200 | + ),'list' => array( |
|
| 201 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users', |
|
| 202 | + 'httpMethod' => 'GET', |
|
| 203 | + 'parameters' => array( |
|
| 204 | + 'enterpriseId' => array( |
|
| 205 | + 'location' => 'path', |
|
| 206 | + 'type' => 'string', |
|
| 207 | + 'required' => true, |
|
| 208 | + ), |
|
| 209 | + 'collectionId' => array( |
|
| 210 | + 'location' => 'path', |
|
| 211 | + 'type' => 'string', |
|
| 212 | + 'required' => true, |
|
| 213 | + ), |
|
| 214 | + ), |
|
| 215 | + ),'patch' => array( |
|
| 216 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 217 | + 'httpMethod' => 'PATCH', |
|
| 218 | + 'parameters' => array( |
|
| 219 | + 'enterpriseId' => array( |
|
| 220 | + 'location' => 'path', |
|
| 221 | + 'type' => 'string', |
|
| 222 | + 'required' => true, |
|
| 223 | + ), |
|
| 224 | + 'collectionId' => array( |
|
| 225 | + 'location' => 'path', |
|
| 226 | + 'type' => 'string', |
|
| 227 | + 'required' => true, |
|
| 228 | + ), |
|
| 229 | + 'userId' => array( |
|
| 230 | + 'location' => 'path', |
|
| 231 | + 'type' => 'string', |
|
| 232 | + 'required' => true, |
|
| 233 | + ), |
|
| 234 | + ), |
|
| 235 | + ),'update' => array( |
|
| 236 | + 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
|
| 237 | + 'httpMethod' => 'PUT', |
|
| 238 | + 'parameters' => array( |
|
| 239 | + 'enterpriseId' => array( |
|
| 240 | + 'location' => 'path', |
|
| 241 | + 'type' => 'string', |
|
| 242 | + 'required' => true, |
|
| 243 | + ), |
|
| 244 | + 'collectionId' => 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 | + ), |
|
| 256 | + ) |
|
| 257 | + ) |
|
| 258 | + ); |
|
| 259 | + $this->devices = new Google_Service_AndroidEnterprise_Devices_Resource( |
|
| 260 | + $this, |
|
| 261 | + $this->serviceName, |
|
| 262 | + 'devices', |
|
| 263 | + array( |
|
| 264 | + 'methods' => array( |
|
| 265 | + 'get' => array( |
|
| 266 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}', |
|
| 267 | + 'httpMethod' => 'GET', |
|
| 268 | + 'parameters' => array( |
|
| 269 | + 'enterpriseId' => array( |
|
| 270 | + 'location' => 'path', |
|
| 271 | + 'type' => 'string', |
|
| 272 | + 'required' => true, |
|
| 273 | + ), |
|
| 274 | + 'userId' => array( |
|
| 275 | + 'location' => 'path', |
|
| 276 | + 'type' => 'string', |
|
| 277 | + 'required' => true, |
|
| 278 | + ), |
|
| 279 | + 'deviceId' => array( |
|
| 280 | + 'location' => 'path', |
|
| 281 | + 'type' => 'string', |
|
| 282 | + 'required' => true, |
|
| 283 | + ), |
|
| 284 | + ), |
|
| 285 | + ),'getState' => array( |
|
| 286 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
|
| 287 | + 'httpMethod' => 'GET', |
|
| 288 | + 'parameters' => array( |
|
| 289 | + 'enterpriseId' => array( |
|
| 290 | + 'location' => 'path', |
|
| 291 | + 'type' => 'string', |
|
| 292 | + 'required' => true, |
|
| 293 | + ), |
|
| 294 | + 'userId' => array( |
|
| 295 | + 'location' => 'path', |
|
| 296 | + 'type' => 'string', |
|
| 297 | + 'required' => true, |
|
| 298 | + ), |
|
| 299 | + 'deviceId' => array( |
|
| 300 | + 'location' => 'path', |
|
| 301 | + 'type' => 'string', |
|
| 302 | + 'required' => true, |
|
| 303 | + ), |
|
| 304 | + ), |
|
| 305 | + ),'list' => array( |
|
| 306 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices', |
|
| 307 | + 'httpMethod' => 'GET', |
|
| 308 | + 'parameters' => array( |
|
| 309 | + 'enterpriseId' => array( |
|
| 310 | + 'location' => 'path', |
|
| 311 | + 'type' => 'string', |
|
| 312 | + 'required' => true, |
|
| 313 | + ), |
|
| 314 | + 'userId' => array( |
|
| 315 | + 'location' => 'path', |
|
| 316 | + 'type' => 'string', |
|
| 317 | + 'required' => true, |
|
| 318 | + ), |
|
| 319 | + ), |
|
| 320 | + ),'setState' => array( |
|
| 321 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
|
| 322 | + 'httpMethod' => 'PUT', |
|
| 323 | + 'parameters' => array( |
|
| 324 | + 'enterpriseId' => array( |
|
| 325 | + 'location' => 'path', |
|
| 326 | + 'type' => 'string', |
|
| 327 | + 'required' => true, |
|
| 328 | + ), |
|
| 329 | + 'userId' => array( |
|
| 330 | + 'location' => 'path', |
|
| 331 | + 'type' => 'string', |
|
| 332 | + 'required' => true, |
|
| 333 | + ), |
|
| 334 | + 'deviceId' => array( |
|
| 335 | + 'location' => 'path', |
|
| 336 | + 'type' => 'string', |
|
| 337 | + 'required' => true, |
|
| 338 | + ), |
|
| 339 | + ), |
|
| 340 | + ), |
|
| 341 | + ) |
|
| 342 | + ) |
|
| 343 | + ); |
|
| 344 | + $this->enterprises = new Google_Service_AndroidEnterprise_Enterprises_Resource( |
|
| 345 | + $this, |
|
| 346 | + $this->serviceName, |
|
| 347 | + 'enterprises', |
|
| 348 | + array( |
|
| 349 | + 'methods' => array( |
|
| 350 | + 'delete' => array( |
|
| 351 | + 'path' => 'enterprises/{enterpriseId}', |
|
| 352 | + 'httpMethod' => 'DELETE', |
|
| 353 | + 'parameters' => array( |
|
| 354 | + 'enterpriseId' => array( |
|
| 355 | + 'location' => 'path', |
|
| 356 | + 'type' => 'string', |
|
| 357 | + 'required' => true, |
|
| 358 | + ), |
|
| 359 | + ), |
|
| 360 | + ),'enroll' => array( |
|
| 361 | + 'path' => 'enterprises/enroll', |
|
| 362 | + 'httpMethod' => 'POST', |
|
| 363 | + 'parameters' => array( |
|
| 364 | + 'token' => array( |
|
| 365 | + 'location' => 'query', |
|
| 366 | + 'type' => 'string', |
|
| 367 | + 'required' => true, |
|
| 368 | + ), |
|
| 369 | + ), |
|
| 370 | + ),'get' => array( |
|
| 371 | + 'path' => 'enterprises/{enterpriseId}', |
|
| 372 | + 'httpMethod' => 'GET', |
|
| 373 | + 'parameters' => array( |
|
| 374 | + 'enterpriseId' => array( |
|
| 375 | + 'location' => 'path', |
|
| 376 | + 'type' => 'string', |
|
| 377 | + 'required' => true, |
|
| 378 | + ), |
|
| 379 | + ), |
|
| 380 | + ),'insert' => array( |
|
| 381 | + 'path' => 'enterprises', |
|
| 382 | + 'httpMethod' => 'POST', |
|
| 383 | + 'parameters' => array( |
|
| 384 | + 'token' => array( |
|
| 385 | + 'location' => 'query', |
|
| 386 | + 'type' => 'string', |
|
| 387 | + 'required' => true, |
|
| 388 | + ), |
|
| 389 | + ), |
|
| 390 | + ),'list' => array( |
|
| 391 | + 'path' => 'enterprises', |
|
| 392 | + 'httpMethod' => 'GET', |
|
| 393 | + 'parameters' => array( |
|
| 394 | + 'domain' => array( |
|
| 395 | + 'location' => 'query', |
|
| 396 | + 'type' => 'string', |
|
| 397 | + 'required' => true, |
|
| 398 | + ), |
|
| 399 | + ), |
|
| 400 | + ),'setAccount' => array( |
|
| 401 | + 'path' => 'enterprises/{enterpriseId}/account', |
|
| 402 | + 'httpMethod' => 'PUT', |
|
| 403 | + 'parameters' => array( |
|
| 404 | + 'enterpriseId' => array( |
|
| 405 | + 'location' => 'path', |
|
| 406 | + 'type' => 'string', |
|
| 407 | + 'required' => true, |
|
| 408 | + ), |
|
| 409 | + ), |
|
| 410 | + ),'unenroll' => array( |
|
| 411 | + 'path' => 'enterprises/{enterpriseId}/unenroll', |
|
| 412 | + 'httpMethod' => 'POST', |
|
| 413 | + 'parameters' => array( |
|
| 414 | + 'enterpriseId' => array( |
|
| 415 | + 'location' => 'path', |
|
| 416 | + 'type' => 'string', |
|
| 417 | + 'required' => true, |
|
| 418 | + ), |
|
| 419 | + ), |
|
| 420 | + ), |
|
| 421 | + ) |
|
| 422 | + ) |
|
| 423 | + ); |
|
| 424 | + $this->entitlements = new Google_Service_AndroidEnterprise_Entitlements_Resource( |
|
| 425 | + $this, |
|
| 426 | + $this->serviceName, |
|
| 427 | + 'entitlements', |
|
| 428 | + array( |
|
| 429 | + 'methods' => array( |
|
| 430 | + 'delete' => array( |
|
| 431 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 432 | + 'httpMethod' => 'DELETE', |
|
| 433 | + 'parameters' => array( |
|
| 434 | + 'enterpriseId' => array( |
|
| 435 | + 'location' => 'path', |
|
| 436 | + 'type' => 'string', |
|
| 437 | + 'required' => true, |
|
| 438 | + ), |
|
| 439 | + 'userId' => array( |
|
| 440 | + 'location' => 'path', |
|
| 441 | + 'type' => 'string', |
|
| 442 | + 'required' => true, |
|
| 443 | + ), |
|
| 444 | + 'entitlementId' => array( |
|
| 445 | + 'location' => 'path', |
|
| 446 | + 'type' => 'string', |
|
| 447 | + 'required' => true, |
|
| 448 | + ), |
|
| 449 | + ), |
|
| 450 | + ),'get' => array( |
|
| 451 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 452 | + 'httpMethod' => 'GET', |
|
| 453 | + 'parameters' => array( |
|
| 454 | + 'enterpriseId' => array( |
|
| 455 | + 'location' => 'path', |
|
| 456 | + 'type' => 'string', |
|
| 457 | + 'required' => true, |
|
| 458 | + ), |
|
| 459 | + 'userId' => array( |
|
| 460 | + 'location' => 'path', |
|
| 461 | + 'type' => 'string', |
|
| 462 | + 'required' => true, |
|
| 463 | + ), |
|
| 464 | + 'entitlementId' => array( |
|
| 465 | + 'location' => 'path', |
|
| 466 | + 'type' => 'string', |
|
| 467 | + 'required' => true, |
|
| 468 | + ), |
|
| 469 | + ), |
|
| 470 | + ),'list' => array( |
|
| 471 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements', |
|
| 472 | + 'httpMethod' => 'GET', |
|
| 473 | + 'parameters' => array( |
|
| 474 | + 'enterpriseId' => array( |
|
| 475 | + 'location' => 'path', |
|
| 476 | + 'type' => 'string', |
|
| 477 | + 'required' => true, |
|
| 478 | + ), |
|
| 479 | + 'userId' => array( |
|
| 480 | + 'location' => 'path', |
|
| 481 | + 'type' => 'string', |
|
| 482 | + 'required' => true, |
|
| 483 | + ), |
|
| 484 | + ), |
|
| 485 | + ),'patch' => array( |
|
| 486 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 487 | + 'httpMethod' => 'PATCH', |
|
| 488 | + 'parameters' => array( |
|
| 489 | + 'enterpriseId' => array( |
|
| 490 | + 'location' => 'path', |
|
| 491 | + 'type' => 'string', |
|
| 492 | + 'required' => true, |
|
| 493 | + ), |
|
| 494 | + 'userId' => array( |
|
| 495 | + 'location' => 'path', |
|
| 496 | + 'type' => 'string', |
|
| 497 | + 'required' => true, |
|
| 498 | + ), |
|
| 499 | + 'entitlementId' => array( |
|
| 500 | + 'location' => 'path', |
|
| 501 | + 'type' => 'string', |
|
| 502 | + 'required' => true, |
|
| 503 | + ), |
|
| 504 | + 'install' => array( |
|
| 505 | + 'location' => 'query', |
|
| 506 | + 'type' => 'boolean', |
|
| 507 | + ), |
|
| 508 | + ), |
|
| 509 | + ),'update' => array( |
|
| 510 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
|
| 511 | + 'httpMethod' => 'PUT', |
|
| 512 | + 'parameters' => array( |
|
| 513 | + 'enterpriseId' => array( |
|
| 514 | + 'location' => 'path', |
|
| 515 | + 'type' => 'string', |
|
| 516 | + 'required' => true, |
|
| 517 | + ), |
|
| 518 | + 'userId' => array( |
|
| 519 | + 'location' => 'path', |
|
| 520 | + 'type' => 'string', |
|
| 521 | + 'required' => true, |
|
| 522 | + ), |
|
| 523 | + 'entitlementId' => array( |
|
| 524 | + 'location' => 'path', |
|
| 525 | + 'type' => 'string', |
|
| 526 | + 'required' => true, |
|
| 527 | + ), |
|
| 528 | + 'install' => array( |
|
| 529 | + 'location' => 'query', |
|
| 530 | + 'type' => 'boolean', |
|
| 531 | + ), |
|
| 532 | + ), |
|
| 533 | + ), |
|
| 534 | + ) |
|
| 535 | + ) |
|
| 536 | + ); |
|
| 537 | + $this->grouplicenses = new Google_Service_AndroidEnterprise_Grouplicenses_Resource( |
|
| 538 | + $this, |
|
| 539 | + $this->serviceName, |
|
| 540 | + 'grouplicenses', |
|
| 541 | + array( |
|
| 542 | + 'methods' => array( |
|
| 543 | + 'get' => array( |
|
| 544 | + 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}', |
|
| 545 | + 'httpMethod' => 'GET', |
|
| 546 | + 'parameters' => array( |
|
| 547 | + 'enterpriseId' => array( |
|
| 548 | + 'location' => 'path', |
|
| 549 | + 'type' => 'string', |
|
| 550 | + 'required' => true, |
|
| 551 | + ), |
|
| 552 | + 'groupLicenseId' => array( |
|
| 553 | + 'location' => 'path', |
|
| 554 | + 'type' => 'string', |
|
| 555 | + 'required' => true, |
|
| 556 | + ), |
|
| 557 | + ), |
|
| 558 | + ),'list' => array( |
|
| 559 | + 'path' => 'enterprises/{enterpriseId}/groupLicenses', |
|
| 560 | + 'httpMethod' => 'GET', |
|
| 561 | + 'parameters' => array( |
|
| 562 | + 'enterpriseId' => array( |
|
| 563 | + 'location' => 'path', |
|
| 564 | + 'type' => 'string', |
|
| 565 | + 'required' => true, |
|
| 566 | + ), |
|
| 567 | + ), |
|
| 568 | + ), |
|
| 569 | + ) |
|
| 570 | + ) |
|
| 571 | + ); |
|
| 572 | + $this->grouplicenseusers = new Google_Service_AndroidEnterprise_Grouplicenseusers_Resource( |
|
| 573 | + $this, |
|
| 574 | + $this->serviceName, |
|
| 575 | + 'grouplicenseusers', |
|
| 576 | + array( |
|
| 577 | + 'methods' => array( |
|
| 578 | + 'list' => array( |
|
| 579 | + 'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users', |
|
| 580 | + 'httpMethod' => 'GET', |
|
| 581 | + 'parameters' => array( |
|
| 582 | + 'enterpriseId' => array( |
|
| 583 | + 'location' => 'path', |
|
| 584 | + 'type' => 'string', |
|
| 585 | + 'required' => true, |
|
| 586 | + ), |
|
| 587 | + 'groupLicenseId' => array( |
|
| 588 | + 'location' => 'path', |
|
| 589 | + 'type' => 'string', |
|
| 590 | + 'required' => true, |
|
| 591 | + ), |
|
| 592 | + ), |
|
| 593 | + ), |
|
| 594 | + ) |
|
| 595 | + ) |
|
| 596 | + ); |
|
| 597 | + $this->installs = new Google_Service_AndroidEnterprise_Installs_Resource( |
|
| 598 | + $this, |
|
| 599 | + $this->serviceName, |
|
| 600 | + 'installs', |
|
| 601 | + array( |
|
| 602 | + 'methods' => array( |
|
| 603 | + 'delete' => array( |
|
| 604 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 605 | + 'httpMethod' => 'DELETE', |
|
| 606 | + 'parameters' => array( |
|
| 607 | + 'enterpriseId' => array( |
|
| 608 | + 'location' => 'path', |
|
| 609 | + 'type' => 'string', |
|
| 610 | + 'required' => true, |
|
| 611 | + ), |
|
| 612 | + 'userId' => array( |
|
| 613 | + 'location' => 'path', |
|
| 614 | + 'type' => 'string', |
|
| 615 | + 'required' => true, |
|
| 616 | + ), |
|
| 617 | + 'deviceId' => array( |
|
| 618 | + 'location' => 'path', |
|
| 619 | + 'type' => 'string', |
|
| 620 | + 'required' => true, |
|
| 621 | + ), |
|
| 622 | + 'installId' => array( |
|
| 623 | + 'location' => 'path', |
|
| 624 | + 'type' => 'string', |
|
| 625 | + 'required' => true, |
|
| 626 | + ), |
|
| 627 | + ), |
|
| 628 | + ),'get' => array( |
|
| 629 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 630 | + 'httpMethod' => 'GET', |
|
| 631 | + 'parameters' => array( |
|
| 632 | + 'enterpriseId' => array( |
|
| 633 | + 'location' => 'path', |
|
| 634 | + 'type' => 'string', |
|
| 635 | + 'required' => true, |
|
| 636 | + ), |
|
| 637 | + 'userId' => array( |
|
| 638 | + 'location' => 'path', |
|
| 639 | + 'type' => 'string', |
|
| 640 | + 'required' => true, |
|
| 641 | + ), |
|
| 642 | + 'deviceId' => array( |
|
| 643 | + 'location' => 'path', |
|
| 644 | + 'type' => 'string', |
|
| 645 | + 'required' => true, |
|
| 646 | + ), |
|
| 647 | + 'installId' => array( |
|
| 648 | + 'location' => 'path', |
|
| 649 | + 'type' => 'string', |
|
| 650 | + 'required' => true, |
|
| 651 | + ), |
|
| 652 | + ), |
|
| 653 | + ),'list' => array( |
|
| 654 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs', |
|
| 655 | + 'httpMethod' => 'GET', |
|
| 656 | + 'parameters' => array( |
|
| 657 | + 'enterpriseId' => array( |
|
| 658 | + 'location' => 'path', |
|
| 659 | + 'type' => 'string', |
|
| 660 | + 'required' => true, |
|
| 661 | + ), |
|
| 662 | + 'userId' => array( |
|
| 663 | + 'location' => 'path', |
|
| 664 | + 'type' => 'string', |
|
| 665 | + 'required' => true, |
|
| 666 | + ), |
|
| 667 | + 'deviceId' => array( |
|
| 668 | + 'location' => 'path', |
|
| 669 | + 'type' => 'string', |
|
| 670 | + 'required' => true, |
|
| 671 | + ), |
|
| 672 | + ), |
|
| 673 | + ),'patch' => array( |
|
| 674 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 675 | + 'httpMethod' => 'PATCH', |
|
| 676 | + 'parameters' => array( |
|
| 677 | + 'enterpriseId' => array( |
|
| 678 | + 'location' => 'path', |
|
| 679 | + 'type' => 'string', |
|
| 680 | + 'required' => true, |
|
| 681 | + ), |
|
| 682 | + 'userId' => array( |
|
| 683 | + 'location' => 'path', |
|
| 684 | + 'type' => 'string', |
|
| 685 | + 'required' => true, |
|
| 686 | + ), |
|
| 687 | + 'deviceId' => array( |
|
| 688 | + 'location' => 'path', |
|
| 689 | + 'type' => 'string', |
|
| 690 | + 'required' => true, |
|
| 691 | + ), |
|
| 692 | + 'installId' => array( |
|
| 693 | + 'location' => 'path', |
|
| 694 | + 'type' => 'string', |
|
| 695 | + 'required' => true, |
|
| 696 | + ), |
|
| 697 | + ), |
|
| 698 | + ),'update' => array( |
|
| 699 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
|
| 700 | + 'httpMethod' => 'PUT', |
|
| 701 | + 'parameters' => array( |
|
| 702 | + 'enterpriseId' => array( |
|
| 703 | + 'location' => 'path', |
|
| 704 | + 'type' => 'string', |
|
| 705 | + 'required' => true, |
|
| 706 | + ), |
|
| 707 | + 'userId' => array( |
|
| 708 | + 'location' => 'path', |
|
| 709 | + 'type' => 'string', |
|
| 710 | + 'required' => true, |
|
| 711 | + ), |
|
| 712 | + 'deviceId' => array( |
|
| 713 | + 'location' => 'path', |
|
| 714 | + 'type' => 'string', |
|
| 715 | + 'required' => true, |
|
| 716 | + ), |
|
| 717 | + 'installId' => array( |
|
| 718 | + 'location' => 'path', |
|
| 719 | + 'type' => 'string', |
|
| 720 | + 'required' => true, |
|
| 721 | + ), |
|
| 722 | + ), |
|
| 723 | + ), |
|
| 724 | + ) |
|
| 725 | + ) |
|
| 726 | + ); |
|
| 727 | + $this->permissions = new Google_Service_AndroidEnterprise_Permissions_Resource( |
|
| 728 | + $this, |
|
| 729 | + $this->serviceName, |
|
| 730 | + 'permissions', |
|
| 731 | + array( |
|
| 732 | + 'methods' => array( |
|
| 733 | + 'get' => array( |
|
| 734 | + 'path' => 'permissions/{permissionId}', |
|
| 735 | + 'httpMethod' => 'GET', |
|
| 736 | + 'parameters' => array( |
|
| 737 | + 'permissionId' => array( |
|
| 738 | + 'location' => 'path', |
|
| 739 | + 'type' => 'string', |
|
| 740 | + 'required' => true, |
|
| 741 | + ), |
|
| 742 | + 'language' => array( |
|
| 743 | + 'location' => 'query', |
|
| 744 | + 'type' => 'string', |
|
| 745 | + ), |
|
| 746 | + ), |
|
| 747 | + ), |
|
| 748 | + ) |
|
| 749 | + ) |
|
| 750 | + ); |
|
| 751 | + $this->products = new Google_Service_AndroidEnterprise_Products_Resource( |
|
| 752 | + $this, |
|
| 753 | + $this->serviceName, |
|
| 754 | + 'products', |
|
| 755 | + array( |
|
| 756 | + 'methods' => array( |
|
| 757 | + 'approve' => array( |
|
| 758 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}/approve', |
|
| 759 | + 'httpMethod' => 'POST', |
|
| 760 | + 'parameters' => array( |
|
| 761 | + 'enterpriseId' => array( |
|
| 762 | + 'location' => 'path', |
|
| 763 | + 'type' => 'string', |
|
| 764 | + 'required' => true, |
|
| 765 | + ), |
|
| 766 | + 'productId' => array( |
|
| 767 | + 'location' => 'path', |
|
| 768 | + 'type' => 'string', |
|
| 769 | + 'required' => true, |
|
| 770 | + ), |
|
| 771 | + ), |
|
| 772 | + ),'generateApprovalUrl' => array( |
|
| 773 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl', |
|
| 774 | + 'httpMethod' => 'POST', |
|
| 775 | + 'parameters' => array( |
|
| 776 | + 'enterpriseId' => array( |
|
| 777 | + 'location' => 'path', |
|
| 778 | + 'type' => 'string', |
|
| 779 | + 'required' => true, |
|
| 780 | + ), |
|
| 781 | + 'productId' => array( |
|
| 782 | + 'location' => 'path', |
|
| 783 | + 'type' => 'string', |
|
| 784 | + 'required' => true, |
|
| 785 | + ), |
|
| 786 | + 'languageCode' => array( |
|
| 787 | + 'location' => 'query', |
|
| 788 | + 'type' => 'string', |
|
| 789 | + ), |
|
| 790 | + ), |
|
| 791 | + ),'get' => array( |
|
| 792 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}', |
|
| 793 | + 'httpMethod' => 'GET', |
|
| 794 | + 'parameters' => array( |
|
| 795 | + 'enterpriseId' => array( |
|
| 796 | + 'location' => 'path', |
|
| 797 | + 'type' => 'string', |
|
| 798 | + 'required' => true, |
|
| 799 | + ), |
|
| 800 | + 'productId' => array( |
|
| 801 | + 'location' => 'path', |
|
| 802 | + 'type' => 'string', |
|
| 803 | + 'required' => true, |
|
| 804 | + ), |
|
| 805 | + 'language' => array( |
|
| 806 | + 'location' => 'query', |
|
| 807 | + 'type' => 'string', |
|
| 808 | + ), |
|
| 809 | + ), |
|
| 810 | + ),'getAppRestrictionsSchema' => array( |
|
| 811 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema', |
|
| 812 | + 'httpMethod' => 'GET', |
|
| 813 | + 'parameters' => array( |
|
| 814 | + 'enterpriseId' => array( |
|
| 815 | + 'location' => 'path', |
|
| 816 | + 'type' => 'string', |
|
| 817 | + 'required' => true, |
|
| 818 | + ), |
|
| 819 | + 'productId' => array( |
|
| 820 | + 'location' => 'path', |
|
| 821 | + 'type' => 'string', |
|
| 822 | + 'required' => true, |
|
| 823 | + ), |
|
| 824 | + 'language' => array( |
|
| 825 | + 'location' => 'query', |
|
| 826 | + 'type' => 'string', |
|
| 827 | + ), |
|
| 828 | + ), |
|
| 829 | + ),'getPermissions' => array( |
|
| 830 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
|
| 831 | + 'httpMethod' => 'GET', |
|
| 832 | + 'parameters' => array( |
|
| 833 | + 'enterpriseId' => array( |
|
| 834 | + 'location' => 'path', |
|
| 835 | + 'type' => 'string', |
|
| 836 | + 'required' => true, |
|
| 837 | + ), |
|
| 838 | + 'productId' => array( |
|
| 839 | + 'location' => 'path', |
|
| 840 | + 'type' => 'string', |
|
| 841 | + 'required' => true, |
|
| 842 | + ), |
|
| 843 | + ), |
|
| 844 | + ),'updatePermissions' => array( |
|
| 845 | + 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
|
| 846 | + 'httpMethod' => 'PUT', |
|
| 847 | + 'parameters' => array( |
|
| 848 | + 'enterpriseId' => array( |
|
| 849 | + 'location' => 'path', |
|
| 850 | + 'type' => 'string', |
|
| 851 | + 'required' => true, |
|
| 852 | + ), |
|
| 853 | + 'productId' => array( |
|
| 854 | + 'location' => 'path', |
|
| 855 | + 'type' => 'string', |
|
| 856 | + 'required' => true, |
|
| 857 | + ), |
|
| 858 | + ), |
|
| 859 | + ), |
|
| 860 | + ) |
|
| 861 | + ) |
|
| 862 | + ); |
|
| 863 | + $this->users = new Google_Service_AndroidEnterprise_Users_Resource( |
|
| 864 | + $this, |
|
| 865 | + $this->serviceName, |
|
| 866 | + 'users', |
|
| 867 | + array( |
|
| 868 | + 'methods' => array( |
|
| 869 | + 'generateToken' => array( |
|
| 870 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', |
|
| 871 | + 'httpMethod' => 'POST', |
|
| 872 | + 'parameters' => array( |
|
| 873 | + 'enterpriseId' => array( |
|
| 874 | + 'location' => 'path', |
|
| 875 | + 'type' => 'string', |
|
| 876 | + 'required' => true, |
|
| 877 | + ), |
|
| 878 | + 'userId' => array( |
|
| 879 | + 'location' => 'path', |
|
| 880 | + 'type' => 'string', |
|
| 881 | + 'required' => true, |
|
| 882 | + ), |
|
| 883 | + ), |
|
| 884 | + ),'get' => array( |
|
| 885 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}', |
|
| 886 | + 'httpMethod' => 'GET', |
|
| 887 | + 'parameters' => array( |
|
| 888 | + 'enterpriseId' => array( |
|
| 889 | + 'location' => 'path', |
|
| 890 | + 'type' => 'string', |
|
| 891 | + 'required' => true, |
|
| 892 | + ), |
|
| 893 | + 'userId' => array( |
|
| 894 | + 'location' => 'path', |
|
| 895 | + 'type' => 'string', |
|
| 896 | + 'required' => true, |
|
| 897 | + ), |
|
| 898 | + ), |
|
| 899 | + ),'list' => array( |
|
| 900 | + 'path' => 'enterprises/{enterpriseId}/users', |
|
| 901 | + 'httpMethod' => 'GET', |
|
| 902 | + 'parameters' => array( |
|
| 903 | + 'enterpriseId' => array( |
|
| 904 | + 'location' => 'path', |
|
| 905 | + 'type' => 'string', |
|
| 906 | + 'required' => true, |
|
| 907 | + ), |
|
| 908 | + 'email' => array( |
|
| 909 | + 'location' => 'query', |
|
| 910 | + 'type' => 'string', |
|
| 911 | + 'required' => true, |
|
| 912 | + ), |
|
| 913 | + ), |
|
| 914 | + ),'revokeToken' => array( |
|
| 915 | + 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', |
|
| 916 | + 'httpMethod' => 'DELETE', |
|
| 917 | + 'parameters' => array( |
|
| 918 | + 'enterpriseId' => array( |
|
| 919 | + 'location' => 'path', |
|
| 920 | + 'type' => 'string', |
|
| 921 | + 'required' => true, |
|
| 922 | + ), |
|
| 923 | + 'userId' => array( |
|
| 924 | + 'location' => 'path', |
|
| 925 | + 'type' => 'string', |
|
| 926 | + 'required' => true, |
|
| 927 | + ), |
|
| 928 | + ), |
|
| 929 | + ), |
|
| 930 | + ) |
|
| 931 | + ) |
|
| 932 | + ); |
|
| 933 | 933 | } |
| 934 | 934 | } |
| 935 | 935 | |
@@ -954,9 +954,9 @@ discard block |
||
| 954 | 954 | */ |
| 955 | 955 | public function delete($enterpriseId, $collectionId, $optParams = array()) |
| 956 | 956 | { |
| 957 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 958 | - $params = array_merge($params, $optParams); |
|
| 959 | - return $this->call('delete', array($params)); |
|
| 957 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 958 | + $params = array_merge($params, $optParams); |
|
| 959 | + return $this->call('delete', array($params)); |
|
| 960 | 960 | } |
| 961 | 961 | |
| 962 | 962 | /** |
@@ -969,9 +969,9 @@ discard block |
||
| 969 | 969 | */ |
| 970 | 970 | public function get($enterpriseId, $collectionId, $optParams = array()) |
| 971 | 971 | { |
| 972 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 973 | - $params = array_merge($params, $optParams); |
|
| 974 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 972 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 973 | + $params = array_merge($params, $optParams); |
|
| 974 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 975 | 975 | } |
| 976 | 976 | |
| 977 | 977 | /** |
@@ -984,9 +984,9 @@ discard block |
||
| 984 | 984 | */ |
| 985 | 985 | public function insert($enterpriseId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array()) |
| 986 | 986 | { |
| 987 | - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); |
|
| 988 | - $params = array_merge($params, $optParams); |
|
| 989 | - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 987 | + $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); |
|
| 988 | + $params = array_merge($params, $optParams); |
|
| 989 | + return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 990 | 990 | } |
| 991 | 991 | |
| 992 | 992 | /** |
@@ -999,9 +999,9 @@ discard block |
||
| 999 | 999 | */ |
| 1000 | 1000 | public function listCollections($enterpriseId, $optParams = array()) |
| 1001 | 1001 | { |
| 1002 | - $params = array('enterpriseId' => $enterpriseId); |
|
| 1003 | - $params = array_merge($params, $optParams); |
|
| 1004 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionsListResponse"); |
|
| 1002 | + $params = array('enterpriseId' => $enterpriseId); |
|
| 1003 | + $params = array_merge($params, $optParams); |
|
| 1004 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionsListResponse"); |
|
| 1005 | 1005 | } |
| 1006 | 1006 | |
| 1007 | 1007 | /** |
@@ -1016,9 +1016,9 @@ discard block |
||
| 1016 | 1016 | */ |
| 1017 | 1017 | public function patch($enterpriseId, $collectionId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array()) |
| 1018 | 1018 | { |
| 1019 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody); |
|
| 1020 | - $params = array_merge($params, $optParams); |
|
| 1021 | - return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 1019 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody); |
|
| 1020 | + $params = array_merge($params, $optParams); |
|
| 1021 | + return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 1022 | 1022 | } |
| 1023 | 1023 | |
| 1024 | 1024 | /** |
@@ -1032,9 +1032,9 @@ discard block |
||
| 1032 | 1032 | */ |
| 1033 | 1033 | public function update($enterpriseId, $collectionId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array()) |
| 1034 | 1034 | { |
| 1035 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody); |
|
| 1036 | - $params = array_merge($params, $optParams); |
|
| 1037 | - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 1035 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody); |
|
| 1036 | + $params = array_merge($params, $optParams); |
|
| 1037 | + return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Collection"); |
|
| 1038 | 1038 | } |
| 1039 | 1039 | } |
| 1040 | 1040 | |
@@ -1061,9 +1061,9 @@ discard block |
||
| 1061 | 1061 | */ |
| 1062 | 1062 | public function delete($enterpriseId, $collectionId, $userId, $optParams = array()) |
| 1063 | 1063 | { |
| 1064 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId); |
|
| 1065 | - $params = array_merge($params, $optParams); |
|
| 1066 | - return $this->call('delete', array($params)); |
|
| 1064 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId); |
|
| 1065 | + $params = array_merge($params, $optParams); |
|
| 1066 | + return $this->call('delete', array($params)); |
|
| 1067 | 1067 | } |
| 1068 | 1068 | |
| 1069 | 1069 | /** |
@@ -1079,9 +1079,9 @@ discard block |
||
| 1079 | 1079 | */ |
| 1080 | 1080 | public function get($enterpriseId, $collectionId, $userId, $optParams = array()) |
| 1081 | 1081 | { |
| 1082 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId); |
|
| 1083 | - $params = array_merge($params, $optParams); |
|
| 1084 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1082 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId); |
|
| 1083 | + $params = array_merge($params, $optParams); |
|
| 1084 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1085 | 1085 | } |
| 1086 | 1086 | |
| 1087 | 1087 | /** |
@@ -1097,9 +1097,9 @@ discard block |
||
| 1097 | 1097 | */ |
| 1098 | 1098 | public function listCollectionviewers($enterpriseId, $collectionId, $optParams = array()) |
| 1099 | 1099 | { |
| 1100 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 1101 | - $params = array_merge($params, $optParams); |
|
| 1102 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionViewersListResponse"); |
|
| 1100 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId); |
|
| 1101 | + $params = array_merge($params, $optParams); |
|
| 1102 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionViewersListResponse"); |
|
| 1103 | 1103 | } |
| 1104 | 1104 | |
| 1105 | 1105 | /** |
@@ -1117,9 +1117,9 @@ discard block |
||
| 1117 | 1117 | */ |
| 1118 | 1118 | public function patch($enterpriseId, $collectionId, $userId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array()) |
| 1119 | 1119 | { |
| 1120 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody); |
|
| 1121 | - $params = array_merge($params, $optParams); |
|
| 1122 | - return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1120 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody); |
|
| 1121 | + $params = array_merge($params, $optParams); |
|
| 1122 | + return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1123 | 1123 | } |
| 1124 | 1124 | |
| 1125 | 1125 | /** |
@@ -1136,9 +1136,9 @@ discard block |
||
| 1136 | 1136 | */ |
| 1137 | 1137 | public function update($enterpriseId, $collectionId, $userId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array()) |
| 1138 | 1138 | { |
| 1139 | - $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody); |
|
| 1140 | - $params = array_merge($params, $optParams); |
|
| 1141 | - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1139 | + $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody); |
|
| 1140 | + $params = array_merge($params, $optParams); |
|
| 1141 | + return $this->call('update', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1142 | 1142 | } |
| 1143 | 1143 | } |
| 1144 | 1144 | |
@@ -1164,9 +1164,9 @@ discard block |
||
| 1164 | 1164 | */ |
| 1165 | 1165 | public function get($enterpriseId, $userId, $deviceId, $optParams = array()) |
| 1166 | 1166 | { |
| 1167 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1168 | - $params = array_merge($params, $optParams); |
|
| 1169 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Device"); |
|
| 1167 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1168 | + $params = array_merge($params, $optParams); |
|
| 1169 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Device"); |
|
| 1170 | 1170 | } |
| 1171 | 1171 | |
| 1172 | 1172 | /** |
@@ -1184,9 +1184,9 @@ discard block |
||
| 1184 | 1184 | */ |
| 1185 | 1185 | public function getState($enterpriseId, $userId, $deviceId, $optParams = array()) |
| 1186 | 1186 | { |
| 1187 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1188 | - $params = array_merge($params, $optParams); |
|
| 1189 | - return $this->call('getState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); |
|
| 1187 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1188 | + $params = array_merge($params, $optParams); |
|
| 1189 | + return $this->call('getState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); |
|
| 1190 | 1190 | } |
| 1191 | 1191 | |
| 1192 | 1192 | /** |
@@ -1199,9 +1199,9 @@ discard block |
||
| 1199 | 1199 | */ |
| 1200 | 1200 | public function listDevices($enterpriseId, $userId, $optParams = array()) |
| 1201 | 1201 | { |
| 1202 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1203 | - $params = array_merge($params, $optParams); |
|
| 1204 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_DevicesListResponse"); |
|
| 1202 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1203 | + $params = array_merge($params, $optParams); |
|
| 1204 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_DevicesListResponse"); |
|
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | 1207 | /** |
@@ -1220,9 +1220,9 @@ discard block |
||
| 1220 | 1220 | */ |
| 1221 | 1221 | public function setState($enterpriseId, $userId, $deviceId, Google_Service_AndroidEnterprise_DeviceState $postBody, $optParams = array()) |
| 1222 | 1222 | { |
| 1223 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody); |
|
| 1224 | - $params = array_merge($params, $optParams); |
|
| 1225 | - return $this->call('setState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); |
|
| 1223 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody); |
|
| 1224 | + $params = array_merge($params, $optParams); |
|
| 1225 | + return $this->call('setState', array($params), "Google_Service_AndroidEnterprise_DeviceState"); |
|
| 1226 | 1226 | } |
| 1227 | 1227 | } |
| 1228 | 1228 | |
@@ -1248,9 +1248,9 @@ discard block |
||
| 1248 | 1248 | */ |
| 1249 | 1249 | public function delete($enterpriseId, $optParams = array()) |
| 1250 | 1250 | { |
| 1251 | - $params = array('enterpriseId' => $enterpriseId); |
|
| 1252 | - $params = array_merge($params, $optParams); |
|
| 1253 | - return $this->call('delete', array($params)); |
|
| 1251 | + $params = array('enterpriseId' => $enterpriseId); |
|
| 1252 | + $params = array_merge($params, $optParams); |
|
| 1253 | + return $this->call('delete', array($params)); |
|
| 1254 | 1254 | } |
| 1255 | 1255 | |
| 1256 | 1256 | /** |
@@ -1264,9 +1264,9 @@ discard block |
||
| 1264 | 1264 | */ |
| 1265 | 1265 | public function enroll($token, Google_Service_AndroidEnterprise_Enterprise $postBody, $optParams = array()) |
| 1266 | 1266 | { |
| 1267 | - $params = array('token' => $token, 'postBody' => $postBody); |
|
| 1268 | - $params = array_merge($params, $optParams); |
|
| 1269 | - return $this->call('enroll', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1267 | + $params = array('token' => $token, 'postBody' => $postBody); |
|
| 1268 | + $params = array_merge($params, $optParams); |
|
| 1269 | + return $this->call('enroll', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1270 | 1270 | } |
| 1271 | 1271 | |
| 1272 | 1272 | /** |
@@ -1278,9 +1278,9 @@ discard block |
||
| 1278 | 1278 | */ |
| 1279 | 1279 | public function get($enterpriseId, $optParams = array()) |
| 1280 | 1280 | { |
| 1281 | - $params = array('enterpriseId' => $enterpriseId); |
|
| 1282 | - $params = array_merge($params, $optParams); |
|
| 1283 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1281 | + $params = array('enterpriseId' => $enterpriseId); |
|
| 1282 | + $params = array_merge($params, $optParams); |
|
| 1283 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1284 | 1284 | } |
| 1285 | 1285 | |
| 1286 | 1286 | /** |
@@ -1295,9 +1295,9 @@ discard block |
||
| 1295 | 1295 | */ |
| 1296 | 1296 | public function insert($token, Google_Service_AndroidEnterprise_Enterprise $postBody, $optParams = array()) |
| 1297 | 1297 | { |
| 1298 | - $params = array('token' => $token, 'postBody' => $postBody); |
|
| 1299 | - $params = array_merge($params, $optParams); |
|
| 1300 | - return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1298 | + $params = array('token' => $token, 'postBody' => $postBody); |
|
| 1299 | + $params = array_merge($params, $optParams); |
|
| 1300 | + return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Enterprise"); |
|
| 1301 | 1301 | } |
| 1302 | 1302 | |
| 1303 | 1303 | /** |
@@ -1310,9 +1310,9 @@ discard block |
||
| 1310 | 1310 | */ |
| 1311 | 1311 | public function listEnterprises($domain, $optParams = array()) |
| 1312 | 1312 | { |
| 1313 | - $params = array('domain' => $domain); |
|
| 1314 | - $params = array_merge($params, $optParams); |
|
| 1315 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EnterprisesListResponse"); |
|
| 1313 | + $params = array('domain' => $domain); |
|
| 1314 | + $params = array_merge($params, $optParams); |
|
| 1315 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EnterprisesListResponse"); |
|
| 1316 | 1316 | } |
| 1317 | 1317 | |
| 1318 | 1318 | /** |
@@ -1326,9 +1326,9 @@ discard block |
||
| 1326 | 1326 | */ |
| 1327 | 1327 | public function setAccount($enterpriseId, Google_Service_AndroidEnterprise_EnterpriseAccount $postBody, $optParams = array()) |
| 1328 | 1328 | { |
| 1329 | - $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); |
|
| 1330 | - $params = array_merge($params, $optParams); |
|
| 1331 | - return $this->call('setAccount', array($params), "Google_Service_AndroidEnterprise_EnterpriseAccount"); |
|
| 1329 | + $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody); |
|
| 1330 | + $params = array_merge($params, $optParams); |
|
| 1331 | + return $this->call('setAccount', array($params), "Google_Service_AndroidEnterprise_EnterpriseAccount"); |
|
| 1332 | 1332 | } |
| 1333 | 1333 | |
| 1334 | 1334 | /** |
@@ -1339,9 +1339,9 @@ discard block |
||
| 1339 | 1339 | */ |
| 1340 | 1340 | public function unenroll($enterpriseId, $optParams = array()) |
| 1341 | 1341 | { |
| 1342 | - $params = array('enterpriseId' => $enterpriseId); |
|
| 1343 | - $params = array_merge($params, $optParams); |
|
| 1344 | - return $this->call('unenroll', array($params)); |
|
| 1342 | + $params = array('enterpriseId' => $enterpriseId); |
|
| 1343 | + $params = array_merge($params, $optParams); |
|
| 1344 | + return $this->call('unenroll', array($params)); |
|
| 1345 | 1345 | } |
| 1346 | 1346 | } |
| 1347 | 1347 | |
@@ -1368,9 +1368,9 @@ discard block |
||
| 1368 | 1368 | */ |
| 1369 | 1369 | public function delete($enterpriseId, $userId, $entitlementId, $optParams = array()) |
| 1370 | 1370 | { |
| 1371 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); |
|
| 1372 | - $params = array_merge($params, $optParams); |
|
| 1373 | - return $this->call('delete', array($params)); |
|
| 1371 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); |
|
| 1372 | + $params = array_merge($params, $optParams); |
|
| 1373 | + return $this->call('delete', array($params)); |
|
| 1374 | 1374 | } |
| 1375 | 1375 | |
| 1376 | 1376 | /** |
@@ -1385,9 +1385,9 @@ discard block |
||
| 1385 | 1385 | */ |
| 1386 | 1386 | public function get($enterpriseId, $userId, $entitlementId, $optParams = array()) |
| 1387 | 1387 | { |
| 1388 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); |
|
| 1389 | - $params = array_merge($params, $optParams); |
|
| 1390 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1388 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId); |
|
| 1389 | + $params = array_merge($params, $optParams); |
|
| 1390 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1391 | 1391 | } |
| 1392 | 1392 | |
| 1393 | 1393 | /** |
@@ -1401,9 +1401,9 @@ discard block |
||
| 1401 | 1401 | */ |
| 1402 | 1402 | public function listEntitlements($enterpriseId, $userId, $optParams = array()) |
| 1403 | 1403 | { |
| 1404 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1405 | - $params = array_merge($params, $optParams); |
|
| 1406 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EntitlementsListResponse"); |
|
| 1404 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1405 | + $params = array_merge($params, $optParams); |
|
| 1406 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EntitlementsListResponse"); |
|
| 1407 | 1407 | } |
| 1408 | 1408 | |
| 1409 | 1409 | /** |
@@ -1425,9 +1425,9 @@ discard block |
||
| 1425 | 1425 | */ |
| 1426 | 1426 | public function patch($enterpriseId, $userId, $entitlementId, Google_Service_AndroidEnterprise_Entitlement $postBody, $optParams = array()) |
| 1427 | 1427 | { |
| 1428 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody); |
|
| 1429 | - $params = array_merge($params, $optParams); |
|
| 1430 | - return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1428 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody); |
|
| 1429 | + $params = array_merge($params, $optParams); |
|
| 1430 | + return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1431 | 1431 | } |
| 1432 | 1432 | |
| 1433 | 1433 | /** |
@@ -1448,9 +1448,9 @@ discard block |
||
| 1448 | 1448 | */ |
| 1449 | 1449 | public function update($enterpriseId, $userId, $entitlementId, Google_Service_AndroidEnterprise_Entitlement $postBody, $optParams = array()) |
| 1450 | 1450 | { |
| 1451 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody); |
|
| 1452 | - $params = array_merge($params, $optParams); |
|
| 1453 | - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1451 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody); |
|
| 1452 | + $params = array_merge($params, $optParams); |
|
| 1453 | + return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Entitlement"); |
|
| 1454 | 1454 | } |
| 1455 | 1455 | } |
| 1456 | 1456 | |
@@ -1477,9 +1477,9 @@ discard block |
||
| 1477 | 1477 | */ |
| 1478 | 1478 | public function get($enterpriseId, $groupLicenseId, $optParams = array()) |
| 1479 | 1479 | { |
| 1480 | - $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); |
|
| 1481 | - $params = array_merge($params, $optParams); |
|
| 1482 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_GroupLicense"); |
|
| 1480 | + $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); |
|
| 1481 | + $params = array_merge($params, $optParams); |
|
| 1482 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_GroupLicense"); |
|
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | 1485 | /** |
@@ -1492,9 +1492,9 @@ discard block |
||
| 1492 | 1492 | */ |
| 1493 | 1493 | public function listGrouplicenses($enterpriseId, $optParams = array()) |
| 1494 | 1494 | { |
| 1495 | - $params = array('enterpriseId' => $enterpriseId); |
|
| 1496 | - $params = array_merge($params, $optParams); |
|
| 1497 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicensesListResponse"); |
|
| 1495 | + $params = array('enterpriseId' => $enterpriseId); |
|
| 1496 | + $params = array_merge($params, $optParams); |
|
| 1497 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicensesListResponse"); |
|
| 1498 | 1498 | } |
| 1499 | 1499 | } |
| 1500 | 1500 | |
@@ -1521,9 +1521,9 @@ discard block |
||
| 1521 | 1521 | */ |
| 1522 | 1522 | public function listGrouplicenseusers($enterpriseId, $groupLicenseId, $optParams = array()) |
| 1523 | 1523 | { |
| 1524 | - $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); |
|
| 1525 | - $params = array_merge($params, $optParams); |
|
| 1526 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse"); |
|
| 1524 | + $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId); |
|
| 1525 | + $params = array_merge($params, $optParams); |
|
| 1526 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse"); |
|
| 1527 | 1527 | } |
| 1528 | 1528 | } |
| 1529 | 1529 | |
@@ -1552,9 +1552,9 @@ discard block |
||
| 1552 | 1552 | */ |
| 1553 | 1553 | public function delete($enterpriseId, $userId, $deviceId, $installId, $optParams = array()) |
| 1554 | 1554 | { |
| 1555 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); |
|
| 1556 | - $params = array_merge($params, $optParams); |
|
| 1557 | - return $this->call('delete', array($params)); |
|
| 1555 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); |
|
| 1556 | + $params = array_merge($params, $optParams); |
|
| 1557 | + return $this->call('delete', array($params)); |
|
| 1558 | 1558 | } |
| 1559 | 1559 | |
| 1560 | 1560 | /** |
@@ -1570,9 +1570,9 @@ discard block |
||
| 1570 | 1570 | */ |
| 1571 | 1571 | public function get($enterpriseId, $userId, $deviceId, $installId, $optParams = array()) |
| 1572 | 1572 | { |
| 1573 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); |
|
| 1574 | - $params = array_merge($params, $optParams); |
|
| 1575 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1573 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId); |
|
| 1574 | + $params = array_merge($params, $optParams); |
|
| 1575 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1576 | 1576 | } |
| 1577 | 1577 | |
| 1578 | 1578 | /** |
@@ -1587,9 +1587,9 @@ discard block |
||
| 1587 | 1587 | */ |
| 1588 | 1588 | public function listInstalls($enterpriseId, $userId, $deviceId, $optParams = array()) |
| 1589 | 1589 | { |
| 1590 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1591 | - $params = array_merge($params, $optParams); |
|
| 1592 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_InstallsListResponse"); |
|
| 1590 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId); |
|
| 1591 | + $params = array_merge($params, $optParams); |
|
| 1592 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_InstallsListResponse"); |
|
| 1593 | 1593 | } |
| 1594 | 1594 | |
| 1595 | 1595 | /** |
@@ -1608,9 +1608,9 @@ discard block |
||
| 1608 | 1608 | */ |
| 1609 | 1609 | public function patch($enterpriseId, $userId, $deviceId, $installId, Google_Service_AndroidEnterprise_Install $postBody, $optParams = array()) |
| 1610 | 1610 | { |
| 1611 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody); |
|
| 1612 | - $params = array_merge($params, $optParams); |
|
| 1613 | - return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1611 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody); |
|
| 1612 | + $params = array_merge($params, $optParams); |
|
| 1613 | + return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1614 | 1614 | } |
| 1615 | 1615 | |
| 1616 | 1616 | /** |
@@ -1629,9 +1629,9 @@ discard block |
||
| 1629 | 1629 | */ |
| 1630 | 1630 | public function update($enterpriseId, $userId, $deviceId, $installId, Google_Service_AndroidEnterprise_Install $postBody, $optParams = array()) |
| 1631 | 1631 | { |
| 1632 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody); |
|
| 1633 | - $params = array_merge($params, $optParams); |
|
| 1634 | - return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1632 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody); |
|
| 1633 | + $params = array_merge($params, $optParams); |
|
| 1634 | + return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Install"); |
|
| 1635 | 1635 | } |
| 1636 | 1636 | } |
| 1637 | 1637 | |
@@ -1659,9 +1659,9 @@ discard block |
||
| 1659 | 1659 | */ |
| 1660 | 1660 | public function get($permissionId, $optParams = array()) |
| 1661 | 1661 | { |
| 1662 | - $params = array('permissionId' => $permissionId); |
|
| 1663 | - $params = array_merge($params, $optParams); |
|
| 1664 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Permission"); |
|
| 1662 | + $params = array('permissionId' => $permissionId); |
|
| 1663 | + $params = array_merge($params, $optParams); |
|
| 1664 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Permission"); |
|
| 1665 | 1665 | } |
| 1666 | 1666 | } |
| 1667 | 1667 | |
@@ -1687,9 +1687,9 @@ discard block |
||
| 1687 | 1687 | */ |
| 1688 | 1688 | public function approve($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody, $optParams = array()) |
| 1689 | 1689 | { |
| 1690 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody); |
|
| 1691 | - $params = array_merge($params, $optParams); |
|
| 1692 | - return $this->call('approve', array($params)); |
|
| 1690 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody); |
|
| 1691 | + $params = array_merge($params, $optParams); |
|
| 1692 | + return $this->call('approve', array($params)); |
|
| 1693 | 1693 | } |
| 1694 | 1694 | |
| 1695 | 1695 | /** |
@@ -1708,9 +1708,9 @@ discard block |
||
| 1708 | 1708 | */ |
| 1709 | 1709 | public function generateApprovalUrl($enterpriseId, $productId, $optParams = array()) |
| 1710 | 1710 | { |
| 1711 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1712 | - $params = array_merge($params, $optParams); |
|
| 1713 | - return $this->call('generateApprovalUrl', array($params), "Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse"); |
|
| 1711 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1712 | + $params = array_merge($params, $optParams); |
|
| 1713 | + return $this->call('generateApprovalUrl', array($params), "Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse"); |
|
| 1714 | 1714 | } |
| 1715 | 1715 | |
| 1716 | 1716 | /** |
@@ -1728,9 +1728,9 @@ discard block |
||
| 1728 | 1728 | */ |
| 1729 | 1729 | public function get($enterpriseId, $productId, $optParams = array()) |
| 1730 | 1730 | { |
| 1731 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1732 | - $params = array_merge($params, $optParams); |
|
| 1733 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Product"); |
|
| 1731 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1732 | + $params = array_merge($params, $optParams); |
|
| 1733 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Product"); |
|
| 1734 | 1734 | } |
| 1735 | 1735 | |
| 1736 | 1736 | /** |
@@ -1748,9 +1748,9 @@ discard block |
||
| 1748 | 1748 | */ |
| 1749 | 1749 | public function getAppRestrictionsSchema($enterpriseId, $productId, $optParams = array()) |
| 1750 | 1750 | { |
| 1751 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1752 | - $params = array_merge($params, $optParams); |
|
| 1753 | - return $this->call('getAppRestrictionsSchema', array($params), "Google_Service_AndroidEnterprise_AppRestrictionsSchema"); |
|
| 1751 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1752 | + $params = array_merge($params, $optParams); |
|
| 1753 | + return $this->call('getAppRestrictionsSchema', array($params), "Google_Service_AndroidEnterprise_AppRestrictionsSchema"); |
|
| 1754 | 1754 | } |
| 1755 | 1755 | |
| 1756 | 1756 | /** |
@@ -1764,9 +1764,9 @@ discard block |
||
| 1764 | 1764 | */ |
| 1765 | 1765 | public function getPermissions($enterpriseId, $productId, $optParams = array()) |
| 1766 | 1766 | { |
| 1767 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1768 | - $params = array_merge($params, $optParams); |
|
| 1769 | - return $this->call('getPermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions"); |
|
| 1767 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId); |
|
| 1768 | + $params = array_merge($params, $optParams); |
|
| 1769 | + return $this->call('getPermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions"); |
|
| 1770 | 1770 | } |
| 1771 | 1771 | |
| 1772 | 1772 | /** |
@@ -1781,9 +1781,9 @@ discard block |
||
| 1781 | 1781 | */ |
| 1782 | 1782 | public function updatePermissions($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductPermissions $postBody, $optParams = array()) |
| 1783 | 1783 | { |
| 1784 | - $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody); |
|
| 1785 | - $params = array_merge($params, $optParams); |
|
| 1786 | - return $this->call('updatePermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions"); |
|
| 1784 | + $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody); |
|
| 1785 | + $params = array_merge($params, $optParams); |
|
| 1786 | + return $this->call('updatePermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions"); |
|
| 1787 | 1787 | } |
| 1788 | 1788 | } |
| 1789 | 1789 | |
@@ -1810,9 +1810,9 @@ discard block |
||
| 1810 | 1810 | */ |
| 1811 | 1811 | public function generateToken($enterpriseId, $userId, $optParams = array()) |
| 1812 | 1812 | { |
| 1813 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1814 | - $params = array_merge($params, $optParams); |
|
| 1815 | - return $this->call('generateToken', array($params), "Google_Service_AndroidEnterprise_UserToken"); |
|
| 1813 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1814 | + $params = array_merge($params, $optParams); |
|
| 1815 | + return $this->call('generateToken', array($params), "Google_Service_AndroidEnterprise_UserToken"); |
|
| 1816 | 1816 | } |
| 1817 | 1817 | |
| 1818 | 1818 | /** |
@@ -1825,9 +1825,9 @@ discard block |
||
| 1825 | 1825 | */ |
| 1826 | 1826 | public function get($enterpriseId, $userId, $optParams = array()) |
| 1827 | 1827 | { |
| 1828 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1829 | - $params = array_merge($params, $optParams); |
|
| 1830 | - return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1828 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1829 | + $params = array_merge($params, $optParams); |
|
| 1830 | + return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User"); |
|
| 1831 | 1831 | } |
| 1832 | 1832 | |
| 1833 | 1833 | /** |
@@ -1840,9 +1840,9 @@ discard block |
||
| 1840 | 1840 | */ |
| 1841 | 1841 | public function listUsers($enterpriseId, $email, $optParams = array()) |
| 1842 | 1842 | { |
| 1843 | - $params = array('enterpriseId' => $enterpriseId, 'email' => $email); |
|
| 1844 | - $params = array_merge($params, $optParams); |
|
| 1845 | - return $this->call('list', array($params), "Google_Service_AndroidEnterprise_UsersListResponse"); |
|
| 1843 | + $params = array('enterpriseId' => $enterpriseId, 'email' => $email); |
|
| 1844 | + $params = array_merge($params, $optParams); |
|
| 1845 | + return $this->call('list', array($params), "Google_Service_AndroidEnterprise_UsersListResponse"); |
|
| 1846 | 1846 | } |
| 1847 | 1847 | |
| 1848 | 1848 | /** |
@@ -1855,9 +1855,9 @@ discard block |
||
| 1855 | 1855 | */ |
| 1856 | 1856 | public function revokeToken($enterpriseId, $userId, $optParams = array()) |
| 1857 | 1857 | { |
| 1858 | - $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1859 | - $params = array_merge($params, $optParams); |
|
| 1860 | - return $this->call('revokeToken', array($params)); |
|
| 1858 | + $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId); |
|
| 1859 | + $params = array_merge($params, $optParams); |
|
| 1860 | + return $this->call('revokeToken', array($params)); |
|
| 1861 | 1861 | } |
| 1862 | 1862 | } |
| 1863 | 1863 | |
@@ -1875,11 +1875,11 @@ discard block |
||
| 1875 | 1875 | |
| 1876 | 1876 | public function setRestrictions($restrictions) |
| 1877 | 1877 | { |
| 1878 | - $this->restrictions = $restrictions; |
|
| 1878 | + $this->restrictions = $restrictions; |
|
| 1879 | 1879 | } |
| 1880 | 1880 | public function getRestrictions() |
| 1881 | 1881 | { |
| 1882 | - return $this->restrictions; |
|
| 1882 | + return $this->restrictions; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | } |
| 1885 | 1885 | |
@@ -1900,59 +1900,59 @@ discard block |
||
| 1900 | 1900 | |
| 1901 | 1901 | public function setDefaultValue(Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestrictionValue $defaultValue) |
| 1902 | 1902 | { |
| 1903 | - $this->defaultValue = $defaultValue; |
|
| 1903 | + $this->defaultValue = $defaultValue; |
|
| 1904 | 1904 | } |
| 1905 | 1905 | public function getDefaultValue() |
| 1906 | 1906 | { |
| 1907 | - return $this->defaultValue; |
|
| 1907 | + return $this->defaultValue; |
|
| 1908 | 1908 | } |
| 1909 | 1909 | public function setDescription($description) |
| 1910 | 1910 | { |
| 1911 | - $this->description = $description; |
|
| 1911 | + $this->description = $description; |
|
| 1912 | 1912 | } |
| 1913 | 1913 | public function getDescription() |
| 1914 | 1914 | { |
| 1915 | - return $this->description; |
|
| 1915 | + return $this->description; |
|
| 1916 | 1916 | } |
| 1917 | 1917 | public function setEntry($entry) |
| 1918 | 1918 | { |
| 1919 | - $this->entry = $entry; |
|
| 1919 | + $this->entry = $entry; |
|
| 1920 | 1920 | } |
| 1921 | 1921 | public function getEntry() |
| 1922 | 1922 | { |
| 1923 | - return $this->entry; |
|
| 1923 | + return $this->entry; |
|
| 1924 | 1924 | } |
| 1925 | 1925 | public function setEntryValue($entryValue) |
| 1926 | 1926 | { |
| 1927 | - $this->entryValue = $entryValue; |
|
| 1927 | + $this->entryValue = $entryValue; |
|
| 1928 | 1928 | } |
| 1929 | 1929 | public function getEntryValue() |
| 1930 | 1930 | { |
| 1931 | - return $this->entryValue; |
|
| 1931 | + return $this->entryValue; |
|
| 1932 | 1932 | } |
| 1933 | 1933 | public function setKey($key) |
| 1934 | 1934 | { |
| 1935 | - $this->key = $key; |
|
| 1935 | + $this->key = $key; |
|
| 1936 | 1936 | } |
| 1937 | 1937 | public function getKey() |
| 1938 | 1938 | { |
| 1939 | - return $this->key; |
|
| 1939 | + return $this->key; |
|
| 1940 | 1940 | } |
| 1941 | 1941 | public function setRestrictionType($restrictionType) |
| 1942 | 1942 | { |
| 1943 | - $this->restrictionType = $restrictionType; |
|
| 1943 | + $this->restrictionType = $restrictionType; |
|
| 1944 | 1944 | } |
| 1945 | 1945 | public function getRestrictionType() |
| 1946 | 1946 | { |
| 1947 | - return $this->restrictionType; |
|
| 1947 | + return $this->restrictionType; |
|
| 1948 | 1948 | } |
| 1949 | 1949 | public function setTitle($title) |
| 1950 | 1950 | { |
| 1951 | - $this->title = $title; |
|
| 1951 | + $this->title = $title; |
|
| 1952 | 1952 | } |
| 1953 | 1953 | public function getTitle() |
| 1954 | 1954 | { |
| 1955 | - return $this->title; |
|
| 1955 | + return $this->title; |
|
| 1956 | 1956 | } |
| 1957 | 1957 | } |
| 1958 | 1958 | |
@@ -1970,43 +1970,43 @@ discard block |
||
| 1970 | 1970 | |
| 1971 | 1971 | public function setType($type) |
| 1972 | 1972 | { |
| 1973 | - $this->type = $type; |
|
| 1973 | + $this->type = $type; |
|
| 1974 | 1974 | } |
| 1975 | 1975 | public function getType() |
| 1976 | 1976 | { |
| 1977 | - return $this->type; |
|
| 1977 | + return $this->type; |
|
| 1978 | 1978 | } |
| 1979 | 1979 | public function setValueBool($valueBool) |
| 1980 | 1980 | { |
| 1981 | - $this->valueBool = $valueBool; |
|
| 1981 | + $this->valueBool = $valueBool; |
|
| 1982 | 1982 | } |
| 1983 | 1983 | public function getValueBool() |
| 1984 | 1984 | { |
| 1985 | - return $this->valueBool; |
|
| 1985 | + return $this->valueBool; |
|
| 1986 | 1986 | } |
| 1987 | 1987 | public function setValueInteger($valueInteger) |
| 1988 | 1988 | { |
| 1989 | - $this->valueInteger = $valueInteger; |
|
| 1989 | + $this->valueInteger = $valueInteger; |
|
| 1990 | 1990 | } |
| 1991 | 1991 | public function getValueInteger() |
| 1992 | 1992 | { |
| 1993 | - return $this->valueInteger; |
|
| 1993 | + return $this->valueInteger; |
|
| 1994 | 1994 | } |
| 1995 | 1995 | public function setValueMultiselect($valueMultiselect) |
| 1996 | 1996 | { |
| 1997 | - $this->valueMultiselect = $valueMultiselect; |
|
| 1997 | + $this->valueMultiselect = $valueMultiselect; |
|
| 1998 | 1998 | } |
| 1999 | 1999 | public function getValueMultiselect() |
| 2000 | 2000 | { |
| 2001 | - return $this->valueMultiselect; |
|
| 2001 | + return $this->valueMultiselect; |
|
| 2002 | 2002 | } |
| 2003 | 2003 | public function setValueString($valueString) |
| 2004 | 2004 | { |
| 2005 | - $this->valueString = $valueString; |
|
| 2005 | + $this->valueString = $valueString; |
|
| 2006 | 2006 | } |
| 2007 | 2007 | public function getValueString() |
| 2008 | 2008 | { |
| 2009 | - return $this->valueString; |
|
| 2009 | + return $this->valueString; |
|
| 2010 | 2010 | } |
| 2011 | 2011 | } |
| 2012 | 2012 | |
@@ -2020,19 +2020,19 @@ discard block |
||
| 2020 | 2020 | |
| 2021 | 2021 | public function setVersionCode($versionCode) |
| 2022 | 2022 | { |
| 2023 | - $this->versionCode = $versionCode; |
|
| 2023 | + $this->versionCode = $versionCode; |
|
| 2024 | 2024 | } |
| 2025 | 2025 | public function getVersionCode() |
| 2026 | 2026 | { |
| 2027 | - return $this->versionCode; |
|
| 2027 | + return $this->versionCode; |
|
| 2028 | 2028 | } |
| 2029 | 2029 | public function setVersionString($versionString) |
| 2030 | 2030 | { |
| 2031 | - $this->versionString = $versionString; |
|
| 2031 | + $this->versionString = $versionString; |
|
| 2032 | 2032 | } |
| 2033 | 2033 | public function getVersionString() |
| 2034 | 2034 | { |
| 2035 | - return $this->versionString; |
|
| 2035 | + return $this->versionString; |
|
| 2036 | 2036 | } |
| 2037 | 2037 | } |
| 2038 | 2038 | |
@@ -2046,19 +2046,19 @@ discard block |
||
| 2046 | 2046 | |
| 2047 | 2047 | public function setApprovalUrl($approvalUrl) |
| 2048 | 2048 | { |
| 2049 | - $this->approvalUrl = $approvalUrl; |
|
| 2049 | + $this->approvalUrl = $approvalUrl; |
|
| 2050 | 2050 | } |
| 2051 | 2051 | public function getApprovalUrl() |
| 2052 | 2052 | { |
| 2053 | - return $this->approvalUrl; |
|
| 2053 | + return $this->approvalUrl; |
|
| 2054 | 2054 | } |
| 2055 | 2055 | public function setKind($kind) |
| 2056 | 2056 | { |
| 2057 | - $this->kind = $kind; |
|
| 2057 | + $this->kind = $kind; |
|
| 2058 | 2058 | } |
| 2059 | 2059 | public function getKind() |
| 2060 | 2060 | { |
| 2061 | - return $this->kind; |
|
| 2061 | + return $this->kind; |
|
| 2062 | 2062 | } |
| 2063 | 2063 | } |
| 2064 | 2064 | |
@@ -2076,43 +2076,43 @@ discard block |
||
| 2076 | 2076 | |
| 2077 | 2077 | public function setCollectionId($collectionId) |
| 2078 | 2078 | { |
| 2079 | - $this->collectionId = $collectionId; |
|
| 2079 | + $this->collectionId = $collectionId; |
|
| 2080 | 2080 | } |
| 2081 | 2081 | public function getCollectionId() |
| 2082 | 2082 | { |
| 2083 | - return $this->collectionId; |
|
| 2083 | + return $this->collectionId; |
|
| 2084 | 2084 | } |
| 2085 | 2085 | public function setKind($kind) |
| 2086 | 2086 | { |
| 2087 | - $this->kind = $kind; |
|
| 2087 | + $this->kind = $kind; |
|
| 2088 | 2088 | } |
| 2089 | 2089 | public function getKind() |
| 2090 | 2090 | { |
| 2091 | - return $this->kind; |
|
| 2091 | + return $this->kind; |
|
| 2092 | 2092 | } |
| 2093 | 2093 | public function setName($name) |
| 2094 | 2094 | { |
| 2095 | - $this->name = $name; |
|
| 2095 | + $this->name = $name; |
|
| 2096 | 2096 | } |
| 2097 | 2097 | public function getName() |
| 2098 | 2098 | { |
| 2099 | - return $this->name; |
|
| 2099 | + return $this->name; |
|
| 2100 | 2100 | } |
| 2101 | 2101 | public function setProductId($productId) |
| 2102 | 2102 | { |
| 2103 | - $this->productId = $productId; |
|
| 2103 | + $this->productId = $productId; |
|
| 2104 | 2104 | } |
| 2105 | 2105 | public function getProductId() |
| 2106 | 2106 | { |
| 2107 | - return $this->productId; |
|
| 2107 | + return $this->productId; |
|
| 2108 | 2108 | } |
| 2109 | 2109 | public function setVisibility($visibility) |
| 2110 | 2110 | { |
| 2111 | - $this->visibility = $visibility; |
|
| 2111 | + $this->visibility = $visibility; |
|
| 2112 | 2112 | } |
| 2113 | 2113 | public function getVisibility() |
| 2114 | 2114 | { |
| 2115 | - return $this->visibility; |
|
| 2115 | + return $this->visibility; |
|
| 2116 | 2116 | } |
| 2117 | 2117 | } |
| 2118 | 2118 | |
@@ -2128,19 +2128,19 @@ discard block |
||
| 2128 | 2128 | |
| 2129 | 2129 | public function setKind($kind) |
| 2130 | 2130 | { |
| 2131 | - $this->kind = $kind; |
|
| 2131 | + $this->kind = $kind; |
|
| 2132 | 2132 | } |
| 2133 | 2133 | public function getKind() |
| 2134 | 2134 | { |
| 2135 | - return $this->kind; |
|
| 2135 | + return $this->kind; |
|
| 2136 | 2136 | } |
| 2137 | 2137 | public function setUser($user) |
| 2138 | 2138 | { |
| 2139 | - $this->user = $user; |
|
| 2139 | + $this->user = $user; |
|
| 2140 | 2140 | } |
| 2141 | 2141 | public function getUser() |
| 2142 | 2142 | { |
| 2143 | - return $this->user; |
|
| 2143 | + return $this->user; |
|
| 2144 | 2144 | } |
| 2145 | 2145 | } |
| 2146 | 2146 | |
@@ -2156,19 +2156,19 @@ discard block |
||
| 2156 | 2156 | |
| 2157 | 2157 | public function setCollection($collection) |
| 2158 | 2158 | { |
| 2159 | - $this->collection = $collection; |
|
| 2159 | + $this->collection = $collection; |
|
| 2160 | 2160 | } |
| 2161 | 2161 | public function getCollection() |
| 2162 | 2162 | { |
| 2163 | - return $this->collection; |
|
| 2163 | + return $this->collection; |
|
| 2164 | 2164 | } |
| 2165 | 2165 | public function setKind($kind) |
| 2166 | 2166 | { |
| 2167 | - $this->kind = $kind; |
|
| 2167 | + $this->kind = $kind; |
|
| 2168 | 2168 | } |
| 2169 | 2169 | public function getKind() |
| 2170 | 2170 | { |
| 2171 | - return $this->kind; |
|
| 2171 | + return $this->kind; |
|
| 2172 | 2172 | } |
| 2173 | 2173 | } |
| 2174 | 2174 | |
@@ -2183,27 +2183,27 @@ discard block |
||
| 2183 | 2183 | |
| 2184 | 2184 | public function setAndroidId($androidId) |
| 2185 | 2185 | { |
| 2186 | - $this->androidId = $androidId; |
|
| 2186 | + $this->androidId = $androidId; |
|
| 2187 | 2187 | } |
| 2188 | 2188 | public function getAndroidId() |
| 2189 | 2189 | { |
| 2190 | - return $this->androidId; |
|
| 2190 | + return $this->androidId; |
|
| 2191 | 2191 | } |
| 2192 | 2192 | public function setKind($kind) |
| 2193 | 2193 | { |
| 2194 | - $this->kind = $kind; |
|
| 2194 | + $this->kind = $kind; |
|
| 2195 | 2195 | } |
| 2196 | 2196 | public function getKind() |
| 2197 | 2197 | { |
| 2198 | - return $this->kind; |
|
| 2198 | + return $this->kind; |
|
| 2199 | 2199 | } |
| 2200 | 2200 | public function setManagementType($managementType) |
| 2201 | 2201 | { |
| 2202 | - $this->managementType = $managementType; |
|
| 2202 | + $this->managementType = $managementType; |
|
| 2203 | 2203 | } |
| 2204 | 2204 | public function getManagementType() |
| 2205 | 2205 | { |
| 2206 | - return $this->managementType; |
|
| 2206 | + return $this->managementType; |
|
| 2207 | 2207 | } |
| 2208 | 2208 | } |
| 2209 | 2209 | |
@@ -2217,19 +2217,19 @@ discard block |
||
| 2217 | 2217 | |
| 2218 | 2218 | public function setAccountState($accountState) |
| 2219 | 2219 | { |
| 2220 | - $this->accountState = $accountState; |
|
| 2220 | + $this->accountState = $accountState; |
|
| 2221 | 2221 | } |
| 2222 | 2222 | public function getAccountState() |
| 2223 | 2223 | { |
| 2224 | - return $this->accountState; |
|
| 2224 | + return $this->accountState; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | public function setKind($kind) |
| 2227 | 2227 | { |
| 2228 | - $this->kind = $kind; |
|
| 2228 | + $this->kind = $kind; |
|
| 2229 | 2229 | } |
| 2230 | 2230 | public function getKind() |
| 2231 | 2231 | { |
| 2232 | - return $this->kind; |
|
| 2232 | + return $this->kind; |
|
| 2233 | 2233 | } |
| 2234 | 2234 | } |
| 2235 | 2235 | |
@@ -2245,19 +2245,19 @@ discard block |
||
| 2245 | 2245 | |
| 2246 | 2246 | public function setDevice($device) |
| 2247 | 2247 | { |
| 2248 | - $this->device = $device; |
|
| 2248 | + $this->device = $device; |
|
| 2249 | 2249 | } |
| 2250 | 2250 | public function getDevice() |
| 2251 | 2251 | { |
| 2252 | - return $this->device; |
|
| 2252 | + return $this->device; |
|
| 2253 | 2253 | } |
| 2254 | 2254 | public function setKind($kind) |
| 2255 | 2255 | { |
| 2256 | - $this->kind = $kind; |
|
| 2256 | + $this->kind = $kind; |
|
| 2257 | 2257 | } |
| 2258 | 2258 | public function getKind() |
| 2259 | 2259 | { |
| 2260 | - return $this->kind; |
|
| 2260 | + return $this->kind; |
|
| 2261 | 2261 | } |
| 2262 | 2262 | } |
| 2263 | 2263 | |
@@ -2273,35 +2273,35 @@ discard block |
||
| 2273 | 2273 | |
| 2274 | 2274 | public function setId($id) |
| 2275 | 2275 | { |
| 2276 | - $this->id = $id; |
|
| 2276 | + $this->id = $id; |
|
| 2277 | 2277 | } |
| 2278 | 2278 | public function getId() |
| 2279 | 2279 | { |
| 2280 | - return $this->id; |
|
| 2280 | + return $this->id; |
|
| 2281 | 2281 | } |
| 2282 | 2282 | public function setKind($kind) |
| 2283 | 2283 | { |
| 2284 | - $this->kind = $kind; |
|
| 2284 | + $this->kind = $kind; |
|
| 2285 | 2285 | } |
| 2286 | 2286 | public function getKind() |
| 2287 | 2287 | { |
| 2288 | - return $this->kind; |
|
| 2288 | + return $this->kind; |
|
| 2289 | 2289 | } |
| 2290 | 2290 | public function setName($name) |
| 2291 | 2291 | { |
| 2292 | - $this->name = $name; |
|
| 2292 | + $this->name = $name; |
|
| 2293 | 2293 | } |
| 2294 | 2294 | public function getName() |
| 2295 | 2295 | { |
| 2296 | - return $this->name; |
|
| 2296 | + return $this->name; |
|
| 2297 | 2297 | } |
| 2298 | 2298 | public function setPrimaryDomain($primaryDomain) |
| 2299 | 2299 | { |
| 2300 | - $this->primaryDomain = $primaryDomain; |
|
| 2300 | + $this->primaryDomain = $primaryDomain; |
|
| 2301 | 2301 | } |
| 2302 | 2302 | public function getPrimaryDomain() |
| 2303 | 2303 | { |
| 2304 | - return $this->primaryDomain; |
|
| 2304 | + return $this->primaryDomain; |
|
| 2305 | 2305 | } |
| 2306 | 2306 | } |
| 2307 | 2307 | |
@@ -2315,19 +2315,19 @@ discard block |
||
| 2315 | 2315 | |
| 2316 | 2316 | public function setAccountEmail($accountEmail) |
| 2317 | 2317 | { |
| 2318 | - $this->accountEmail = $accountEmail; |
|
| 2318 | + $this->accountEmail = $accountEmail; |
|
| 2319 | 2319 | } |
| 2320 | 2320 | public function getAccountEmail() |
| 2321 | 2321 | { |
| 2322 | - return $this->accountEmail; |
|
| 2322 | + return $this->accountEmail; |
|
| 2323 | 2323 | } |
| 2324 | 2324 | public function setKind($kind) |
| 2325 | 2325 | { |
| 2326 | - $this->kind = $kind; |
|
| 2326 | + $this->kind = $kind; |
|
| 2327 | 2327 | } |
| 2328 | 2328 | public function getKind() |
| 2329 | 2329 | { |
| 2330 | - return $this->kind; |
|
| 2330 | + return $this->kind; |
|
| 2331 | 2331 | } |
| 2332 | 2332 | } |
| 2333 | 2333 | |
@@ -2343,19 +2343,19 @@ discard block |
||
| 2343 | 2343 | |
| 2344 | 2344 | public function setEnterprise($enterprise) |
| 2345 | 2345 | { |
| 2346 | - $this->enterprise = $enterprise; |
|
| 2346 | + $this->enterprise = $enterprise; |
|
| 2347 | 2347 | } |
| 2348 | 2348 | public function getEnterprise() |
| 2349 | 2349 | { |
| 2350 | - return $this->enterprise; |
|
| 2350 | + return $this->enterprise; |
|
| 2351 | 2351 | } |
| 2352 | 2352 | public function setKind($kind) |
| 2353 | 2353 | { |
| 2354 | - $this->kind = $kind; |
|
| 2354 | + $this->kind = $kind; |
|
| 2355 | 2355 | } |
| 2356 | 2356 | public function getKind() |
| 2357 | 2357 | { |
| 2358 | - return $this->kind; |
|
| 2358 | + return $this->kind; |
|
| 2359 | 2359 | } |
| 2360 | 2360 | } |
| 2361 | 2361 | |
@@ -2370,27 +2370,27 @@ discard block |
||
| 2370 | 2370 | |
| 2371 | 2371 | public function setKind($kind) |
| 2372 | 2372 | { |
| 2373 | - $this->kind = $kind; |
|
| 2373 | + $this->kind = $kind; |
|
| 2374 | 2374 | } |
| 2375 | 2375 | public function getKind() |
| 2376 | 2376 | { |
| 2377 | - return $this->kind; |
|
| 2377 | + return $this->kind; |
|
| 2378 | 2378 | } |
| 2379 | 2379 | public function setProductId($productId) |
| 2380 | 2380 | { |
| 2381 | - $this->productId = $productId; |
|
| 2381 | + $this->productId = $productId; |
|
| 2382 | 2382 | } |
| 2383 | 2383 | public function getProductId() |
| 2384 | 2384 | { |
| 2385 | - return $this->productId; |
|
| 2385 | + return $this->productId; |
|
| 2386 | 2386 | } |
| 2387 | 2387 | public function setReason($reason) |
| 2388 | 2388 | { |
| 2389 | - $this->reason = $reason; |
|
| 2389 | + $this->reason = $reason; |
|
| 2390 | 2390 | } |
| 2391 | 2391 | public function getReason() |
| 2392 | 2392 | { |
| 2393 | - return $this->reason; |
|
| 2393 | + return $this->reason; |
|
| 2394 | 2394 | } |
| 2395 | 2395 | } |
| 2396 | 2396 | |
@@ -2406,19 +2406,19 @@ discard block |
||
| 2406 | 2406 | |
| 2407 | 2407 | public function setEntitlement($entitlement) |
| 2408 | 2408 | { |
| 2409 | - $this->entitlement = $entitlement; |
|
| 2409 | + $this->entitlement = $entitlement; |
|
| 2410 | 2410 | } |
| 2411 | 2411 | public function getEntitlement() |
| 2412 | 2412 | { |
| 2413 | - return $this->entitlement; |
|
| 2413 | + return $this->entitlement; |
|
| 2414 | 2414 | } |
| 2415 | 2415 | public function setKind($kind) |
| 2416 | 2416 | { |
| 2417 | - $this->kind = $kind; |
|
| 2417 | + $this->kind = $kind; |
|
| 2418 | 2418 | } |
| 2419 | 2419 | public function getKind() |
| 2420 | 2420 | { |
| 2421 | - return $this->kind; |
|
| 2421 | + return $this->kind; |
|
| 2422 | 2422 | } |
| 2423 | 2423 | } |
| 2424 | 2424 | |
@@ -2436,51 +2436,51 @@ discard block |
||
| 2436 | 2436 | |
| 2437 | 2437 | public function setAcquisitionKind($acquisitionKind) |
| 2438 | 2438 | { |
| 2439 | - $this->acquisitionKind = $acquisitionKind; |
|
| 2439 | + $this->acquisitionKind = $acquisitionKind; |
|
| 2440 | 2440 | } |
| 2441 | 2441 | public function getAcquisitionKind() |
| 2442 | 2442 | { |
| 2443 | - return $this->acquisitionKind; |
|
| 2443 | + return $this->acquisitionKind; |
|
| 2444 | 2444 | } |
| 2445 | 2445 | public function setApproval($approval) |
| 2446 | 2446 | { |
| 2447 | - $this->approval = $approval; |
|
| 2447 | + $this->approval = $approval; |
|
| 2448 | 2448 | } |
| 2449 | 2449 | public function getApproval() |
| 2450 | 2450 | { |
| 2451 | - return $this->approval; |
|
| 2451 | + return $this->approval; |
|
| 2452 | 2452 | } |
| 2453 | 2453 | public function setKind($kind) |
| 2454 | 2454 | { |
| 2455 | - $this->kind = $kind; |
|
| 2455 | + $this->kind = $kind; |
|
| 2456 | 2456 | } |
| 2457 | 2457 | public function getKind() |
| 2458 | 2458 | { |
| 2459 | - return $this->kind; |
|
| 2459 | + return $this->kind; |
|
| 2460 | 2460 | } |
| 2461 | 2461 | public function setNumProvisioned($numProvisioned) |
| 2462 | 2462 | { |
| 2463 | - $this->numProvisioned = $numProvisioned; |
|
| 2463 | + $this->numProvisioned = $numProvisioned; |
|
| 2464 | 2464 | } |
| 2465 | 2465 | public function getNumProvisioned() |
| 2466 | 2466 | { |
| 2467 | - return $this->numProvisioned; |
|
| 2467 | + return $this->numProvisioned; |
|
| 2468 | 2468 | } |
| 2469 | 2469 | public function setNumPurchased($numPurchased) |
| 2470 | 2470 | { |
| 2471 | - $this->numPurchased = $numPurchased; |
|
| 2471 | + $this->numPurchased = $numPurchased; |
|
| 2472 | 2472 | } |
| 2473 | 2473 | public function getNumPurchased() |
| 2474 | 2474 | { |
| 2475 | - return $this->numPurchased; |
|
| 2475 | + return $this->numPurchased; |
|
| 2476 | 2476 | } |
| 2477 | 2477 | public function setProductId($productId) |
| 2478 | 2478 | { |
| 2479 | - $this->productId = $productId; |
|
| 2479 | + $this->productId = $productId; |
|
| 2480 | 2480 | } |
| 2481 | 2481 | public function getProductId() |
| 2482 | 2482 | { |
| 2483 | - return $this->productId; |
|
| 2483 | + return $this->productId; |
|
| 2484 | 2484 | } |
| 2485 | 2485 | } |
| 2486 | 2486 | |
@@ -2496,19 +2496,19 @@ discard block |
||
| 2496 | 2496 | |
| 2497 | 2497 | public function setKind($kind) |
| 2498 | 2498 | { |
| 2499 | - $this->kind = $kind; |
|
| 2499 | + $this->kind = $kind; |
|
| 2500 | 2500 | } |
| 2501 | 2501 | public function getKind() |
| 2502 | 2502 | { |
| 2503 | - return $this->kind; |
|
| 2503 | + return $this->kind; |
|
| 2504 | 2504 | } |
| 2505 | 2505 | public function setUser($user) |
| 2506 | 2506 | { |
| 2507 | - $this->user = $user; |
|
| 2507 | + $this->user = $user; |
|
| 2508 | 2508 | } |
| 2509 | 2509 | public function getUser() |
| 2510 | 2510 | { |
| 2511 | - return $this->user; |
|
| 2511 | + return $this->user; |
|
| 2512 | 2512 | } |
| 2513 | 2513 | } |
| 2514 | 2514 | |
@@ -2524,19 +2524,19 @@ discard block |
||
| 2524 | 2524 | |
| 2525 | 2525 | public function setGroupLicense($groupLicense) |
| 2526 | 2526 | { |
| 2527 | - $this->groupLicense = $groupLicense; |
|
| 2527 | + $this->groupLicense = $groupLicense; |
|
| 2528 | 2528 | } |
| 2529 | 2529 | public function getGroupLicense() |
| 2530 | 2530 | { |
| 2531 | - return $this->groupLicense; |
|
| 2531 | + return $this->groupLicense; |
|
| 2532 | 2532 | } |
| 2533 | 2533 | public function setKind($kind) |
| 2534 | 2534 | { |
| 2535 | - $this->kind = $kind; |
|
| 2535 | + $this->kind = $kind; |
|
| 2536 | 2536 | } |
| 2537 | 2537 | public function getKind() |
| 2538 | 2538 | { |
| 2539 | - return $this->kind; |
|
| 2539 | + return $this->kind; |
|
| 2540 | 2540 | } |
| 2541 | 2541 | } |
| 2542 | 2542 | |
@@ -2552,35 +2552,35 @@ discard block |
||
| 2552 | 2552 | |
| 2553 | 2553 | public function setInstallState($installState) |
| 2554 | 2554 | { |
| 2555 | - $this->installState = $installState; |
|
| 2555 | + $this->installState = $installState; |
|
| 2556 | 2556 | } |
| 2557 | 2557 | public function getInstallState() |
| 2558 | 2558 | { |
| 2559 | - return $this->installState; |
|
| 2559 | + return $this->installState; |
|
| 2560 | 2560 | } |
| 2561 | 2561 | public function setKind($kind) |
| 2562 | 2562 | { |
| 2563 | - $this->kind = $kind; |
|
| 2563 | + $this->kind = $kind; |
|
| 2564 | 2564 | } |
| 2565 | 2565 | public function getKind() |
| 2566 | 2566 | { |
| 2567 | - return $this->kind; |
|
| 2567 | + return $this->kind; |
|
| 2568 | 2568 | } |
| 2569 | 2569 | public function setProductId($productId) |
| 2570 | 2570 | { |
| 2571 | - $this->productId = $productId; |
|
| 2571 | + $this->productId = $productId; |
|
| 2572 | 2572 | } |
| 2573 | 2573 | public function getProductId() |
| 2574 | 2574 | { |
| 2575 | - return $this->productId; |
|
| 2575 | + return $this->productId; |
|
| 2576 | 2576 | } |
| 2577 | 2577 | public function setVersionCode($versionCode) |
| 2578 | 2578 | { |
| 2579 | - $this->versionCode = $versionCode; |
|
| 2579 | + $this->versionCode = $versionCode; |
|
| 2580 | 2580 | } |
| 2581 | 2581 | public function getVersionCode() |
| 2582 | 2582 | { |
| 2583 | - return $this->versionCode; |
|
| 2583 | + return $this->versionCode; |
|
| 2584 | 2584 | } |
| 2585 | 2585 | } |
| 2586 | 2586 | |
@@ -2596,19 +2596,19 @@ discard block |
||
| 2596 | 2596 | |
| 2597 | 2597 | public function setInstall($install) |
| 2598 | 2598 | { |
| 2599 | - $this->install = $install; |
|
| 2599 | + $this->install = $install; |
|
| 2600 | 2600 | } |
| 2601 | 2601 | public function getInstall() |
| 2602 | 2602 | { |
| 2603 | - return $this->install; |
|
| 2603 | + return $this->install; |
|
| 2604 | 2604 | } |
| 2605 | 2605 | public function setKind($kind) |
| 2606 | 2606 | { |
| 2607 | - $this->kind = $kind; |
|
| 2607 | + $this->kind = $kind; |
|
| 2608 | 2608 | } |
| 2609 | 2609 | public function getKind() |
| 2610 | 2610 | { |
| 2611 | - return $this->kind; |
|
| 2611 | + return $this->kind; |
|
| 2612 | 2612 | } |
| 2613 | 2613 | } |
| 2614 | 2614 | |
@@ -2624,35 +2624,35 @@ discard block |
||
| 2624 | 2624 | |
| 2625 | 2625 | public function setDescription($description) |
| 2626 | 2626 | { |
| 2627 | - $this->description = $description; |
|
| 2627 | + $this->description = $description; |
|
| 2628 | 2628 | } |
| 2629 | 2629 | public function getDescription() |
| 2630 | 2630 | { |
| 2631 | - return $this->description; |
|
| 2631 | + return $this->description; |
|
| 2632 | 2632 | } |
| 2633 | 2633 | public function setKind($kind) |
| 2634 | 2634 | { |
| 2635 | - $this->kind = $kind; |
|
| 2635 | + $this->kind = $kind; |
|
| 2636 | 2636 | } |
| 2637 | 2637 | public function getKind() |
| 2638 | 2638 | { |
| 2639 | - return $this->kind; |
|
| 2639 | + return $this->kind; |
|
| 2640 | 2640 | } |
| 2641 | 2641 | public function setName($name) |
| 2642 | 2642 | { |
| 2643 | - $this->name = $name; |
|
| 2643 | + $this->name = $name; |
|
| 2644 | 2644 | } |
| 2645 | 2645 | public function getName() |
| 2646 | 2646 | { |
| 2647 | - return $this->name; |
|
| 2647 | + return $this->name; |
|
| 2648 | 2648 | } |
| 2649 | 2649 | public function setPermissionId($permissionId) |
| 2650 | 2650 | { |
| 2651 | - $this->permissionId = $permissionId; |
|
| 2651 | + $this->permissionId = $permissionId; |
|
| 2652 | 2652 | } |
| 2653 | 2653 | public function getPermissionId() |
| 2654 | 2654 | { |
| 2655 | - return $this->permissionId; |
|
| 2655 | + return $this->permissionId; |
|
| 2656 | 2656 | } |
| 2657 | 2657 | } |
| 2658 | 2658 | |
@@ -2676,83 +2676,83 @@ discard block |
||
| 2676 | 2676 | |
| 2677 | 2677 | public function setAppVersion($appVersion) |
| 2678 | 2678 | { |
| 2679 | - $this->appVersion = $appVersion; |
|
| 2679 | + $this->appVersion = $appVersion; |
|
| 2680 | 2680 | } |
| 2681 | 2681 | public function getAppVersion() |
| 2682 | 2682 | { |
| 2683 | - return $this->appVersion; |
|
| 2683 | + return $this->appVersion; |
|
| 2684 | 2684 | } |
| 2685 | 2685 | public function setAuthorName($authorName) |
| 2686 | 2686 | { |
| 2687 | - $this->authorName = $authorName; |
|
| 2687 | + $this->authorName = $authorName; |
|
| 2688 | 2688 | } |
| 2689 | 2689 | public function getAuthorName() |
| 2690 | 2690 | { |
| 2691 | - return $this->authorName; |
|
| 2691 | + return $this->authorName; |
|
| 2692 | 2692 | } |
| 2693 | 2693 | public function setDetailsUrl($detailsUrl) |
| 2694 | 2694 | { |
| 2695 | - $this->detailsUrl = $detailsUrl; |
|
| 2695 | + $this->detailsUrl = $detailsUrl; |
|
| 2696 | 2696 | } |
| 2697 | 2697 | public function getDetailsUrl() |
| 2698 | 2698 | { |
| 2699 | - return $this->detailsUrl; |
|
| 2699 | + return $this->detailsUrl; |
|
| 2700 | 2700 | } |
| 2701 | 2701 | public function setDistributionChannel($distributionChannel) |
| 2702 | 2702 | { |
| 2703 | - $this->distributionChannel = $distributionChannel; |
|
| 2703 | + $this->distributionChannel = $distributionChannel; |
|
| 2704 | 2704 | } |
| 2705 | 2705 | public function getDistributionChannel() |
| 2706 | 2706 | { |
| 2707 | - return $this->distributionChannel; |
|
| 2707 | + return $this->distributionChannel; |
|
| 2708 | 2708 | } |
| 2709 | 2709 | public function setIconUrl($iconUrl) |
| 2710 | 2710 | { |
| 2711 | - $this->iconUrl = $iconUrl; |
|
| 2711 | + $this->iconUrl = $iconUrl; |
|
| 2712 | 2712 | } |
| 2713 | 2713 | public function getIconUrl() |
| 2714 | 2714 | { |
| 2715 | - return $this->iconUrl; |
|
| 2715 | + return $this->iconUrl; |
|
| 2716 | 2716 | } |
| 2717 | 2717 | public function setKind($kind) |
| 2718 | 2718 | { |
| 2719 | - $this->kind = $kind; |
|
| 2719 | + $this->kind = $kind; |
|
| 2720 | 2720 | } |
| 2721 | 2721 | public function getKind() |
| 2722 | 2722 | { |
| 2723 | - return $this->kind; |
|
| 2723 | + return $this->kind; |
|
| 2724 | 2724 | } |
| 2725 | 2725 | public function setProductId($productId) |
| 2726 | 2726 | { |
| 2727 | - $this->productId = $productId; |
|
| 2727 | + $this->productId = $productId; |
|
| 2728 | 2728 | } |
| 2729 | 2729 | public function getProductId() |
| 2730 | 2730 | { |
| 2731 | - return $this->productId; |
|
| 2731 | + return $this->productId; |
|
| 2732 | 2732 | } |
| 2733 | 2733 | public function setRequiresContainerApp($requiresContainerApp) |
| 2734 | 2734 | { |
| 2735 | - $this->requiresContainerApp = $requiresContainerApp; |
|
| 2735 | + $this->requiresContainerApp = $requiresContainerApp; |
|
| 2736 | 2736 | } |
| 2737 | 2737 | public function getRequiresContainerApp() |
| 2738 | 2738 | { |
| 2739 | - return $this->requiresContainerApp; |
|
| 2739 | + return $this->requiresContainerApp; |
|
| 2740 | 2740 | } |
| 2741 | 2741 | public function setTitle($title) |
| 2742 | 2742 | { |
| 2743 | - $this->title = $title; |
|
| 2743 | + $this->title = $title; |
|
| 2744 | 2744 | } |
| 2745 | 2745 | public function getTitle() |
| 2746 | 2746 | { |
| 2747 | - return $this->title; |
|
| 2747 | + return $this->title; |
|
| 2748 | 2748 | } |
| 2749 | 2749 | public function setWorkDetailsUrl($workDetailsUrl) |
| 2750 | 2750 | { |
| 2751 | - $this->workDetailsUrl = $workDetailsUrl; |
|
| 2751 | + $this->workDetailsUrl = $workDetailsUrl; |
|
| 2752 | 2752 | } |
| 2753 | 2753 | public function getWorkDetailsUrl() |
| 2754 | 2754 | { |
| 2755 | - return $this->workDetailsUrl; |
|
| 2755 | + return $this->workDetailsUrl; |
|
| 2756 | 2756 | } |
| 2757 | 2757 | } |
| 2758 | 2758 | |
@@ -2766,19 +2766,19 @@ discard block |
||
| 2766 | 2766 | |
| 2767 | 2767 | public function setPermissionId($permissionId) |
| 2768 | 2768 | { |
| 2769 | - $this->permissionId = $permissionId; |
|
| 2769 | + $this->permissionId = $permissionId; |
|
| 2770 | 2770 | } |
| 2771 | 2771 | public function getPermissionId() |
| 2772 | 2772 | { |
| 2773 | - return $this->permissionId; |
|
| 2773 | + return $this->permissionId; |
|
| 2774 | 2774 | } |
| 2775 | 2775 | public function setState($state) |
| 2776 | 2776 | { |
| 2777 | - $this->state = $state; |
|
| 2777 | + $this->state = $state; |
|
| 2778 | 2778 | } |
| 2779 | 2779 | public function getState() |
| 2780 | 2780 | { |
| 2781 | - return $this->state; |
|
| 2781 | + return $this->state; |
|
| 2782 | 2782 | } |
| 2783 | 2783 | } |
| 2784 | 2784 | |
@@ -2795,27 +2795,27 @@ discard block |
||
| 2795 | 2795 | |
| 2796 | 2796 | public function setKind($kind) |
| 2797 | 2797 | { |
| 2798 | - $this->kind = $kind; |
|
| 2798 | + $this->kind = $kind; |
|
| 2799 | 2799 | } |
| 2800 | 2800 | public function getKind() |
| 2801 | 2801 | { |
| 2802 | - return $this->kind; |
|
| 2802 | + return $this->kind; |
|
| 2803 | 2803 | } |
| 2804 | 2804 | public function setPermission($permission) |
| 2805 | 2805 | { |
| 2806 | - $this->permission = $permission; |
|
| 2806 | + $this->permission = $permission; |
|
| 2807 | 2807 | } |
| 2808 | 2808 | public function getPermission() |
| 2809 | 2809 | { |
| 2810 | - return $this->permission; |
|
| 2810 | + return $this->permission; |
|
| 2811 | 2811 | } |
| 2812 | 2812 | public function setProductId($productId) |
| 2813 | 2813 | { |
| 2814 | - $this->productId = $productId; |
|
| 2814 | + $this->productId = $productId; |
|
| 2815 | 2815 | } |
| 2816 | 2816 | public function getProductId() |
| 2817 | 2817 | { |
| 2818 | - return $this->productId; |
|
| 2818 | + return $this->productId; |
|
| 2819 | 2819 | } |
| 2820 | 2820 | } |
| 2821 | 2821 | |
@@ -2829,11 +2829,11 @@ discard block |
||
| 2829 | 2829 | |
| 2830 | 2830 | public function setApprovalUrlInfo(Google_Service_AndroidEnterprise_ApprovalUrlInfo $approvalUrlInfo) |
| 2831 | 2831 | { |
| 2832 | - $this->approvalUrlInfo = $approvalUrlInfo; |
|
| 2832 | + $this->approvalUrlInfo = $approvalUrlInfo; |
|
| 2833 | 2833 | } |
| 2834 | 2834 | public function getApprovalUrlInfo() |
| 2835 | 2835 | { |
| 2836 | - return $this->approvalUrlInfo; |
|
| 2836 | + return $this->approvalUrlInfo; |
|
| 2837 | 2837 | } |
| 2838 | 2838 | } |
| 2839 | 2839 | |
@@ -2846,11 +2846,11 @@ discard block |
||
| 2846 | 2846 | |
| 2847 | 2847 | public function setUrl($url) |
| 2848 | 2848 | { |
| 2849 | - $this->url = $url; |
|
| 2849 | + $this->url = $url; |
|
| 2850 | 2850 | } |
| 2851 | 2851 | public function getUrl() |
| 2852 | 2852 | { |
| 2853 | - return $this->url; |
|
| 2853 | + return $this->url; |
|
| 2854 | 2854 | } |
| 2855 | 2855 | } |
| 2856 | 2856 | |
@@ -2865,27 +2865,27 @@ discard block |
||
| 2865 | 2865 | |
| 2866 | 2866 | public function setId($id) |
| 2867 | 2867 | { |
| 2868 | - $this->id = $id; |
|
| 2868 | + $this->id = $id; |
|
| 2869 | 2869 | } |
| 2870 | 2870 | public function getId() |
| 2871 | 2871 | { |
| 2872 | - return $this->id; |
|
| 2872 | + return $this->id; |
|
| 2873 | 2873 | } |
| 2874 | 2874 | public function setKind($kind) |
| 2875 | 2875 | { |
| 2876 | - $this->kind = $kind; |
|
| 2876 | + $this->kind = $kind; |
|
| 2877 | 2877 | } |
| 2878 | 2878 | public function getKind() |
| 2879 | 2879 | { |
| 2880 | - return $this->kind; |
|
| 2880 | + return $this->kind; |
|
| 2881 | 2881 | } |
| 2882 | 2882 | public function setPrimaryEmail($primaryEmail) |
| 2883 | 2883 | { |
| 2884 | - $this->primaryEmail = $primaryEmail; |
|
| 2884 | + $this->primaryEmail = $primaryEmail; |
|
| 2885 | 2885 | } |
| 2886 | 2886 | public function getPrimaryEmail() |
| 2887 | 2887 | { |
| 2888 | - return $this->primaryEmail; |
|
| 2888 | + return $this->primaryEmail; |
|
| 2889 | 2889 | } |
| 2890 | 2890 | } |
| 2891 | 2891 | |
@@ -2900,27 +2900,27 @@ discard block |
||
| 2900 | 2900 | |
| 2901 | 2901 | public function setKind($kind) |
| 2902 | 2902 | { |
| 2903 | - $this->kind = $kind; |
|
| 2903 | + $this->kind = $kind; |
|
| 2904 | 2904 | } |
| 2905 | 2905 | public function getKind() |
| 2906 | 2906 | { |
| 2907 | - return $this->kind; |
|
| 2907 | + return $this->kind; |
|
| 2908 | 2908 | } |
| 2909 | 2909 | public function setToken($token) |
| 2910 | 2910 | { |
| 2911 | - $this->token = $token; |
|
| 2911 | + $this->token = $token; |
|
| 2912 | 2912 | } |
| 2913 | 2913 | public function getToken() |
| 2914 | 2914 | { |
| 2915 | - return $this->token; |
|
| 2915 | + return $this->token; |
|
| 2916 | 2916 | } |
| 2917 | 2917 | public function setUserId($userId) |
| 2918 | 2918 | { |
| 2919 | - $this->userId = $userId; |
|
| 2919 | + $this->userId = $userId; |
|
| 2920 | 2920 | } |
| 2921 | 2921 | public function getUserId() |
| 2922 | 2922 | { |
| 2923 | - return $this->userId; |
|
| 2923 | + return $this->userId; |
|
| 2924 | 2924 | } |
| 2925 | 2925 | } |
| 2926 | 2926 | |
@@ -2936,18 +2936,18 @@ discard block |
||
| 2936 | 2936 | |
| 2937 | 2937 | public function setKind($kind) |
| 2938 | 2938 | { |
| 2939 | - $this->kind = $kind; |
|
| 2939 | + $this->kind = $kind; |
|
| 2940 | 2940 | } |
| 2941 | 2941 | public function getKind() |
| 2942 | 2942 | { |
| 2943 | - return $this->kind; |
|
| 2943 | + return $this->kind; |
|
| 2944 | 2944 | } |
| 2945 | 2945 | public function setUser($user) |
| 2946 | 2946 | { |
| 2947 | - $this->user = $user; |
|
| 2947 | + $this->user = $user; |
|
| 2948 | 2948 | } |
| 2949 | 2949 | public function getUser() |
| 2950 | 2950 | { |
| 2951 | - return $this->user; |
|
| 2951 | + return $this->user; |
|
| 2952 | 2952 | } |
| 2953 | 2953 | } |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | 'required' => true, |
| 83 | 83 | ), |
| 84 | 84 | ), |
| 85 | - ),'get' => array( |
|
| 85 | + ), 'get' => array( |
|
| 86 | 86 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
| 87 | 87 | 'httpMethod' => 'GET', |
| 88 | 88 | 'parameters' => array( |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | 'required' => true, |
| 98 | 98 | ), |
| 99 | 99 | ), |
| 100 | - ),'insert' => array( |
|
| 100 | + ), 'insert' => array( |
|
| 101 | 101 | 'path' => 'enterprises/{enterpriseId}/collections', |
| 102 | 102 | 'httpMethod' => 'POST', |
| 103 | 103 | 'parameters' => array( |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | 'required' => true, |
| 108 | 108 | ), |
| 109 | 109 | ), |
| 110 | - ),'list' => array( |
|
| 110 | + ), 'list' => array( |
|
| 111 | 111 | 'path' => 'enterprises/{enterpriseId}/collections', |
| 112 | 112 | 'httpMethod' => 'GET', |
| 113 | 113 | 'parameters' => array( |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | 'required' => true, |
| 118 | 118 | ), |
| 119 | 119 | ), |
| 120 | - ),'patch' => array( |
|
| 120 | + ), 'patch' => array( |
|
| 121 | 121 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
| 122 | 122 | 'httpMethod' => 'PATCH', |
| 123 | 123 | 'parameters' => array( |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | 'required' => true, |
| 133 | 133 | ), |
| 134 | 134 | ), |
| 135 | - ),'update' => array( |
|
| 135 | + ), 'update' => array( |
|
| 136 | 136 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}', |
| 137 | 137 | 'httpMethod' => 'PUT', |
| 138 | 138 | 'parameters' => array( |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | 'required' => true, |
| 178 | 178 | ), |
| 179 | 179 | ), |
| 180 | - ),'get' => array( |
|
| 180 | + ), 'get' => array( |
|
| 181 | 181 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
| 182 | 182 | 'httpMethod' => 'GET', |
| 183 | 183 | 'parameters' => array( |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | 'required' => true, |
| 198 | 198 | ), |
| 199 | 199 | ), |
| 200 | - ),'list' => array( |
|
| 200 | + ), 'list' => array( |
|
| 201 | 201 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users', |
| 202 | 202 | 'httpMethod' => 'GET', |
| 203 | 203 | 'parameters' => array( |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | 'required' => true, |
| 213 | 213 | ), |
| 214 | 214 | ), |
| 215 | - ),'patch' => array( |
|
| 215 | + ), 'patch' => array( |
|
| 216 | 216 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
| 217 | 217 | 'httpMethod' => 'PATCH', |
| 218 | 218 | 'parameters' => array( |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | 'required' => true, |
| 233 | 233 | ), |
| 234 | 234 | ), |
| 235 | - ),'update' => array( |
|
| 235 | + ), 'update' => array( |
|
| 236 | 236 | 'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}', |
| 237 | 237 | 'httpMethod' => 'PUT', |
| 238 | 238 | 'parameters' => array( |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | 'required' => true, |
| 283 | 283 | ), |
| 284 | 284 | ), |
| 285 | - ),'getState' => array( |
|
| 285 | + ), 'getState' => array( |
|
| 286 | 286 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
| 287 | 287 | 'httpMethod' => 'GET', |
| 288 | 288 | 'parameters' => array( |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | 'required' => true, |
| 303 | 303 | ), |
| 304 | 304 | ), |
| 305 | - ),'list' => array( |
|
| 305 | + ), 'list' => array( |
|
| 306 | 306 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices', |
| 307 | 307 | 'httpMethod' => 'GET', |
| 308 | 308 | 'parameters' => array( |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | 'required' => true, |
| 318 | 318 | ), |
| 319 | 319 | ), |
| 320 | - ),'setState' => array( |
|
| 320 | + ), 'setState' => array( |
|
| 321 | 321 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state', |
| 322 | 322 | 'httpMethod' => 'PUT', |
| 323 | 323 | 'parameters' => array( |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | 'required' => true, |
| 358 | 358 | ), |
| 359 | 359 | ), |
| 360 | - ),'enroll' => array( |
|
| 360 | + ), 'enroll' => array( |
|
| 361 | 361 | 'path' => 'enterprises/enroll', |
| 362 | 362 | 'httpMethod' => 'POST', |
| 363 | 363 | 'parameters' => array( |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | 'required' => true, |
| 368 | 368 | ), |
| 369 | 369 | ), |
| 370 | - ),'get' => array( |
|
| 370 | + ), 'get' => array( |
|
| 371 | 371 | 'path' => 'enterprises/{enterpriseId}', |
| 372 | 372 | 'httpMethod' => 'GET', |
| 373 | 373 | 'parameters' => array( |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | 'required' => true, |
| 378 | 378 | ), |
| 379 | 379 | ), |
| 380 | - ),'insert' => array( |
|
| 380 | + ), 'insert' => array( |
|
| 381 | 381 | 'path' => 'enterprises', |
| 382 | 382 | 'httpMethod' => 'POST', |
| 383 | 383 | 'parameters' => array( |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | 'required' => true, |
| 388 | 388 | ), |
| 389 | 389 | ), |
| 390 | - ),'list' => array( |
|
| 390 | + ), 'list' => array( |
|
| 391 | 391 | 'path' => 'enterprises', |
| 392 | 392 | 'httpMethod' => 'GET', |
| 393 | 393 | 'parameters' => array( |
@@ -397,7 +397,7 @@ discard block |
||
| 397 | 397 | 'required' => true, |
| 398 | 398 | ), |
| 399 | 399 | ), |
| 400 | - ),'setAccount' => array( |
|
| 400 | + ), 'setAccount' => array( |
|
| 401 | 401 | 'path' => 'enterprises/{enterpriseId}/account', |
| 402 | 402 | 'httpMethod' => 'PUT', |
| 403 | 403 | 'parameters' => array( |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | 'required' => true, |
| 408 | 408 | ), |
| 409 | 409 | ), |
| 410 | - ),'unenroll' => array( |
|
| 410 | + ), 'unenroll' => array( |
|
| 411 | 411 | 'path' => 'enterprises/{enterpriseId}/unenroll', |
| 412 | 412 | 'httpMethod' => 'POST', |
| 413 | 413 | 'parameters' => array( |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | 'required' => true, |
| 448 | 448 | ), |
| 449 | 449 | ), |
| 450 | - ),'get' => array( |
|
| 450 | + ), 'get' => array( |
|
| 451 | 451 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
| 452 | 452 | 'httpMethod' => 'GET', |
| 453 | 453 | 'parameters' => array( |
@@ -467,7 +467,7 @@ discard block |
||
| 467 | 467 | 'required' => true, |
| 468 | 468 | ), |
| 469 | 469 | ), |
| 470 | - ),'list' => array( |
|
| 470 | + ), 'list' => array( |
|
| 471 | 471 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements', |
| 472 | 472 | 'httpMethod' => 'GET', |
| 473 | 473 | 'parameters' => array( |
@@ -482,7 +482,7 @@ discard block |
||
| 482 | 482 | 'required' => true, |
| 483 | 483 | ), |
| 484 | 484 | ), |
| 485 | - ),'patch' => array( |
|
| 485 | + ), 'patch' => array( |
|
| 486 | 486 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
| 487 | 487 | 'httpMethod' => 'PATCH', |
| 488 | 488 | 'parameters' => array( |
@@ -506,7 +506,7 @@ discard block |
||
| 506 | 506 | 'type' => 'boolean', |
| 507 | 507 | ), |
| 508 | 508 | ), |
| 509 | - ),'update' => array( |
|
| 509 | + ), 'update' => array( |
|
| 510 | 510 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}', |
| 511 | 511 | 'httpMethod' => 'PUT', |
| 512 | 512 | 'parameters' => array( |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | 'required' => true, |
| 556 | 556 | ), |
| 557 | 557 | ), |
| 558 | - ),'list' => array( |
|
| 558 | + ), 'list' => array( |
|
| 559 | 559 | 'path' => 'enterprises/{enterpriseId}/groupLicenses', |
| 560 | 560 | 'httpMethod' => 'GET', |
| 561 | 561 | 'parameters' => array( |
@@ -625,7 +625,7 @@ discard block |
||
| 625 | 625 | 'required' => true, |
| 626 | 626 | ), |
| 627 | 627 | ), |
| 628 | - ),'get' => array( |
|
| 628 | + ), 'get' => array( |
|
| 629 | 629 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
| 630 | 630 | 'httpMethod' => 'GET', |
| 631 | 631 | 'parameters' => array( |
@@ -650,7 +650,7 @@ discard block |
||
| 650 | 650 | 'required' => true, |
| 651 | 651 | ), |
| 652 | 652 | ), |
| 653 | - ),'list' => array( |
|
| 653 | + ), 'list' => array( |
|
| 654 | 654 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs', |
| 655 | 655 | 'httpMethod' => 'GET', |
| 656 | 656 | 'parameters' => array( |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | 'required' => true, |
| 671 | 671 | ), |
| 672 | 672 | ), |
| 673 | - ),'patch' => array( |
|
| 673 | + ), 'patch' => array( |
|
| 674 | 674 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
| 675 | 675 | 'httpMethod' => 'PATCH', |
| 676 | 676 | 'parameters' => array( |
@@ -695,7 +695,7 @@ discard block |
||
| 695 | 695 | 'required' => true, |
| 696 | 696 | ), |
| 697 | 697 | ), |
| 698 | - ),'update' => array( |
|
| 698 | + ), 'update' => array( |
|
| 699 | 699 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}', |
| 700 | 700 | 'httpMethod' => 'PUT', |
| 701 | 701 | 'parameters' => array( |
@@ -769,7 +769,7 @@ discard block |
||
| 769 | 769 | 'required' => true, |
| 770 | 770 | ), |
| 771 | 771 | ), |
| 772 | - ),'generateApprovalUrl' => array( |
|
| 772 | + ), 'generateApprovalUrl' => array( |
|
| 773 | 773 | 'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl', |
| 774 | 774 | 'httpMethod' => 'POST', |
| 775 | 775 | 'parameters' => array( |
@@ -788,7 +788,7 @@ discard block |
||
| 788 | 788 | 'type' => 'string', |
| 789 | 789 | ), |
| 790 | 790 | ), |
| 791 | - ),'get' => array( |
|
| 791 | + ), 'get' => array( |
|
| 792 | 792 | 'path' => 'enterprises/{enterpriseId}/products/{productId}', |
| 793 | 793 | 'httpMethod' => 'GET', |
| 794 | 794 | 'parameters' => array( |
@@ -807,7 +807,7 @@ discard block |
||
| 807 | 807 | 'type' => 'string', |
| 808 | 808 | ), |
| 809 | 809 | ), |
| 810 | - ),'getAppRestrictionsSchema' => array( |
|
| 810 | + ), 'getAppRestrictionsSchema' => array( |
|
| 811 | 811 | 'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema', |
| 812 | 812 | 'httpMethod' => 'GET', |
| 813 | 813 | 'parameters' => array( |
@@ -826,7 +826,7 @@ discard block |
||
| 826 | 826 | 'type' => 'string', |
| 827 | 827 | ), |
| 828 | 828 | ), |
| 829 | - ),'getPermissions' => array( |
|
| 829 | + ), 'getPermissions' => array( |
|
| 830 | 830 | 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
| 831 | 831 | 'httpMethod' => 'GET', |
| 832 | 832 | 'parameters' => array( |
@@ -841,7 +841,7 @@ discard block |
||
| 841 | 841 | 'required' => true, |
| 842 | 842 | ), |
| 843 | 843 | ), |
| 844 | - ),'updatePermissions' => array( |
|
| 844 | + ), 'updatePermissions' => array( |
|
| 845 | 845 | 'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions', |
| 846 | 846 | 'httpMethod' => 'PUT', |
| 847 | 847 | 'parameters' => array( |
@@ -881,7 +881,7 @@ discard block |
||
| 881 | 881 | 'required' => true, |
| 882 | 882 | ), |
| 883 | 883 | ), |
| 884 | - ),'get' => array( |
|
| 884 | + ), 'get' => array( |
|
| 885 | 885 | 'path' => 'enterprises/{enterpriseId}/users/{userId}', |
| 886 | 886 | 'httpMethod' => 'GET', |
| 887 | 887 | 'parameters' => array( |
@@ -896,7 +896,7 @@ discard block |
||
| 896 | 896 | 'required' => true, |
| 897 | 897 | ), |
| 898 | 898 | ), |
| 899 | - ),'list' => array( |
|
| 899 | + ), 'list' => array( |
|
| 900 | 900 | 'path' => 'enterprises/{enterpriseId}/users', |
| 901 | 901 | 'httpMethod' => 'GET', |
| 902 | 902 | 'parameters' => array( |
@@ -911,7 +911,7 @@ discard block |
||
| 911 | 911 | 'required' => true, |
| 912 | 912 | ), |
| 913 | 913 | ), |
| 914 | - ),'revokeToken' => array( |
|
| 914 | + ), 'revokeToken' => array( |
|
| 915 | 915 | 'path' => 'enterprises/{enterpriseId}/users/{userId}/token', |
| 916 | 916 | 'httpMethod' => 'DELETE', |
| 917 | 917 | 'parameters' => array( |
@@ -32,19 +32,19 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | /** Manage your YouTube account. */ |
| 34 | 34 | const YOUTUBE = |
| 35 | - "https://www.googleapis.com/auth/youtube"; |
|
| 35 | + "https://www.googleapis.com/auth/youtube"; |
|
| 36 | 36 | /** View your YouTube account. */ |
| 37 | 37 | const YOUTUBE_READONLY = |
| 38 | - "https://www.googleapis.com/auth/youtube.readonly"; |
|
| 38 | + "https://www.googleapis.com/auth/youtube.readonly"; |
|
| 39 | 39 | /** View and manage your assets and associated content on YouTube. */ |
| 40 | 40 | const YOUTUBEPARTNER = |
| 41 | - "https://www.googleapis.com/auth/youtubepartner"; |
|
| 41 | + "https://www.googleapis.com/auth/youtubepartner"; |
|
| 42 | 42 | /** View YouTube Analytics monetary reports for your YouTube content. */ |
| 43 | 43 | const YT_ANALYTICS_MONETARY_READONLY = |
| 44 | - "https://www.googleapis.com/auth/yt-analytics-monetary.readonly"; |
|
| 44 | + "https://www.googleapis.com/auth/yt-analytics-monetary.readonly"; |
|
| 45 | 45 | /** View YouTube Analytics reports for your YouTube content. */ |
| 46 | 46 | const YT_ANALYTICS_READONLY = |
| 47 | - "https://www.googleapis.com/auth/yt-analytics.readonly"; |
|
| 47 | + "https://www.googleapis.com/auth/yt-analytics.readonly"; |
|
| 48 | 48 | |
| 49 | 49 | public $batchReportDefinitions; |
| 50 | 50 | public $batchReports; |
@@ -60,222 +60,222 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | public function __construct(Google_Client $client) |
| 62 | 62 | { |
| 63 | - parent::__construct($client); |
|
| 64 | - $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 65 | - $this->servicePath = 'youtube/analytics/v1/'; |
|
| 66 | - $this->version = 'v1'; |
|
| 67 | - $this->serviceName = 'youtubeAnalytics'; |
|
| 68 | - |
|
| 69 | - $this->batchReportDefinitions = new Google_Service_YouTubeAnalytics_BatchReportDefinitions_Resource( |
|
| 70 | - $this, |
|
| 71 | - $this->serviceName, |
|
| 72 | - 'batchReportDefinitions', |
|
| 73 | - array( |
|
| 74 | - 'methods' => array( |
|
| 75 | - 'list' => array( |
|
| 76 | - 'path' => 'batchReportDefinitions', |
|
| 77 | - 'httpMethod' => 'GET', |
|
| 78 | - 'parameters' => array( |
|
| 79 | - 'onBehalfOfContentOwner' => array( |
|
| 80 | - 'location' => 'query', |
|
| 81 | - 'type' => 'string', |
|
| 82 | - 'required' => true, |
|
| 83 | - ), |
|
| 84 | - ), |
|
| 85 | - ), |
|
| 86 | - ) |
|
| 87 | - ) |
|
| 88 | - ); |
|
| 89 | - $this->batchReports = new Google_Service_YouTubeAnalytics_BatchReports_Resource( |
|
| 90 | - $this, |
|
| 91 | - $this->serviceName, |
|
| 92 | - 'batchReports', |
|
| 93 | - array( |
|
| 94 | - 'methods' => array( |
|
| 95 | - 'list' => array( |
|
| 96 | - 'path' => 'batchReports', |
|
| 97 | - 'httpMethod' => 'GET', |
|
| 98 | - 'parameters' => array( |
|
| 99 | - 'batchReportDefinitionId' => array( |
|
| 100 | - 'location' => 'query', |
|
| 101 | - 'type' => 'string', |
|
| 102 | - 'required' => true, |
|
| 103 | - ), |
|
| 104 | - 'onBehalfOfContentOwner' => array( |
|
| 105 | - 'location' => 'query', |
|
| 106 | - 'type' => 'string', |
|
| 107 | - 'required' => true, |
|
| 108 | - ), |
|
| 109 | - ), |
|
| 110 | - ), |
|
| 111 | - ) |
|
| 112 | - ) |
|
| 113 | - ); |
|
| 114 | - $this->groupItems = new Google_Service_YouTubeAnalytics_GroupItems_Resource( |
|
| 115 | - $this, |
|
| 116 | - $this->serviceName, |
|
| 117 | - 'groupItems', |
|
| 118 | - array( |
|
| 119 | - 'methods' => array( |
|
| 120 | - 'delete' => array( |
|
| 121 | - 'path' => 'groupItems', |
|
| 122 | - 'httpMethod' => 'DELETE', |
|
| 123 | - 'parameters' => array( |
|
| 124 | - 'id' => array( |
|
| 125 | - 'location' => 'query', |
|
| 126 | - 'type' => 'string', |
|
| 127 | - 'required' => true, |
|
| 128 | - ), |
|
| 129 | - 'onBehalfOfContentOwner' => array( |
|
| 130 | - 'location' => 'query', |
|
| 131 | - 'type' => 'string', |
|
| 132 | - ), |
|
| 133 | - ), |
|
| 134 | - ),'insert' => array( |
|
| 135 | - 'path' => 'groupItems', |
|
| 136 | - 'httpMethod' => 'POST', |
|
| 137 | - 'parameters' => array( |
|
| 138 | - 'onBehalfOfContentOwner' => array( |
|
| 139 | - 'location' => 'query', |
|
| 140 | - 'type' => 'string', |
|
| 141 | - ), |
|
| 142 | - ), |
|
| 143 | - ),'list' => array( |
|
| 144 | - 'path' => 'groupItems', |
|
| 145 | - 'httpMethod' => 'GET', |
|
| 146 | - 'parameters' => array( |
|
| 147 | - 'groupId' => array( |
|
| 148 | - 'location' => 'query', |
|
| 149 | - 'type' => 'string', |
|
| 150 | - 'required' => true, |
|
| 151 | - ), |
|
| 152 | - 'onBehalfOfContentOwner' => array( |
|
| 153 | - 'location' => 'query', |
|
| 154 | - 'type' => 'string', |
|
| 155 | - ), |
|
| 156 | - ), |
|
| 157 | - ), |
|
| 158 | - ) |
|
| 159 | - ) |
|
| 160 | - ); |
|
| 161 | - $this->groups = new Google_Service_YouTubeAnalytics_Groups_Resource( |
|
| 162 | - $this, |
|
| 163 | - $this->serviceName, |
|
| 164 | - 'groups', |
|
| 165 | - array( |
|
| 166 | - 'methods' => array( |
|
| 167 | - 'delete' => array( |
|
| 168 | - 'path' => 'groups', |
|
| 169 | - 'httpMethod' => 'DELETE', |
|
| 170 | - 'parameters' => array( |
|
| 171 | - 'id' => array( |
|
| 172 | - 'location' => 'query', |
|
| 173 | - 'type' => 'string', |
|
| 174 | - 'required' => true, |
|
| 175 | - ), |
|
| 176 | - 'onBehalfOfContentOwner' => array( |
|
| 177 | - 'location' => 'query', |
|
| 178 | - 'type' => 'string', |
|
| 179 | - ), |
|
| 180 | - ), |
|
| 181 | - ),'insert' => array( |
|
| 182 | - 'path' => 'groups', |
|
| 183 | - 'httpMethod' => 'POST', |
|
| 184 | - 'parameters' => array( |
|
| 185 | - 'onBehalfOfContentOwner' => array( |
|
| 186 | - 'location' => 'query', |
|
| 187 | - 'type' => 'string', |
|
| 188 | - ), |
|
| 189 | - ), |
|
| 190 | - ),'list' => array( |
|
| 191 | - 'path' => 'groups', |
|
| 192 | - 'httpMethod' => 'GET', |
|
| 193 | - 'parameters' => array( |
|
| 194 | - 'onBehalfOfContentOwner' => array( |
|
| 195 | - 'location' => 'query', |
|
| 196 | - 'type' => 'string', |
|
| 197 | - ), |
|
| 198 | - 'id' => array( |
|
| 199 | - 'location' => 'query', |
|
| 200 | - 'type' => 'string', |
|
| 201 | - ), |
|
| 202 | - 'mine' => array( |
|
| 203 | - 'location' => 'query', |
|
| 204 | - 'type' => 'boolean', |
|
| 205 | - ), |
|
| 206 | - ), |
|
| 207 | - ),'update' => array( |
|
| 208 | - 'path' => 'groups', |
|
| 209 | - 'httpMethod' => 'PUT', |
|
| 210 | - 'parameters' => array( |
|
| 211 | - 'onBehalfOfContentOwner' => array( |
|
| 212 | - 'location' => 'query', |
|
| 213 | - 'type' => 'string', |
|
| 214 | - ), |
|
| 215 | - ), |
|
| 216 | - ), |
|
| 217 | - ) |
|
| 218 | - ) |
|
| 219 | - ); |
|
| 220 | - $this->reports = new Google_Service_YouTubeAnalytics_Reports_Resource( |
|
| 221 | - $this, |
|
| 222 | - $this->serviceName, |
|
| 223 | - 'reports', |
|
| 224 | - array( |
|
| 225 | - 'methods' => array( |
|
| 226 | - 'query' => array( |
|
| 227 | - 'path' => 'reports', |
|
| 228 | - 'httpMethod' => 'GET', |
|
| 229 | - 'parameters' => array( |
|
| 230 | - 'ids' => array( |
|
| 231 | - 'location' => 'query', |
|
| 232 | - 'type' => 'string', |
|
| 233 | - 'required' => true, |
|
| 234 | - ), |
|
| 235 | - 'start-date' => array( |
|
| 236 | - 'location' => 'query', |
|
| 237 | - 'type' => 'string', |
|
| 238 | - 'required' => true, |
|
| 239 | - ), |
|
| 240 | - 'end-date' => array( |
|
| 241 | - 'location' => 'query', |
|
| 242 | - 'type' => 'string', |
|
| 243 | - 'required' => true, |
|
| 244 | - ), |
|
| 245 | - 'metrics' => array( |
|
| 246 | - 'location' => 'query', |
|
| 247 | - 'type' => 'string', |
|
| 248 | - 'required' => true, |
|
| 249 | - ), |
|
| 250 | - 'max-results' => array( |
|
| 251 | - 'location' => 'query', |
|
| 252 | - 'type' => 'integer', |
|
| 253 | - ), |
|
| 254 | - 'sort' => array( |
|
| 255 | - 'location' => 'query', |
|
| 256 | - 'type' => 'string', |
|
| 257 | - ), |
|
| 258 | - 'dimensions' => array( |
|
| 259 | - 'location' => 'query', |
|
| 260 | - 'type' => 'string', |
|
| 261 | - ), |
|
| 262 | - 'start-index' => array( |
|
| 263 | - 'location' => 'query', |
|
| 264 | - 'type' => 'integer', |
|
| 265 | - ), |
|
| 266 | - 'currency' => array( |
|
| 267 | - 'location' => 'query', |
|
| 268 | - 'type' => 'string', |
|
| 269 | - ), |
|
| 270 | - 'filters' => array( |
|
| 271 | - 'location' => 'query', |
|
| 272 | - 'type' => 'string', |
|
| 273 | - ), |
|
| 274 | - ), |
|
| 275 | - ), |
|
| 276 | - ) |
|
| 277 | - ) |
|
| 278 | - ); |
|
| 63 | + parent::__construct($client); |
|
| 64 | + $this->rootUrl = 'https://www.googleapis.com/'; |
|
| 65 | + $this->servicePath = 'youtube/analytics/v1/'; |
|
| 66 | + $this->version = 'v1'; |
|
| 67 | + $this->serviceName = 'youtubeAnalytics'; |
|
| 68 | + |
|
| 69 | + $this->batchReportDefinitions = new Google_Service_YouTubeAnalytics_BatchReportDefinitions_Resource( |
|
| 70 | + $this, |
|
| 71 | + $this->serviceName, |
|
| 72 | + 'batchReportDefinitions', |
|
| 73 | + array( |
|
| 74 | + 'methods' => array( |
|
| 75 | + 'list' => array( |
|
| 76 | + 'path' => 'batchReportDefinitions', |
|
| 77 | + 'httpMethod' => 'GET', |
|
| 78 | + 'parameters' => array( |
|
| 79 | + 'onBehalfOfContentOwner' => array( |
|
| 80 | + 'location' => 'query', |
|
| 81 | + 'type' => 'string', |
|
| 82 | + 'required' => true, |
|
| 83 | + ), |
|
| 84 | + ), |
|
| 85 | + ), |
|
| 86 | + ) |
|
| 87 | + ) |
|
| 88 | + ); |
|
| 89 | + $this->batchReports = new Google_Service_YouTubeAnalytics_BatchReports_Resource( |
|
| 90 | + $this, |
|
| 91 | + $this->serviceName, |
|
| 92 | + 'batchReports', |
|
| 93 | + array( |
|
| 94 | + 'methods' => array( |
|
| 95 | + 'list' => array( |
|
| 96 | + 'path' => 'batchReports', |
|
| 97 | + 'httpMethod' => 'GET', |
|
| 98 | + 'parameters' => array( |
|
| 99 | + 'batchReportDefinitionId' => array( |
|
| 100 | + 'location' => 'query', |
|
| 101 | + 'type' => 'string', |
|
| 102 | + 'required' => true, |
|
| 103 | + ), |
|
| 104 | + 'onBehalfOfContentOwner' => array( |
|
| 105 | + 'location' => 'query', |
|
| 106 | + 'type' => 'string', |
|
| 107 | + 'required' => true, |
|
| 108 | + ), |
|
| 109 | + ), |
|
| 110 | + ), |
|
| 111 | + ) |
|
| 112 | + ) |
|
| 113 | + ); |
|
| 114 | + $this->groupItems = new Google_Service_YouTubeAnalytics_GroupItems_Resource( |
|
| 115 | + $this, |
|
| 116 | + $this->serviceName, |
|
| 117 | + 'groupItems', |
|
| 118 | + array( |
|
| 119 | + 'methods' => array( |
|
| 120 | + 'delete' => array( |
|
| 121 | + 'path' => 'groupItems', |
|
| 122 | + 'httpMethod' => 'DELETE', |
|
| 123 | + 'parameters' => array( |
|
| 124 | + 'id' => array( |
|
| 125 | + 'location' => 'query', |
|
| 126 | + 'type' => 'string', |
|
| 127 | + 'required' => true, |
|
| 128 | + ), |
|
| 129 | + 'onBehalfOfContentOwner' => array( |
|
| 130 | + 'location' => 'query', |
|
| 131 | + 'type' => 'string', |
|
| 132 | + ), |
|
| 133 | + ), |
|
| 134 | + ),'insert' => array( |
|
| 135 | + 'path' => 'groupItems', |
|
| 136 | + 'httpMethod' => 'POST', |
|
| 137 | + 'parameters' => array( |
|
| 138 | + 'onBehalfOfContentOwner' => array( |
|
| 139 | + 'location' => 'query', |
|
| 140 | + 'type' => 'string', |
|
| 141 | + ), |
|
| 142 | + ), |
|
| 143 | + ),'list' => array( |
|
| 144 | + 'path' => 'groupItems', |
|
| 145 | + 'httpMethod' => 'GET', |
|
| 146 | + 'parameters' => array( |
|
| 147 | + 'groupId' => array( |
|
| 148 | + 'location' => 'query', |
|
| 149 | + 'type' => 'string', |
|
| 150 | + 'required' => true, |
|
| 151 | + ), |
|
| 152 | + 'onBehalfOfContentOwner' => array( |
|
| 153 | + 'location' => 'query', |
|
| 154 | + 'type' => 'string', |
|
| 155 | + ), |
|
| 156 | + ), |
|
| 157 | + ), |
|
| 158 | + ) |
|
| 159 | + ) |
|
| 160 | + ); |
|
| 161 | + $this->groups = new Google_Service_YouTubeAnalytics_Groups_Resource( |
|
| 162 | + $this, |
|
| 163 | + $this->serviceName, |
|
| 164 | + 'groups', |
|
| 165 | + array( |
|
| 166 | + 'methods' => array( |
|
| 167 | + 'delete' => array( |
|
| 168 | + 'path' => 'groups', |
|
| 169 | + 'httpMethod' => 'DELETE', |
|
| 170 | + 'parameters' => array( |
|
| 171 | + 'id' => array( |
|
| 172 | + 'location' => 'query', |
|
| 173 | + 'type' => 'string', |
|
| 174 | + 'required' => true, |
|
| 175 | + ), |
|
| 176 | + 'onBehalfOfContentOwner' => array( |
|
| 177 | + 'location' => 'query', |
|
| 178 | + 'type' => 'string', |
|
| 179 | + ), |
|
| 180 | + ), |
|
| 181 | + ),'insert' => array( |
|
| 182 | + 'path' => 'groups', |
|
| 183 | + 'httpMethod' => 'POST', |
|
| 184 | + 'parameters' => array( |
|
| 185 | + 'onBehalfOfContentOwner' => array( |
|
| 186 | + 'location' => 'query', |
|
| 187 | + 'type' => 'string', |
|
| 188 | + ), |
|
| 189 | + ), |
|
| 190 | + ),'list' => array( |
|
| 191 | + 'path' => 'groups', |
|
| 192 | + 'httpMethod' => 'GET', |
|
| 193 | + 'parameters' => array( |
|
| 194 | + 'onBehalfOfContentOwner' => array( |
|
| 195 | + 'location' => 'query', |
|
| 196 | + 'type' => 'string', |
|
| 197 | + ), |
|
| 198 | + 'id' => array( |
|
| 199 | + 'location' => 'query', |
|
| 200 | + 'type' => 'string', |
|
| 201 | + ), |
|
| 202 | + 'mine' => array( |
|
| 203 | + 'location' => 'query', |
|
| 204 | + 'type' => 'boolean', |
|
| 205 | + ), |
|
| 206 | + ), |
|
| 207 | + ),'update' => array( |
|
| 208 | + 'path' => 'groups', |
|
| 209 | + 'httpMethod' => 'PUT', |
|
| 210 | + 'parameters' => array( |
|
| 211 | + 'onBehalfOfContentOwner' => array( |
|
| 212 | + 'location' => 'query', |
|
| 213 | + 'type' => 'string', |
|
| 214 | + ), |
|
| 215 | + ), |
|
| 216 | + ), |
|
| 217 | + ) |
|
| 218 | + ) |
|
| 219 | + ); |
|
| 220 | + $this->reports = new Google_Service_YouTubeAnalytics_Reports_Resource( |
|
| 221 | + $this, |
|
| 222 | + $this->serviceName, |
|
| 223 | + 'reports', |
|
| 224 | + array( |
|
| 225 | + 'methods' => array( |
|
| 226 | + 'query' => array( |
|
| 227 | + 'path' => 'reports', |
|
| 228 | + 'httpMethod' => 'GET', |
|
| 229 | + 'parameters' => array( |
|
| 230 | + 'ids' => array( |
|
| 231 | + 'location' => 'query', |
|
| 232 | + 'type' => 'string', |
|
| 233 | + 'required' => true, |
|
| 234 | + ), |
|
| 235 | + 'start-date' => array( |
|
| 236 | + 'location' => 'query', |
|
| 237 | + 'type' => 'string', |
|
| 238 | + 'required' => true, |
|
| 239 | + ), |
|
| 240 | + 'end-date' => array( |
|
| 241 | + 'location' => 'query', |
|
| 242 | + 'type' => 'string', |
|
| 243 | + 'required' => true, |
|
| 244 | + ), |
|
| 245 | + 'metrics' => array( |
|
| 246 | + 'location' => 'query', |
|
| 247 | + 'type' => 'string', |
|
| 248 | + 'required' => true, |
|
| 249 | + ), |
|
| 250 | + 'max-results' => array( |
|
| 251 | + 'location' => 'query', |
|
| 252 | + 'type' => 'integer', |
|
| 253 | + ), |
|
| 254 | + 'sort' => array( |
|
| 255 | + 'location' => 'query', |
|
| 256 | + 'type' => 'string', |
|
| 257 | + ), |
|
| 258 | + 'dimensions' => array( |
|
| 259 | + 'location' => 'query', |
|
| 260 | + 'type' => 'string', |
|
| 261 | + ), |
|
| 262 | + 'start-index' => array( |
|
| 263 | + 'location' => 'query', |
|
| 264 | + 'type' => 'integer', |
|
| 265 | + ), |
|
| 266 | + 'currency' => array( |
|
| 267 | + 'location' => 'query', |
|
| 268 | + 'type' => 'string', |
|
| 269 | + ), |
|
| 270 | + 'filters' => array( |
|
| 271 | + 'location' => 'query', |
|
| 272 | + 'type' => 'string', |
|
| 273 | + ), |
|
| 274 | + ), |
|
| 275 | + ), |
|
| 276 | + ) |
|
| 277 | + ) |
|
| 278 | + ); |
|
| 279 | 279 | } |
| 280 | 280 | } |
| 281 | 281 | |
@@ -302,9 +302,9 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | public function listBatchReportDefinitions($onBehalfOfContentOwner, $optParams = array()) |
| 304 | 304 | { |
| 305 | - $params = array('onBehalfOfContentOwner' => $onBehalfOfContentOwner); |
|
| 306 | - $params = array_merge($params, $optParams); |
|
| 307 | - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_BatchReportDefinitionList"); |
|
| 305 | + $params = array('onBehalfOfContentOwner' => $onBehalfOfContentOwner); |
|
| 306 | + $params = array_merge($params, $optParams); |
|
| 307 | + return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_BatchReportDefinitionList"); |
|
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | 310 | |
@@ -332,9 +332,9 @@ discard block |
||
| 332 | 332 | */ |
| 333 | 333 | public function listBatchReports($batchReportDefinitionId, $onBehalfOfContentOwner, $optParams = array()) |
| 334 | 334 | { |
| 335 | - $params = array('batchReportDefinitionId' => $batchReportDefinitionId, 'onBehalfOfContentOwner' => $onBehalfOfContentOwner); |
|
| 336 | - $params = array_merge($params, $optParams); |
|
| 337 | - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_BatchReportList"); |
|
| 335 | + $params = array('batchReportDefinitionId' => $batchReportDefinitionId, 'onBehalfOfContentOwner' => $onBehalfOfContentOwner); |
|
| 336 | + $params = array_merge($params, $optParams); |
|
| 337 | + return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_BatchReportList"); |
|
| 338 | 338 | } |
| 339 | 339 | } |
| 340 | 340 | |
@@ -371,9 +371,9 @@ discard block |
||
| 371 | 371 | */ |
| 372 | 372 | public function delete($id, $optParams = array()) |
| 373 | 373 | { |
| 374 | - $params = array('id' => $id); |
|
| 375 | - $params = array_merge($params, $optParams); |
|
| 376 | - return $this->call('delete', array($params)); |
|
| 374 | + $params = array('id' => $id); |
|
| 375 | + $params = array_merge($params, $optParams); |
|
| 376 | + return $this->call('delete', array($params)); |
|
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | /** |
@@ -398,9 +398,9 @@ discard block |
||
| 398 | 398 | */ |
| 399 | 399 | public function insert(Google_Service_YouTubeAnalytics_GroupItem $postBody, $optParams = array()) |
| 400 | 400 | { |
| 401 | - $params = array('postBody' => $postBody); |
|
| 402 | - $params = array_merge($params, $optParams); |
|
| 403 | - return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_GroupItem"); |
|
| 401 | + $params = array('postBody' => $postBody); |
|
| 402 | + $params = array_merge($params, $optParams); |
|
| 403 | + return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_GroupItem"); |
|
| 404 | 404 | } |
| 405 | 405 | |
| 406 | 406 | /** |
@@ -427,9 +427,9 @@ discard block |
||
| 427 | 427 | */ |
| 428 | 428 | public function listGroupItems($groupId, $optParams = array()) |
| 429 | 429 | { |
| 430 | - $params = array('groupId' => $groupId); |
|
| 431 | - $params = array_merge($params, $optParams); |
|
| 432 | - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_GroupItemListResponse"); |
|
| 430 | + $params = array('groupId' => $groupId); |
|
| 431 | + $params = array_merge($params, $optParams); |
|
| 432 | + return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_GroupItemListResponse"); |
|
| 433 | 433 | } |
| 434 | 434 | } |
| 435 | 435 | |
@@ -466,9 +466,9 @@ discard block |
||
| 466 | 466 | */ |
| 467 | 467 | public function delete($id, $optParams = array()) |
| 468 | 468 | { |
| 469 | - $params = array('id' => $id); |
|
| 470 | - $params = array_merge($params, $optParams); |
|
| 471 | - return $this->call('delete', array($params)); |
|
| 469 | + $params = array('id' => $id); |
|
| 470 | + $params = array_merge($params, $optParams); |
|
| 471 | + return $this->call('delete', array($params)); |
|
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 474 | /** |
@@ -493,9 +493,9 @@ discard block |
||
| 493 | 493 | */ |
| 494 | 494 | public function insert(Google_Service_YouTubeAnalytics_Group $postBody, $optParams = array()) |
| 495 | 495 | { |
| 496 | - $params = array('postBody' => $postBody); |
|
| 497 | - $params = array_merge($params, $optParams); |
|
| 498 | - return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_Group"); |
|
| 496 | + $params = array('postBody' => $postBody); |
|
| 497 | + $params = array_merge($params, $optParams); |
|
| 498 | + return $this->call('insert', array($params), "Google_Service_YouTubeAnalytics_Group"); |
|
| 499 | 499 | } |
| 500 | 500 | |
| 501 | 501 | /** |
@@ -526,9 +526,9 @@ discard block |
||
| 526 | 526 | */ |
| 527 | 527 | public function listGroups($optParams = array()) |
| 528 | 528 | { |
| 529 | - $params = array(); |
|
| 530 | - $params = array_merge($params, $optParams); |
|
| 531 | - return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_GroupListResponse"); |
|
| 529 | + $params = array(); |
|
| 530 | + $params = array_merge($params, $optParams); |
|
| 531 | + return $this->call('list', array($params), "Google_Service_YouTubeAnalytics_GroupListResponse"); |
|
| 532 | 532 | } |
| 533 | 533 | |
| 534 | 534 | /** |
@@ -554,9 +554,9 @@ discard block |
||
| 554 | 554 | */ |
| 555 | 555 | public function update(Google_Service_YouTubeAnalytics_Group $postBody, $optParams = array()) |
| 556 | 556 | { |
| 557 | - $params = array('postBody' => $postBody); |
|
| 558 | - $params = array_merge($params, $optParams); |
|
| 559 | - return $this->call('update', array($params), "Google_Service_YouTubeAnalytics_Group"); |
|
| 557 | + $params = array('postBody' => $postBody); |
|
| 558 | + $params = array_merge($params, $optParams); |
|
| 559 | + return $this->call('update', array($params), "Google_Service_YouTubeAnalytics_Group"); |
|
| 560 | 560 | } |
| 561 | 561 | } |
| 562 | 562 | |
@@ -619,9 +619,9 @@ discard block |
||
| 619 | 619 | */ |
| 620 | 620 | public function query($ids, $startDate, $endDate, $metrics, $optParams = array()) |
| 621 | 621 | { |
| 622 | - $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 623 | - $params = array_merge($params, $optParams); |
|
| 624 | - return $this->call('query', array($params), "Google_Service_YouTubeAnalytics_ResultTable"); |
|
| 622 | + $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics); |
|
| 623 | + $params = array_merge($params, $optParams); |
|
| 624 | + return $this->call('query', array($params), "Google_Service_YouTubeAnalytics_ResultTable"); |
|
| 625 | 625 | } |
| 626 | 626 | } |
| 627 | 627 | |
@@ -645,51 +645,51 @@ discard block |
||
| 645 | 645 | |
| 646 | 646 | public function setId($id) |
| 647 | 647 | { |
| 648 | - $this->id = $id; |
|
| 648 | + $this->id = $id; |
|
| 649 | 649 | } |
| 650 | 650 | public function getId() |
| 651 | 651 | { |
| 652 | - return $this->id; |
|
| 652 | + return $this->id; |
|
| 653 | 653 | } |
| 654 | 654 | public function setKind($kind) |
| 655 | 655 | { |
| 656 | - $this->kind = $kind; |
|
| 656 | + $this->kind = $kind; |
|
| 657 | 657 | } |
| 658 | 658 | public function getKind() |
| 659 | 659 | { |
| 660 | - return $this->kind; |
|
| 660 | + return $this->kind; |
|
| 661 | 661 | } |
| 662 | 662 | public function setOutputs($outputs) |
| 663 | 663 | { |
| 664 | - $this->outputs = $outputs; |
|
| 664 | + $this->outputs = $outputs; |
|
| 665 | 665 | } |
| 666 | 666 | public function getOutputs() |
| 667 | 667 | { |
| 668 | - return $this->outputs; |
|
| 668 | + return $this->outputs; |
|
| 669 | 669 | } |
| 670 | 670 | public function setReportId($reportId) |
| 671 | 671 | { |
| 672 | - $this->reportId = $reportId; |
|
| 672 | + $this->reportId = $reportId; |
|
| 673 | 673 | } |
| 674 | 674 | public function getReportId() |
| 675 | 675 | { |
| 676 | - return $this->reportId; |
|
| 676 | + return $this->reportId; |
|
| 677 | 677 | } |
| 678 | 678 | public function setTimeSpan(Google_Service_YouTubeAnalytics_BatchReportTimeSpan $timeSpan) |
| 679 | 679 | { |
| 680 | - $this->timeSpan = $timeSpan; |
|
| 680 | + $this->timeSpan = $timeSpan; |
|
| 681 | 681 | } |
| 682 | 682 | public function getTimeSpan() |
| 683 | 683 | { |
| 684 | - return $this->timeSpan; |
|
| 684 | + return $this->timeSpan; |
|
| 685 | 685 | } |
| 686 | 686 | public function setTimeUpdated($timeUpdated) |
| 687 | 687 | { |
| 688 | - $this->timeUpdated = $timeUpdated; |
|
| 688 | + $this->timeUpdated = $timeUpdated; |
|
| 689 | 689 | } |
| 690 | 690 | public function getTimeUpdated() |
| 691 | 691 | { |
| 692 | - return $this->timeUpdated; |
|
| 692 | + return $this->timeUpdated; |
|
| 693 | 693 | } |
| 694 | 694 | } |
| 695 | 695 | |
@@ -706,43 +706,43 @@ discard block |
||
| 706 | 706 | |
| 707 | 707 | public function setId($id) |
| 708 | 708 | { |
| 709 | - $this->id = $id; |
|
| 709 | + $this->id = $id; |
|
| 710 | 710 | } |
| 711 | 711 | public function getId() |
| 712 | 712 | { |
| 713 | - return $this->id; |
|
| 713 | + return $this->id; |
|
| 714 | 714 | } |
| 715 | 715 | public function setKind($kind) |
| 716 | 716 | { |
| 717 | - $this->kind = $kind; |
|
| 717 | + $this->kind = $kind; |
|
| 718 | 718 | } |
| 719 | 719 | public function getKind() |
| 720 | 720 | { |
| 721 | - return $this->kind; |
|
| 721 | + return $this->kind; |
|
| 722 | 722 | } |
| 723 | 723 | public function setName($name) |
| 724 | 724 | { |
| 725 | - $this->name = $name; |
|
| 725 | + $this->name = $name; |
|
| 726 | 726 | } |
| 727 | 727 | public function getName() |
| 728 | 728 | { |
| 729 | - return $this->name; |
|
| 729 | + return $this->name; |
|
| 730 | 730 | } |
| 731 | 731 | public function setStatus($status) |
| 732 | 732 | { |
| 733 | - $this->status = $status; |
|
| 733 | + $this->status = $status; |
|
| 734 | 734 | } |
| 735 | 735 | public function getStatus() |
| 736 | 736 | { |
| 737 | - return $this->status; |
|
| 737 | + return $this->status; |
|
| 738 | 738 | } |
| 739 | 739 | public function setType($type) |
| 740 | 740 | { |
| 741 | - $this->type = $type; |
|
| 741 | + $this->type = $type; |
|
| 742 | 742 | } |
| 743 | 743 | public function getType() |
| 744 | 744 | { |
| 745 | - return $this->type; |
|
| 745 | + return $this->type; |
|
| 746 | 746 | } |
| 747 | 747 | } |
| 748 | 748 | |
@@ -758,19 +758,19 @@ discard block |
||
| 758 | 758 | |
| 759 | 759 | public function setItems($items) |
| 760 | 760 | { |
| 761 | - $this->items = $items; |
|
| 761 | + $this->items = $items; |
|
| 762 | 762 | } |
| 763 | 763 | public function getItems() |
| 764 | 764 | { |
| 765 | - return $this->items; |
|
| 765 | + return $this->items; |
|
| 766 | 766 | } |
| 767 | 767 | public function setKind($kind) |
| 768 | 768 | { |
| 769 | - $this->kind = $kind; |
|
| 769 | + $this->kind = $kind; |
|
| 770 | 770 | } |
| 771 | 771 | public function getKind() |
| 772 | 772 | { |
| 773 | - return $this->kind; |
|
| 773 | + return $this->kind; |
|
| 774 | 774 | } |
| 775 | 775 | } |
| 776 | 776 | |
@@ -786,19 +786,19 @@ discard block |
||
| 786 | 786 | |
| 787 | 787 | public function setItems($items) |
| 788 | 788 | { |
| 789 | - $this->items = $items; |
|
| 789 | + $this->items = $items; |
|
| 790 | 790 | } |
| 791 | 791 | public function getItems() |
| 792 | 792 | { |
| 793 | - return $this->items; |
|
| 793 | + return $this->items; |
|
| 794 | 794 | } |
| 795 | 795 | public function setKind($kind) |
| 796 | 796 | { |
| 797 | - $this->kind = $kind; |
|
| 797 | + $this->kind = $kind; |
|
| 798 | 798 | } |
| 799 | 799 | public function getKind() |
| 800 | 800 | { |
| 801 | - return $this->kind; |
|
| 801 | + return $this->kind; |
|
| 802 | 802 | } |
| 803 | 803 | } |
| 804 | 804 | |
@@ -813,27 +813,27 @@ discard block |
||
| 813 | 813 | |
| 814 | 814 | public function setDownloadUrl($downloadUrl) |
| 815 | 815 | { |
| 816 | - $this->downloadUrl = $downloadUrl; |
|
| 816 | + $this->downloadUrl = $downloadUrl; |
|
| 817 | 817 | } |
| 818 | 818 | public function getDownloadUrl() |
| 819 | 819 | { |
| 820 | - return $this->downloadUrl; |
|
| 820 | + return $this->downloadUrl; |
|
| 821 | 821 | } |
| 822 | 822 | public function setFormat($format) |
| 823 | 823 | { |
| 824 | - $this->format = $format; |
|
| 824 | + $this->format = $format; |
|
| 825 | 825 | } |
| 826 | 826 | public function getFormat() |
| 827 | 827 | { |
| 828 | - return $this->format; |
|
| 828 | + return $this->format; |
|
| 829 | 829 | } |
| 830 | 830 | public function setType($type) |
| 831 | 831 | { |
| 832 | - $this->type = $type; |
|
| 832 | + $this->type = $type; |
|
| 833 | 833 | } |
| 834 | 834 | public function getType() |
| 835 | 835 | { |
| 836 | - return $this->type; |
|
| 836 | + return $this->type; |
|
| 837 | 837 | } |
| 838 | 838 | } |
| 839 | 839 | |
@@ -847,19 +847,19 @@ discard block |
||
| 847 | 847 | |
| 848 | 848 | public function setEndTime($endTime) |
| 849 | 849 | { |
| 850 | - $this->endTime = $endTime; |
|
| 850 | + $this->endTime = $endTime; |
|
| 851 | 851 | } |
| 852 | 852 | public function getEndTime() |
| 853 | 853 | { |
| 854 | - return $this->endTime; |
|
| 854 | + return $this->endTime; |
|
| 855 | 855 | } |
| 856 | 856 | public function setStartTime($startTime) |
| 857 | 857 | { |
| 858 | - $this->startTime = $startTime; |
|
| 858 | + $this->startTime = $startTime; |
|
| 859 | 859 | } |
| 860 | 860 | public function getStartTime() |
| 861 | 861 | { |
| 862 | - return $this->startTime; |
|
| 862 | + return $this->startTime; |
|
| 863 | 863 | } |
| 864 | 864 | } |
| 865 | 865 | |
@@ -878,43 +878,43 @@ discard block |
||
| 878 | 878 | |
| 879 | 879 | public function setContentDetails(Google_Service_YouTubeAnalytics_GroupContentDetails $contentDetails) |
| 880 | 880 | { |
| 881 | - $this->contentDetails = $contentDetails; |
|
| 881 | + $this->contentDetails = $contentDetails; |
|
| 882 | 882 | } |
| 883 | 883 | public function getContentDetails() |
| 884 | 884 | { |
| 885 | - return $this->contentDetails; |
|
| 885 | + return $this->contentDetails; |
|
| 886 | 886 | } |
| 887 | 887 | public function setEtag($etag) |
| 888 | 888 | { |
| 889 | - $this->etag = $etag; |
|
| 889 | + $this->etag = $etag; |
|
| 890 | 890 | } |
| 891 | 891 | public function getEtag() |
| 892 | 892 | { |
| 893 | - return $this->etag; |
|
| 893 | + return $this->etag; |
|
| 894 | 894 | } |
| 895 | 895 | public function setId($id) |
| 896 | 896 | { |
| 897 | - $this->id = $id; |
|
| 897 | + $this->id = $id; |
|
| 898 | 898 | } |
| 899 | 899 | public function getId() |
| 900 | 900 | { |
| 901 | - return $this->id; |
|
| 901 | + return $this->id; |
|
| 902 | 902 | } |
| 903 | 903 | public function setKind($kind) |
| 904 | 904 | { |
| 905 | - $this->kind = $kind; |
|
| 905 | + $this->kind = $kind; |
|
| 906 | 906 | } |
| 907 | 907 | public function getKind() |
| 908 | 908 | { |
| 909 | - return $this->kind; |
|
| 909 | + return $this->kind; |
|
| 910 | 910 | } |
| 911 | 911 | public function setSnippet(Google_Service_YouTubeAnalytics_GroupSnippet $snippet) |
| 912 | 912 | { |
| 913 | - $this->snippet = $snippet; |
|
| 913 | + $this->snippet = $snippet; |
|
| 914 | 914 | } |
| 915 | 915 | public function getSnippet() |
| 916 | 916 | { |
| 917 | - return $this->snippet; |
|
| 917 | + return $this->snippet; |
|
| 918 | 918 | } |
| 919 | 919 | } |
| 920 | 920 | |
@@ -928,19 +928,19 @@ discard block |
||
| 928 | 928 | |
| 929 | 929 | public function setItemCount($itemCount) |
| 930 | 930 | { |
| 931 | - $this->itemCount = $itemCount; |
|
| 931 | + $this->itemCount = $itemCount; |
|
| 932 | 932 | } |
| 933 | 933 | public function getItemCount() |
| 934 | 934 | { |
| 935 | - return $this->itemCount; |
|
| 935 | + return $this->itemCount; |
|
| 936 | 936 | } |
| 937 | 937 | public function setItemType($itemType) |
| 938 | 938 | { |
| 939 | - $this->itemType = $itemType; |
|
| 939 | + $this->itemType = $itemType; |
|
| 940 | 940 | } |
| 941 | 941 | public function getItemType() |
| 942 | 942 | { |
| 943 | - return $this->itemType; |
|
| 943 | + return $this->itemType; |
|
| 944 | 944 | } |
| 945 | 945 | } |
| 946 | 946 | |
@@ -958,43 +958,43 @@ discard block |
||
| 958 | 958 | |
| 959 | 959 | public function setEtag($etag) |
| 960 | 960 | { |
| 961 | - $this->etag = $etag; |
|
| 961 | + $this->etag = $etag; |
|
| 962 | 962 | } |
| 963 | 963 | public function getEtag() |
| 964 | 964 | { |
| 965 | - return $this->etag; |
|
| 965 | + return $this->etag; |
|
| 966 | 966 | } |
| 967 | 967 | public function setGroupId($groupId) |
| 968 | 968 | { |
| 969 | - $this->groupId = $groupId; |
|
| 969 | + $this->groupId = $groupId; |
|
| 970 | 970 | } |
| 971 | 971 | public function getGroupId() |
| 972 | 972 | { |
| 973 | - return $this->groupId; |
|
| 973 | + return $this->groupId; |
|
| 974 | 974 | } |
| 975 | 975 | public function setId($id) |
| 976 | 976 | { |
| 977 | - $this->id = $id; |
|
| 977 | + $this->id = $id; |
|
| 978 | 978 | } |
| 979 | 979 | public function getId() |
| 980 | 980 | { |
| 981 | - return $this->id; |
|
| 981 | + return $this->id; |
|
| 982 | 982 | } |
| 983 | 983 | public function setKind($kind) |
| 984 | 984 | { |
| 985 | - $this->kind = $kind; |
|
| 985 | + $this->kind = $kind; |
|
| 986 | 986 | } |
| 987 | 987 | public function getKind() |
| 988 | 988 | { |
| 989 | - return $this->kind; |
|
| 989 | + return $this->kind; |
|
| 990 | 990 | } |
| 991 | 991 | public function setResource(Google_Service_YouTubeAnalytics_GroupItemResource $resource) |
| 992 | 992 | { |
| 993 | - $this->resource = $resource; |
|
| 993 | + $this->resource = $resource; |
|
| 994 | 994 | } |
| 995 | 995 | public function getResource() |
| 996 | 996 | { |
| 997 | - return $this->resource; |
|
| 997 | + return $this->resource; |
|
| 998 | 998 | } |
| 999 | 999 | } |
| 1000 | 1000 | |
@@ -1011,27 +1011,27 @@ discard block |
||
| 1011 | 1011 | |
| 1012 | 1012 | public function setEtag($etag) |
| 1013 | 1013 | { |
| 1014 | - $this->etag = $etag; |
|
| 1014 | + $this->etag = $etag; |
|
| 1015 | 1015 | } |
| 1016 | 1016 | public function getEtag() |
| 1017 | 1017 | { |
| 1018 | - return $this->etag; |
|
| 1018 | + return $this->etag; |
|
| 1019 | 1019 | } |
| 1020 | 1020 | public function setItems($items) |
| 1021 | 1021 | { |
| 1022 | - $this->items = $items; |
|
| 1022 | + $this->items = $items; |
|
| 1023 | 1023 | } |
| 1024 | 1024 | public function getItems() |
| 1025 | 1025 | { |
| 1026 | - return $this->items; |
|
| 1026 | + return $this->items; |
|
| 1027 | 1027 | } |
| 1028 | 1028 | public function setKind($kind) |
| 1029 | 1029 | { |
| 1030 | - $this->kind = $kind; |
|
| 1030 | + $this->kind = $kind; |
|
| 1031 | 1031 | } |
| 1032 | 1032 | public function getKind() |
| 1033 | 1033 | { |
| 1034 | - return $this->kind; |
|
| 1034 | + return $this->kind; |
|
| 1035 | 1035 | } |
| 1036 | 1036 | } |
| 1037 | 1037 | |
@@ -1045,19 +1045,19 @@ discard block |
||
| 1045 | 1045 | |
| 1046 | 1046 | public function setId($id) |
| 1047 | 1047 | { |
| 1048 | - $this->id = $id; |
|
| 1048 | + $this->id = $id; |
|
| 1049 | 1049 | } |
| 1050 | 1050 | public function getId() |
| 1051 | 1051 | { |
| 1052 | - return $this->id; |
|
| 1052 | + return $this->id; |
|
| 1053 | 1053 | } |
| 1054 | 1054 | public function setKind($kind) |
| 1055 | 1055 | { |
| 1056 | - $this->kind = $kind; |
|
| 1056 | + $this->kind = $kind; |
|
| 1057 | 1057 | } |
| 1058 | 1058 | public function getKind() |
| 1059 | 1059 | { |
| 1060 | - return $this->kind; |
|
| 1060 | + return $this->kind; |
|
| 1061 | 1061 | } |
| 1062 | 1062 | } |
| 1063 | 1063 | |
@@ -1074,27 +1074,27 @@ discard block |
||
| 1074 | 1074 | |
| 1075 | 1075 | public function setEtag($etag) |
| 1076 | 1076 | { |
| 1077 | - $this->etag = $etag; |
|
| 1077 | + $this->etag = $etag; |
|
| 1078 | 1078 | } |
| 1079 | 1079 | public function getEtag() |
| 1080 | 1080 | { |
| 1081 | - return $this->etag; |
|
| 1081 | + return $this->etag; |
|
| 1082 | 1082 | } |
| 1083 | 1083 | public function setItems($items) |
| 1084 | 1084 | { |
| 1085 | - $this->items = $items; |
|
| 1085 | + $this->items = $items; |
|
| 1086 | 1086 | } |
| 1087 | 1087 | public function getItems() |
| 1088 | 1088 | { |
| 1089 | - return $this->items; |
|
| 1089 | + return $this->items; |
|
| 1090 | 1090 | } |
| 1091 | 1091 | public function setKind($kind) |
| 1092 | 1092 | { |
| 1093 | - $this->kind = $kind; |
|
| 1093 | + $this->kind = $kind; |
|
| 1094 | 1094 | } |
| 1095 | 1095 | public function getKind() |
| 1096 | 1096 | { |
| 1097 | - return $this->kind; |
|
| 1097 | + return $this->kind; |
|
| 1098 | 1098 | } |
| 1099 | 1099 | } |
| 1100 | 1100 | |
@@ -1108,19 +1108,19 @@ discard block |
||
| 1108 | 1108 | |
| 1109 | 1109 | public function setPublishedAt($publishedAt) |
| 1110 | 1110 | { |
| 1111 | - $this->publishedAt = $publishedAt; |
|
| 1111 | + $this->publishedAt = $publishedAt; |
|
| 1112 | 1112 | } |
| 1113 | 1113 | public function getPublishedAt() |
| 1114 | 1114 | { |
| 1115 | - return $this->publishedAt; |
|
| 1115 | + return $this->publishedAt; |
|
| 1116 | 1116 | } |
| 1117 | 1117 | public function setTitle($title) |
| 1118 | 1118 | { |
| 1119 | - $this->title = $title; |
|
| 1119 | + $this->title = $title; |
|
| 1120 | 1120 | } |
| 1121 | 1121 | public function getTitle() |
| 1122 | 1122 | { |
| 1123 | - return $this->title; |
|
| 1123 | + return $this->title; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | } |
| 1126 | 1126 | |
@@ -1137,27 +1137,27 @@ discard block |
||
| 1137 | 1137 | |
| 1138 | 1138 | public function setColumnHeaders($columnHeaders) |
| 1139 | 1139 | { |
| 1140 | - $this->columnHeaders = $columnHeaders; |
|
| 1140 | + $this->columnHeaders = $columnHeaders; |
|
| 1141 | 1141 | } |
| 1142 | 1142 | public function getColumnHeaders() |
| 1143 | 1143 | { |
| 1144 | - return $this->columnHeaders; |
|
| 1144 | + return $this->columnHeaders; |
|
| 1145 | 1145 | } |
| 1146 | 1146 | public function setKind($kind) |
| 1147 | 1147 | { |
| 1148 | - $this->kind = $kind; |
|
| 1148 | + $this->kind = $kind; |
|
| 1149 | 1149 | } |
| 1150 | 1150 | public function getKind() |
| 1151 | 1151 | { |
| 1152 | - return $this->kind; |
|
| 1152 | + return $this->kind; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | public function setRows($rows) |
| 1155 | 1155 | { |
| 1156 | - $this->rows = $rows; |
|
| 1156 | + $this->rows = $rows; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | public function getRows() |
| 1159 | 1159 | { |
| 1160 | - return $this->rows; |
|
| 1160 | + return $this->rows; |
|
| 1161 | 1161 | } |
| 1162 | 1162 | } |
| 1163 | 1163 | |
@@ -1172,26 +1172,26 @@ discard block |
||
| 1172 | 1172 | |
| 1173 | 1173 | public function setColumnType($columnType) |
| 1174 | 1174 | { |
| 1175 | - $this->columnType = $columnType; |
|
| 1175 | + $this->columnType = $columnType; |
|
| 1176 | 1176 | } |
| 1177 | 1177 | public function getColumnType() |
| 1178 | 1178 | { |
| 1179 | - return $this->columnType; |
|
| 1179 | + return $this->columnType; |
|
| 1180 | 1180 | } |
| 1181 | 1181 | public function setDataType($dataType) |
| 1182 | 1182 | { |
| 1183 | - $this->dataType = $dataType; |
|
| 1183 | + $this->dataType = $dataType; |
|
| 1184 | 1184 | } |
| 1185 | 1185 | public function getDataType() |
| 1186 | 1186 | { |
| 1187 | - return $this->dataType; |
|
| 1187 | + return $this->dataType; |
|
| 1188 | 1188 | } |
| 1189 | 1189 | public function setName($name) |
| 1190 | 1190 | { |
| 1191 | - $this->name = $name; |
|
| 1191 | + $this->name = $name; |
|
| 1192 | 1192 | } |
| 1193 | 1193 | public function getName() |
| 1194 | 1194 | { |
| 1195 | - return $this->name; |
|
| 1195 | + return $this->name; |
|
| 1196 | 1196 | } |
| 1197 | 1197 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | 'type' => 'string', |
| 132 | 132 | ), |
| 133 | 133 | ), |
| 134 | - ),'insert' => array( |
|
| 134 | + ), 'insert' => array( |
|
| 135 | 135 | 'path' => 'groupItems', |
| 136 | 136 | 'httpMethod' => 'POST', |
| 137 | 137 | 'parameters' => array( |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | 'type' => 'string', |
| 141 | 141 | ), |
| 142 | 142 | ), |
| 143 | - ),'list' => array( |
|
| 143 | + ), 'list' => array( |
|
| 144 | 144 | 'path' => 'groupItems', |
| 145 | 145 | 'httpMethod' => 'GET', |
| 146 | 146 | 'parameters' => array( |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | 'type' => 'string', |
| 179 | 179 | ), |
| 180 | 180 | ), |
| 181 | - ),'insert' => array( |
|
| 181 | + ), 'insert' => array( |
|
| 182 | 182 | 'path' => 'groups', |
| 183 | 183 | 'httpMethod' => 'POST', |
| 184 | 184 | 'parameters' => array( |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | 'type' => 'string', |
| 188 | 188 | ), |
| 189 | 189 | ), |
| 190 | - ),'list' => array( |
|
| 190 | + ), 'list' => array( |
|
| 191 | 191 | 'path' => 'groups', |
| 192 | 192 | 'httpMethod' => 'GET', |
| 193 | 193 | 'parameters' => array( |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | 'type' => 'boolean', |
| 205 | 205 | ), |
| 206 | 206 | ), |
| 207 | - ),'update' => array( |
|
| 207 | + ), 'update' => array( |
|
| 208 | 208 | 'path' => 'groups', |
| 209 | 209 | 'httpMethod' => 'PUT', |
| 210 | 210 | 'parameters' => array( |