Test Failed
Pull Request — master (#437)
by Kiran
22:03
created
google-api-php-client/src/Google/Service/SiteVerification.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
    * Get a verification token for placing on a website or domain.
168 168
    * (webResource.getToken)
169 169
    *
170
-   * @param Google_SiteVerificationWebResourceGettokenRequest $postBody
170
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody
171 171
    * @param array $optParams Optional parameters.
172 172
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse
173 173
    */
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
    *
184 184
    * @param string $verificationMethod The method to use for verifying a site or
185 185
    * domain.
186
-   * @param Google_SiteVerificationWebResourceResource $postBody
186
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
187 187
    * @param array $optParams Optional parameters.
188 188
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
189 189
    */
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
    * patch semantics. (webResource.patch)
214 214
    *
215 215
    * @param string $id The id of a verified site or domain.
216
-   * @param Google_SiteVerificationWebResourceResource $postBody
216
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
217 217
    * @param array $optParams Optional parameters.
218 218
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
219 219
    */
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
    * Modify the list of owners for your website or domain. (webResource.update)
229 229
    *
230 230
    * @param string $id The id of a verified site or domain.
231
-   * @param Google_SiteVerificationWebResourceResource $postBody
231
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
232 232
    * @param array $optParams Optional parameters.
233 233
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
234 234
    */
Please login to merge, or discard this patch.
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Spectrum.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
    * Requests from a fixed-mode device must include owner information so the
103 103
    * device can be registered with the database. (paws.getSpectrum)
104 104
    *
105
-   * @param Google_PawsGetSpectrumRequest $postBody
105
+   * @param Google_Service_Spectrum_PawsGetSpectrumRequest $postBody
106 106
    * @param array $optParams Optional parameters.
107 107
    * @return Google_Service_Spectrum_PawsGetSpectrumResponse
108 108
    */
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
    * The Google Spectrum Database does not support batch requests, so this method
118 118
    * always yields an UNIMPLEMENTED error. (paws.getSpectrumBatch)
119 119
    *
120
-   * @param Google_PawsGetSpectrumBatchRequest $postBody
120
+   * @param Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody
121 121
    * @param array $optParams Optional parameters.
122 122
    * @return Google_Service_Spectrum_PawsGetSpectrumBatchResponse
123 123
    */
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
    * Initializes the connection between a white space device and the database.
133 133
    * (paws.init)
134 134
    *
135
-   * @param Google_PawsInitRequest $postBody
135
+   * @param Google_Service_Spectrum_PawsInitRequest $postBody
136 136
    * @param array $optParams Optional parameters.
137 137
    * @return Google_Service_Spectrum_PawsInitResponse
138 138
    */
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
    * notification, so this always yields an UNIMPLEMENTED error.
151 151
    * (paws.notifySpectrumUse)
152 152
    *
153
-   * @param Google_PawsNotifySpectrumUseRequest $postBody
153
+   * @param Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody
154 154
    * @param array $optParams Optional parameters.
155 155
    * @return Google_Service_Spectrum_PawsNotifySpectrumUseResponse
156 156
    */
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
    * The Google Spectrum Database implements registration in the getSpectrum
166 166
    * method. As such this always returns an UNIMPLEMENTED error. (paws.register)
167 167
    *
168
-   * @param Google_PawsRegisterRequest $postBody
168
+   * @param Google_Service_Spectrum_PawsRegisterRequest $postBody
169 169
    * @param array $optParams Optional parameters.
170 170
    * @return Google_Service_Spectrum_PawsRegisterResponse
171 171
    */
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
    * The Google Spectrum Database does not support master/slave configurations, so
182 182
    * this always yields an UNIMPLEMENTED error. (paws.verifyDevice)
183 183
    *
184
-   * @param Google_PawsVerifyDeviceRequest $postBody
184
+   * @param Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody
185 185
    * @param array $optParams Optional parameters.
186 186
    * @return Google_Service_Spectrum_PawsVerifyDeviceResponse
187 187
    */
Please login to merge, or discard this patch.
Indentation   +330 added lines, -330 removed lines patch added patch discarded remove patch
@@ -42,46 +42,46 @@  discard block
 block discarded – undo
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 = 'spectrum/v1explorer/paws/';
48
-    $this->version = 'v1explorer';
49
-    $this->serviceName = 'spectrum';
50
-
51
-    $this->paws = new Google_Service_Spectrum_Paws_Resource(
52
-        $this,
53
-        $this->serviceName,
54
-        'paws',
55
-        array(
56
-          'methods' => array(
57
-            'getSpectrum' => array(
58
-              'path' => 'getSpectrum',
59
-              'httpMethod' => 'POST',
60
-              'parameters' => array(),
61
-            ),'getSpectrumBatch' => array(
62
-              'path' => 'getSpectrumBatch',
63
-              'httpMethod' => 'POST',
64
-              'parameters' => array(),
65
-            ),'init' => array(
66
-              'path' => 'init',
67
-              'httpMethod' => 'POST',
68
-              'parameters' => array(),
69
-            ),'notifySpectrumUse' => array(
70
-              'path' => 'notifySpectrumUse',
71
-              'httpMethod' => 'POST',
72
-              'parameters' => array(),
73
-            ),'register' => array(
74
-              'path' => 'register',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(),
77
-            ),'verifyDevice' => array(
78
-              'path' => 'verifyDevice',
79
-              'httpMethod' => 'POST',
80
-              'parameters' => array(),
81
-            ),
82
-          )
83
-        )
84
-    );
45
+	parent::__construct($client);
46
+	$this->rootUrl = 'https://www.googleapis.com/';
47
+	$this->servicePath = 'spectrum/v1explorer/paws/';
48
+	$this->version = 'v1explorer';
49
+	$this->serviceName = 'spectrum';
50
+
51
+	$this->paws = new Google_Service_Spectrum_Paws_Resource(
52
+		$this,
53
+		$this->serviceName,
54
+		'paws',
55
+		array(
56
+		  'methods' => array(
57
+			'getSpectrum' => array(
58
+			  'path' => 'getSpectrum',
59
+			  'httpMethod' => 'POST',
60
+			  'parameters' => array(),
61
+			),'getSpectrumBatch' => array(
62
+			  'path' => 'getSpectrumBatch',
63
+			  'httpMethod' => 'POST',
64
+			  'parameters' => array(),
65
+			),'init' => array(
66
+			  'path' => 'init',
67
+			  'httpMethod' => 'POST',
68
+			  'parameters' => array(),
69
+			),'notifySpectrumUse' => array(
70
+			  'path' => 'notifySpectrumUse',
71
+			  'httpMethod' => 'POST',
72
+			  'parameters' => array(),
73
+			),'register' => array(
74
+			  'path' => 'register',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(),
77
+			),'verifyDevice' => array(
78
+			  'path' => 'verifyDevice',
79
+			  'httpMethod' => 'POST',
80
+			  'parameters' => array(),
81
+			),
82
+		  )
83
+		)
84
+	);
85 85
   }
86 86
 }
87 87
 
@@ -108,9 +108,9 @@  discard block
 block discarded – undo
108 108
    */
109 109
   public function getSpectrum(Google_Service_Spectrum_PawsGetSpectrumRequest $postBody, $optParams = array())
110 110
   {
111
-    $params = array('postBody' => $postBody);
112
-    $params = array_merge($params, $optParams);
113
-    return $this->call('getSpectrum', array($params), "Google_Service_Spectrum_PawsGetSpectrumResponse");
111
+	$params = array('postBody' => $postBody);
112
+	$params = array_merge($params, $optParams);
113
+	return $this->call('getSpectrum', array($params), "Google_Service_Spectrum_PawsGetSpectrumResponse");
114 114
   }
115 115
 
116 116
   /**
@@ -123,9 +123,9 @@  discard block
 block discarded – undo
123 123
    */
124 124
   public function getSpectrumBatch(Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody, $optParams = array())
125 125
   {
126
-    $params = array('postBody' => $postBody);
127
-    $params = array_merge($params, $optParams);
128
-    return $this->call('getSpectrumBatch', array($params), "Google_Service_Spectrum_PawsGetSpectrumBatchResponse");
126
+	$params = array('postBody' => $postBody);
127
+	$params = array_merge($params, $optParams);
128
+	return $this->call('getSpectrumBatch', array($params), "Google_Service_Spectrum_PawsGetSpectrumBatchResponse");
129 129
   }
130 130
 
131 131
   /**
@@ -138,9 +138,9 @@  discard block
 block discarded – undo
138 138
    */
139 139
   public function init(Google_Service_Spectrum_PawsInitRequest $postBody, $optParams = array())
140 140
   {
141
-    $params = array('postBody' => $postBody);
142
-    $params = array_merge($params, $optParams);
143
-    return $this->call('init', array($params), "Google_Service_Spectrum_PawsInitResponse");
141
+	$params = array('postBody' => $postBody);
142
+	$params = array_merge($params, $optParams);
143
+	return $this->call('init', array($params), "Google_Service_Spectrum_PawsInitResponse");
144 144
   }
145 145
 
146 146
   /**
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
    */
157 157
   public function notifySpectrumUse(Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody, $optParams = array())
158 158
   {
159
-    $params = array('postBody' => $postBody);
160
-    $params = array_merge($params, $optParams);
161
-    return $this->call('notifySpectrumUse', array($params), "Google_Service_Spectrum_PawsNotifySpectrumUseResponse");
159
+	$params = array('postBody' => $postBody);
160
+	$params = array_merge($params, $optParams);
161
+	return $this->call('notifySpectrumUse', array($params), "Google_Service_Spectrum_PawsNotifySpectrumUseResponse");
162 162
   }
163 163
 
164 164
   /**
@@ -171,9 +171,9 @@  discard block
 block discarded – undo
171 171
    */
172 172
   public function register(Google_Service_Spectrum_PawsRegisterRequest $postBody, $optParams = array())
173 173
   {
174
-    $params = array('postBody' => $postBody);
175
-    $params = array_merge($params, $optParams);
176
-    return $this->call('register', array($params), "Google_Service_Spectrum_PawsRegisterResponse");
174
+	$params = array('postBody' => $postBody);
175
+	$params = array_merge($params, $optParams);
176
+	return $this->call('register', array($params), "Google_Service_Spectrum_PawsRegisterResponse");
177 177
   }
178 178
 
179 179
   /**
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
    */
188 188
   public function verifyDevice(Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody, $optParams = array())
189 189
   {
190
-    $params = array('postBody' => $postBody);
191
-    $params = array_merge($params, $optParams);
192
-    return $this->call('verifyDevice', array($params), "Google_Service_Spectrum_PawsVerifyDeviceResponse");
190
+	$params = array('postBody' => $postBody);
191
+	$params = array_merge($params, $optParams);
192
+	return $this->call('verifyDevice', array($params), "Google_Service_Spectrum_PawsVerifyDeviceResponse");
193 193
   }
194 194
 }
195 195
 
@@ -207,27 +207,27 @@  discard block
 block discarded – undo
207 207
 
208 208
   public function setHeight($height)
209 209
   {
210
-    $this->height = $height;
210
+	$this->height = $height;
211 211
   }
212 212
   public function getHeight()
213 213
   {
214
-    return $this->height;
214
+	return $this->height;
215 215
   }
216 216
   public function setHeightType($heightType)
217 217
   {
218
-    $this->heightType = $heightType;
218
+	$this->heightType = $heightType;
219 219
   }
220 220
   public function getHeightType()
221 221
   {
222
-    return $this->heightType;
222
+	return $this->heightType;
223 223
   }
224 224
   public function setHeightUncertainty($heightUncertainty)
225 225
   {
226
-    $this->heightUncertainty = $heightUncertainty;
226
+	$this->heightUncertainty = $heightUncertainty;
227 227
   }
228 228
   public function getHeightUncertainty()
229 229
   {
230
-    return $this->heightUncertainty;
230
+	return $this->heightUncertainty;
231 231
   }
232 232
 }
233 233
 
@@ -241,19 +241,19 @@  discard block
 block discarded – undo
241 241
 
242 242
   public function setName($name)
243 243
   {
244
-    $this->name = $name;
244
+	$this->name = $name;
245 245
   }
246 246
   public function getName()
247 247
   {
248
-    return $this->name;
248
+	return $this->name;
249 249
   }
250 250
   public function setUri($uri)
251 251
   {
252
-    $this->uri = $uri;
252
+	$this->uri = $uri;
253 253
   }
254 254
   public function getUri()
255 255
   {
256
-    return $this->uri;
256
+	return $this->uri;
257 257
   }
258 258
 }
259 259
 
@@ -268,11 +268,11 @@  discard block
 block discarded – undo
268 268
 
269 269
   public function setDatabases($databases)
270 270
   {
271
-    $this->databases = $databases;
271
+	$this->databases = $databases;
272 272
   }
273 273
   public function getDatabases()
274 274
   {
275
-    return $this->databases;
275
+	return $this->databases;
276 276
   }
277 277
 }
278 278
 
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
 
288 288
   public function setFrequencyRanges($frequencyRanges)
289 289
   {
290
-    $this->frequencyRanges = $frequencyRanges;
290
+	$this->frequencyRanges = $frequencyRanges;
291 291
   }
292 292
   public function getFrequencyRanges()
293 293
   {
294
-    return $this->frequencyRanges;
294
+	return $this->frequencyRanges;
295 295
   }
296 296
 }
297 297
 
@@ -314,83 +314,83 @@  discard block
 block discarded – undo
314 314
 
315 315
   public function setEtsiEnDeviceCategory($etsiEnDeviceCategory)
316 316
   {
317
-    $this->etsiEnDeviceCategory = $etsiEnDeviceCategory;
317
+	$this->etsiEnDeviceCategory = $etsiEnDeviceCategory;
318 318
   }
319 319
   public function getEtsiEnDeviceCategory()
320 320
   {
321
-    return $this->etsiEnDeviceCategory;
321
+	return $this->etsiEnDeviceCategory;
322 322
   }
323 323
   public function setEtsiEnDeviceEmissionsClass($etsiEnDeviceEmissionsClass)
324 324
   {
325
-    $this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass;
325
+	$this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass;
326 326
   }
327 327
   public function getEtsiEnDeviceEmissionsClass()
328 328
   {
329
-    return $this->etsiEnDeviceEmissionsClass;
329
+	return $this->etsiEnDeviceEmissionsClass;
330 330
   }
331 331
   public function setEtsiEnDeviceType($etsiEnDeviceType)
332 332
   {
333
-    $this->etsiEnDeviceType = $etsiEnDeviceType;
333
+	$this->etsiEnDeviceType = $etsiEnDeviceType;
334 334
   }
335 335
   public function getEtsiEnDeviceType()
336 336
   {
337
-    return $this->etsiEnDeviceType;
337
+	return $this->etsiEnDeviceType;
338 338
   }
339 339
   public function setEtsiEnTechnologyId($etsiEnTechnologyId)
340 340
   {
341
-    $this->etsiEnTechnologyId = $etsiEnTechnologyId;
341
+	$this->etsiEnTechnologyId = $etsiEnTechnologyId;
342 342
   }
343 343
   public function getEtsiEnTechnologyId()
344 344
   {
345
-    return $this->etsiEnTechnologyId;
345
+	return $this->etsiEnTechnologyId;
346 346
   }
347 347
   public function setFccId($fccId)
348 348
   {
349
-    $this->fccId = $fccId;
349
+	$this->fccId = $fccId;
350 350
   }
351 351
   public function getFccId()
352 352
   {
353
-    return $this->fccId;
353
+	return $this->fccId;
354 354
   }
355 355
   public function setFccTvbdDeviceType($fccTvbdDeviceType)
356 356
   {
357
-    $this->fccTvbdDeviceType = $fccTvbdDeviceType;
357
+	$this->fccTvbdDeviceType = $fccTvbdDeviceType;
358 358
   }
359 359
   public function getFccTvbdDeviceType()
360 360
   {
361
-    return $this->fccTvbdDeviceType;
361
+	return $this->fccTvbdDeviceType;
362 362
   }
363 363
   public function setManufacturerId($manufacturerId)
364 364
   {
365
-    $this->manufacturerId = $manufacturerId;
365
+	$this->manufacturerId = $manufacturerId;
366 366
   }
367 367
   public function getManufacturerId()
368 368
   {
369
-    return $this->manufacturerId;
369
+	return $this->manufacturerId;
370 370
   }
371 371
   public function setModelId($modelId)
372 372
   {
373
-    $this->modelId = $modelId;
373
+	$this->modelId = $modelId;
374 374
   }
375 375
   public function getModelId()
376 376
   {
377
-    return $this->modelId;
377
+	return $this->modelId;
378 378
   }
379 379
   public function setRulesetIds($rulesetIds)
380 380
   {
381
-    $this->rulesetIds = $rulesetIds;
381
+	$this->rulesetIds = $rulesetIds;
382 382
   }
383 383
   public function getRulesetIds()
384 384
   {
385
-    return $this->rulesetIds;
385
+	return $this->rulesetIds;
386 386
   }
387 387
   public function setSerialNumber($serialNumber)
388 388
   {
389
-    $this->serialNumber = $serialNumber;
389
+	$this->serialNumber = $serialNumber;
390 390
   }
391 391
   public function getSerialNumber()
392 392
   {
393
-    return $this->serialNumber;
393
+	return $this->serialNumber;
394 394
   }
395 395
 }
396 396
 
@@ -406,19 +406,19 @@  discard block
 block discarded – undo
406 406
 
407 407
   public function setOperator(Google_Service_Spectrum_Vcard $operator)
408 408
   {
409
-    $this->operator = $operator;
409
+	$this->operator = $operator;
410 410
   }
411 411
   public function getOperator()
412 412
   {
413
-    return $this->operator;
413
+	return $this->operator;
414 414
   }
415 415
   public function setOwner(Google_Service_Spectrum_Vcard $owner)
416 416
   {
417
-    $this->owner = $owner;
417
+	$this->owner = $owner;
418 418
   }
419 419
   public function getOwner()
420 420
   {
421
-    return $this->owner;
421
+	return $this->owner;
422 422
   }
423 423
 }
424 424
 
@@ -434,27 +434,27 @@  discard block
 block discarded – undo
434 434
 
435 435
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
436 436
   {
437
-    $this->deviceDesc = $deviceDesc;
437
+	$this->deviceDesc = $deviceDesc;
438 438
   }
439 439
   public function getDeviceDesc()
440 440
   {
441
-    return $this->deviceDesc;
441
+	return $this->deviceDesc;
442 442
   }
443 443
   public function setIsValid($isValid)
444 444
   {
445
-    $this->isValid = $isValid;
445
+	$this->isValid = $isValid;
446 446
   }
447 447
   public function getIsValid()
448 448
   {
449
-    return $this->isValid;
449
+	return $this->isValid;
450 450
   }
451 451
   public function setReason($reason)
452 452
   {
453
-    $this->reason = $reason;
453
+	$this->reason = $reason;
454 454
   }
455 455
   public function getReason()
456 456
   {
457
-    return $this->reason;
457
+	return $this->reason;
458 458
   }
459 459
 }
460 460
 
@@ -468,19 +468,19 @@  discard block
 block discarded – undo
468 468
 
469 469
   public function setStartTime($startTime)
470 470
   {
471
-    $this->startTime = $startTime;
471
+	$this->startTime = $startTime;
472 472
   }
473 473
   public function getStartTime()
474 474
   {
475
-    return $this->startTime;
475
+	return $this->startTime;
476 476
   }
477 477
   public function setStopTime($stopTime)
478 478
   {
479
-    $this->stopTime = $stopTime;
479
+	$this->stopTime = $stopTime;
480 480
   }
481 481
   public function getStopTime()
482 482
   {
483
-    return $this->stopTime;
483
+	return $this->stopTime;
484 484
   }
485 485
 }
486 486
 
@@ -496,35 +496,35 @@  discard block
 block discarded – undo
496 496
 
497 497
   public function setChannelId($channelId)
498 498
   {
499
-    $this->channelId = $channelId;
499
+	$this->channelId = $channelId;
500 500
   }
501 501
   public function getChannelId()
502 502
   {
503
-    return $this->channelId;
503
+	return $this->channelId;
504 504
   }
505 505
   public function setMaxPowerDBm($maxPowerDBm)
506 506
   {
507
-    $this->maxPowerDBm = $maxPowerDBm;
507
+	$this->maxPowerDBm = $maxPowerDBm;
508 508
   }
509 509
   public function getMaxPowerDBm()
510 510
   {
511
-    return $this->maxPowerDBm;
511
+	return $this->maxPowerDBm;
512 512
   }
513 513
   public function setStartHz($startHz)
514 514
   {
515
-    $this->startHz = $startHz;
515
+	$this->startHz = $startHz;
516 516
   }
517 517
   public function getStartHz()
518 518
   {
519
-    return $this->startHz;
519
+	return $this->startHz;
520 520
   }
521 521
   public function setStopHz($stopHz)
522 522
   {
523
-    $this->stopHz = $stopHz;
523
+	$this->stopHz = $stopHz;
524 524
   }
525 525
   public function getStopHz()
526 526
   {
527
-    return $this->stopHz;
527
+	return $this->stopHz;
528 528
   }
529 529
 }
530 530
 
@@ -541,27 +541,27 @@  discard block
 block discarded – undo
541 541
 
542 542
   public function setConfidence($confidence)
543 543
   {
544
-    $this->confidence = $confidence;
544
+	$this->confidence = $confidence;
545 545
   }
546 546
   public function getConfidence()
547 547
   {
548
-    return $this->confidence;
548
+	return $this->confidence;
549 549
   }
550 550
   public function setPoint(Google_Service_Spectrum_GeoLocationEllipse $point)
551 551
   {
552
-    $this->point = $point;
552
+	$this->point = $point;
553 553
   }
554 554
   public function getPoint()
555 555
   {
556
-    return $this->point;
556
+	return $this->point;
557 557
   }
558 558
   public function setRegion(Google_Service_Spectrum_GeoLocationPolygon $region)
559 559
   {
560
-    $this->region = $region;
560
+	$this->region = $region;
561 561
   }
562 562
   public function getRegion()
563 563
   {
564
-    return $this->region;
564
+	return $this->region;
565 565
   }
566 566
 }
567 567
 
@@ -578,35 +578,35 @@  discard block
 block discarded – undo
578 578
 
579 579
   public function setCenter(Google_Service_Spectrum_GeoLocationPoint $center)
580 580
   {
581
-    $this->center = $center;
581
+	$this->center = $center;
582 582
   }
583 583
   public function getCenter()
584 584
   {
585
-    return $this->center;
585
+	return $this->center;
586 586
   }
587 587
   public function setOrientation($orientation)
588 588
   {
589
-    $this->orientation = $orientation;
589
+	$this->orientation = $orientation;
590 590
   }
591 591
   public function getOrientation()
592 592
   {
593
-    return $this->orientation;
593
+	return $this->orientation;
594 594
   }
595 595
   public function setSemiMajorAxis($semiMajorAxis)
596 596
   {
597
-    $this->semiMajorAxis = $semiMajorAxis;
597
+	$this->semiMajorAxis = $semiMajorAxis;
598 598
   }
599 599
   public function getSemiMajorAxis()
600 600
   {
601
-    return $this->semiMajorAxis;
601
+	return $this->semiMajorAxis;
602 602
   }
603 603
   public function setSemiMinorAxis($semiMinorAxis)
604 604
   {
605
-    $this->semiMinorAxis = $semiMinorAxis;
605
+	$this->semiMinorAxis = $semiMinorAxis;
606 606
   }
607 607
   public function getSemiMinorAxis()
608 608
   {
609
-    return $this->semiMinorAxis;
609
+	return $this->semiMinorAxis;
610 610
   }
611 611
 }
612 612
 
@@ -620,19 +620,19 @@  discard block
 block discarded – undo
620 620
 
621 621
   public function setLatitude($latitude)
622 622
   {
623
-    $this->latitude = $latitude;
623
+	$this->latitude = $latitude;
624 624
   }
625 625
   public function getLatitude()
626 626
   {
627
-    return $this->latitude;
627
+	return $this->latitude;
628 628
   }
629 629
   public function setLongitude($longitude)
630 630
   {
631
-    $this->longitude = $longitude;
631
+	$this->longitude = $longitude;
632 632
   }
633 633
   public function getLongitude()
634 634
   {
635
-    return $this->longitude;
635
+	return $this->longitude;
636 636
   }
637 637
 }
638 638
 
@@ -647,11 +647,11 @@  discard block
 block discarded – undo
647 647
 
648 648
   public function setExterior($exterior)
649 649
   {
650
-    $this->exterior = $exterior;
650
+	$this->exterior = $exterior;
651 651
   }
652 652
   public function getExterior()
653 653
   {
654
-    return $this->exterior;
654
+	return $this->exterior;
655 655
   }
656 656
 }
657 657
 
@@ -668,19 +668,19 @@  discard block
 block discarded – undo
668 668
 
669 669
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
670 670
   {
671
-    $this->location = $location;
671
+	$this->location = $location;
672 672
   }
673 673
   public function getLocation()
674 674
   {
675
-    return $this->location;
675
+	return $this->location;
676 676
   }
677 677
   public function setSpectrumSchedules($spectrumSchedules)
678 678
   {
679
-    $this->spectrumSchedules = $spectrumSchedules;
679
+	$this->spectrumSchedules = $spectrumSchedules;
680 680
   }
681 681
   public function getSpectrumSchedules()
682 682
   {
683
-    return $this->spectrumSchedules;
683
+	return $this->spectrumSchedules;
684 684
   }
685 685
 }
686 686
 
@@ -708,75 +708,75 @@  discard block
 block discarded – undo
708 708
 
709 709
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
710 710
   {
711
-    $this->antenna = $antenna;
711
+	$this->antenna = $antenna;
712 712
   }
713 713
   public function getAntenna()
714 714
   {
715
-    return $this->antenna;
715
+	return $this->antenna;
716 716
   }
717 717
   public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities)
718 718
   {
719
-    $this->capabilities = $capabilities;
719
+	$this->capabilities = $capabilities;
720 720
   }
721 721
   public function getCapabilities()
722 722
   {
723
-    return $this->capabilities;
723
+	return $this->capabilities;
724 724
   }
725 725
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
726 726
   {
727
-    $this->deviceDesc = $deviceDesc;
727
+	$this->deviceDesc = $deviceDesc;
728 728
   }
729 729
   public function getDeviceDesc()
730 730
   {
731
-    return $this->deviceDesc;
731
+	return $this->deviceDesc;
732 732
   }
733 733
   public function setLocations($locations)
734 734
   {
735
-    $this->locations = $locations;
735
+	$this->locations = $locations;
736 736
   }
737 737
   public function getLocations()
738 738
   {
739
-    return $this->locations;
739
+	return $this->locations;
740 740
   }
741 741
   public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
742 742
   {
743
-    $this->masterDeviceDesc = $masterDeviceDesc;
743
+	$this->masterDeviceDesc = $masterDeviceDesc;
744 744
   }
745 745
   public function getMasterDeviceDesc()
746 746
   {
747
-    return $this->masterDeviceDesc;
747
+	return $this->masterDeviceDesc;
748 748
   }
749 749
   public function setOwner(Google_Service_Spectrum_DeviceOwner $owner)
750 750
   {
751
-    $this->owner = $owner;
751
+	$this->owner = $owner;
752 752
   }
753 753
   public function getOwner()
754 754
   {
755
-    return $this->owner;
755
+	return $this->owner;
756 756
   }
757 757
   public function setRequestType($requestType)
758 758
   {
759
-    $this->requestType = $requestType;
759
+	$this->requestType = $requestType;
760 760
   }
761 761
   public function getRequestType()
762 762
   {
763
-    return $this->requestType;
763
+	return $this->requestType;
764 764
   }
765 765
   public function setType($type)
766 766
   {
767
-    $this->type = $type;
767
+	$this->type = $type;
768 768
   }
769 769
   public function getType()
770 770
   {
771
-    return $this->type;
771
+	return $this->type;
772 772
   }
773 773
   public function setVersion($version)
774 774
   {
775
-    $this->version = $version;
775
+	$this->version = $version;
776 776
   }
777 777
   public function getVersion()
778 778
   {
779
-    return $this->version;
779
+	return $this->version;
780 780
   }
781 781
 }
782 782
 
@@ -804,91 +804,91 @@  discard block
 block discarded – undo
804 804
 
805 805
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
806 806
   {
807
-    $this->databaseChange = $databaseChange;
807
+	$this->databaseChange = $databaseChange;
808 808
   }
809 809
   public function getDatabaseChange()
810 810
   {
811
-    return $this->databaseChange;
811
+	return $this->databaseChange;
812 812
   }
813 813
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
814 814
   {
815
-    $this->deviceDesc = $deviceDesc;
815
+	$this->deviceDesc = $deviceDesc;
816 816
   }
817 817
   public function getDeviceDesc()
818 818
   {
819
-    return $this->deviceDesc;
819
+	return $this->deviceDesc;
820 820
   }
821 821
   public function setGeoSpectrumSchedules($geoSpectrumSchedules)
822 822
   {
823
-    $this->geoSpectrumSchedules = $geoSpectrumSchedules;
823
+	$this->geoSpectrumSchedules = $geoSpectrumSchedules;
824 824
   }
825 825
   public function getGeoSpectrumSchedules()
826 826
   {
827
-    return $this->geoSpectrumSchedules;
827
+	return $this->geoSpectrumSchedules;
828 828
   }
829 829
   public function setKind($kind)
830 830
   {
831
-    $this->kind = $kind;
831
+	$this->kind = $kind;
832 832
   }
833 833
   public function getKind()
834 834
   {
835
-    return $this->kind;
835
+	return $this->kind;
836 836
   }
837 837
   public function setMaxContiguousBwHz($maxContiguousBwHz)
838 838
   {
839
-    $this->maxContiguousBwHz = $maxContiguousBwHz;
839
+	$this->maxContiguousBwHz = $maxContiguousBwHz;
840 840
   }
841 841
   public function getMaxContiguousBwHz()
842 842
   {
843
-    return $this->maxContiguousBwHz;
843
+	return $this->maxContiguousBwHz;
844 844
   }
845 845
   public function setMaxTotalBwHz($maxTotalBwHz)
846 846
   {
847
-    $this->maxTotalBwHz = $maxTotalBwHz;
847
+	$this->maxTotalBwHz = $maxTotalBwHz;
848 848
   }
849 849
   public function getMaxTotalBwHz()
850 850
   {
851
-    return $this->maxTotalBwHz;
851
+	return $this->maxTotalBwHz;
852 852
   }
853 853
   public function setNeedsSpectrumReport($needsSpectrumReport)
854 854
   {
855
-    $this->needsSpectrumReport = $needsSpectrumReport;
855
+	$this->needsSpectrumReport = $needsSpectrumReport;
856 856
   }
857 857
   public function getNeedsSpectrumReport()
858 858
   {
859
-    return $this->needsSpectrumReport;
859
+	return $this->needsSpectrumReport;
860 860
   }
861 861
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
862 862
   {
863
-    $this->rulesetInfo = $rulesetInfo;
863
+	$this->rulesetInfo = $rulesetInfo;
864 864
   }
865 865
   public function getRulesetInfo()
866 866
   {
867
-    return $this->rulesetInfo;
867
+	return $this->rulesetInfo;
868 868
   }
869 869
   public function setTimestamp($timestamp)
870 870
   {
871
-    $this->timestamp = $timestamp;
871
+	$this->timestamp = $timestamp;
872 872
   }
873 873
   public function getTimestamp()
874 874
   {
875
-    return $this->timestamp;
875
+	return $this->timestamp;
876 876
   }
877 877
   public function setType($type)
878 878
   {
879
-    $this->type = $type;
879
+	$this->type = $type;
880 880
   }
881 881
   public function getType()
882 882
   {
883
-    return $this->type;
883
+	return $this->type;
884 884
   }
885 885
   public function setVersion($version)
886 886
   {
887
-    $this->version = $version;
887
+	$this->version = $version;
888 888
   }
889 889
   public function getVersion()
890 890
   {
891
-    return $this->version;
891
+	return $this->version;
892 892
   }
893 893
 }
894 894
 
@@ -915,75 +915,75 @@  discard block
 block discarded – undo
915 915
 
916 916
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
917 917
   {
918
-    $this->antenna = $antenna;
918
+	$this->antenna = $antenna;
919 919
   }
920 920
   public function getAntenna()
921 921
   {
922
-    return $this->antenna;
922
+	return $this->antenna;
923 923
   }
924 924
   public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities)
925 925
   {
926
-    $this->capabilities = $capabilities;
926
+	$this->capabilities = $capabilities;
927 927
   }
928 928
   public function getCapabilities()
929 929
   {
930
-    return $this->capabilities;
930
+	return $this->capabilities;
931 931
   }
932 932
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
933 933
   {
934
-    $this->deviceDesc = $deviceDesc;
934
+	$this->deviceDesc = $deviceDesc;
935 935
   }
936 936
   public function getDeviceDesc()
937 937
   {
938
-    return $this->deviceDesc;
938
+	return $this->deviceDesc;
939 939
   }
940 940
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
941 941
   {
942
-    $this->location = $location;
942
+	$this->location = $location;
943 943
   }
944 944
   public function getLocation()
945 945
   {
946
-    return $this->location;
946
+	return $this->location;
947 947
   }
948 948
   public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
949 949
   {
950
-    $this->masterDeviceDesc = $masterDeviceDesc;
950
+	$this->masterDeviceDesc = $masterDeviceDesc;
951 951
   }
952 952
   public function getMasterDeviceDesc()
953 953
   {
954
-    return $this->masterDeviceDesc;
954
+	return $this->masterDeviceDesc;
955 955
   }
956 956
   public function setOwner(Google_Service_Spectrum_DeviceOwner $owner)
957 957
   {
958
-    $this->owner = $owner;
958
+	$this->owner = $owner;
959 959
   }
960 960
   public function getOwner()
961 961
   {
962
-    return $this->owner;
962
+	return $this->owner;
963 963
   }
964 964
   public function setRequestType($requestType)
965 965
   {
966
-    $this->requestType = $requestType;
966
+	$this->requestType = $requestType;
967 967
   }
968 968
   public function getRequestType()
969 969
   {
970
-    return $this->requestType;
970
+	return $this->requestType;
971 971
   }
972 972
   public function setType($type)
973 973
   {
974
-    $this->type = $type;
974
+	$this->type = $type;
975 975
   }
976 976
   public function getType()
977 977
   {
978
-    return $this->type;
978
+	return $this->type;
979 979
   }
980 980
   public function setVersion($version)
981 981
   {
982
-    $this->version = $version;
982
+	$this->version = $version;
983 983
   }
984 984
   public function getVersion()
985 985
   {
986
-    return $this->version;
986
+	return $this->version;
987 987
   }
988 988
 }
989 989
 
@@ -1011,91 +1011,91 @@  discard block
 block discarded – undo
1011 1011
 
1012 1012
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1013 1013
   {
1014
-    $this->databaseChange = $databaseChange;
1014
+	$this->databaseChange = $databaseChange;
1015 1015
   }
1016 1016
   public function getDatabaseChange()
1017 1017
   {
1018
-    return $this->databaseChange;
1018
+	return $this->databaseChange;
1019 1019
   }
1020 1020
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1021 1021
   {
1022
-    $this->deviceDesc = $deviceDesc;
1022
+	$this->deviceDesc = $deviceDesc;
1023 1023
   }
1024 1024
   public function getDeviceDesc()
1025 1025
   {
1026
-    return $this->deviceDesc;
1026
+	return $this->deviceDesc;
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
   public function setMaxContiguousBwHz($maxContiguousBwHz)
1037 1037
   {
1038
-    $this->maxContiguousBwHz = $maxContiguousBwHz;
1038
+	$this->maxContiguousBwHz = $maxContiguousBwHz;
1039 1039
   }
1040 1040
   public function getMaxContiguousBwHz()
1041 1041
   {
1042
-    return $this->maxContiguousBwHz;
1042
+	return $this->maxContiguousBwHz;
1043 1043
   }
1044 1044
   public function setMaxTotalBwHz($maxTotalBwHz)
1045 1045
   {
1046
-    $this->maxTotalBwHz = $maxTotalBwHz;
1046
+	$this->maxTotalBwHz = $maxTotalBwHz;
1047 1047
   }
1048 1048
   public function getMaxTotalBwHz()
1049 1049
   {
1050
-    return $this->maxTotalBwHz;
1050
+	return $this->maxTotalBwHz;
1051 1051
   }
1052 1052
   public function setNeedsSpectrumReport($needsSpectrumReport)
1053 1053
   {
1054
-    $this->needsSpectrumReport = $needsSpectrumReport;
1054
+	$this->needsSpectrumReport = $needsSpectrumReport;
1055 1055
   }
1056 1056
   public function getNeedsSpectrumReport()
1057 1057
   {
1058
-    return $this->needsSpectrumReport;
1058
+	return $this->needsSpectrumReport;
1059 1059
   }
1060 1060
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
1061 1061
   {
1062
-    $this->rulesetInfo = $rulesetInfo;
1062
+	$this->rulesetInfo = $rulesetInfo;
1063 1063
   }
1064 1064
   public function getRulesetInfo()
1065 1065
   {
1066
-    return $this->rulesetInfo;
1066
+	return $this->rulesetInfo;
1067 1067
   }
1068 1068
   public function setSpectrumSchedules($spectrumSchedules)
1069 1069
   {
1070
-    $this->spectrumSchedules = $spectrumSchedules;
1070
+	$this->spectrumSchedules = $spectrumSchedules;
1071 1071
   }
1072 1072
   public function getSpectrumSchedules()
1073 1073
   {
1074
-    return $this->spectrumSchedules;
1074
+	return $this->spectrumSchedules;
1075 1075
   }
1076 1076
   public function setTimestamp($timestamp)
1077 1077
   {
1078
-    $this->timestamp = $timestamp;
1078
+	$this->timestamp = $timestamp;
1079 1079
   }
1080 1080
   public function getTimestamp()
1081 1081
   {
1082
-    return $this->timestamp;
1082
+	return $this->timestamp;
1083 1083
   }
1084 1084
   public function setType($type)
1085 1085
   {
1086
-    $this->type = $type;
1086
+	$this->type = $type;
1087 1087
   }
1088 1088
   public function getType()
1089 1089
   {
1090
-    return $this->type;
1090
+	return $this->type;
1091 1091
   }
1092 1092
   public function setVersion($version)
1093 1093
   {
1094
-    $this->version = $version;
1094
+	$this->version = $version;
1095 1095
   }
1096 1096
   public function getVersion()
1097 1097
   {
1098
-    return $this->version;
1098
+	return $this->version;
1099 1099
   }
1100 1100
 }
1101 1101
 
@@ -1113,35 +1113,35 @@  discard block
 block discarded – undo
1113 1113
 
1114 1114
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1115 1115
   {
1116
-    $this->deviceDesc = $deviceDesc;
1116
+	$this->deviceDesc = $deviceDesc;
1117 1117
   }
1118 1118
   public function getDeviceDesc()
1119 1119
   {
1120
-    return $this->deviceDesc;
1120
+	return $this->deviceDesc;
1121 1121
   }
1122 1122
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1123 1123
   {
1124
-    $this->location = $location;
1124
+	$this->location = $location;
1125 1125
   }
1126 1126
   public function getLocation()
1127 1127
   {
1128
-    return $this->location;
1128
+	return $this->location;
1129 1129
   }
1130 1130
   public function setType($type)
1131 1131
   {
1132
-    $this->type = $type;
1132
+	$this->type = $type;
1133 1133
   }
1134 1134
   public function getType()
1135 1135
   {
1136
-    return $this->type;
1136
+	return $this->type;
1137 1137
   }
1138 1138
   public function setVersion($version)
1139 1139
   {
1140
-    $this->version = $version;
1140
+	$this->version = $version;
1141 1141
   }
1142 1142
   public function getVersion()
1143 1143
   {
1144
-    return $this->version;
1144
+	return $this->version;
1145 1145
   }
1146 1146
 }
1147 1147
 
@@ -1160,43 +1160,43 @@  discard block
 block discarded – undo
1160 1160
 
1161 1161
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1162 1162
   {
1163
-    $this->databaseChange = $databaseChange;
1163
+	$this->databaseChange = $databaseChange;
1164 1164
   }
1165 1165
   public function getDatabaseChange()
1166 1166
   {
1167
-    return $this->databaseChange;
1167
+	return $this->databaseChange;
1168 1168
   }
1169 1169
   public function setKind($kind)
1170 1170
   {
1171
-    $this->kind = $kind;
1171
+	$this->kind = $kind;
1172 1172
   }
1173 1173
   public function getKind()
1174 1174
   {
1175
-    return $this->kind;
1175
+	return $this->kind;
1176 1176
   }
1177 1177
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
1178 1178
   {
1179
-    $this->rulesetInfo = $rulesetInfo;
1179
+	$this->rulesetInfo = $rulesetInfo;
1180 1180
   }
1181 1181
   public function getRulesetInfo()
1182 1182
   {
1183
-    return $this->rulesetInfo;
1183
+	return $this->rulesetInfo;
1184 1184
   }
1185 1185
   public function setType($type)
1186 1186
   {
1187
-    $this->type = $type;
1187
+	$this->type = $type;
1188 1188
   }
1189 1189
   public function getType()
1190 1190
   {
1191
-    return $this->type;
1191
+	return $this->type;
1192 1192
   }
1193 1193
   public function setVersion($version)
1194 1194
   {
1195
-    $this->version = $version;
1195
+	$this->version = $version;
1196 1196
   }
1197 1197
   public function getVersion()
1198 1198
   {
1199
-    return $this->version;
1199
+	return $this->version;
1200 1200
   }
1201 1201
 }
1202 1202
 
@@ -1217,43 +1217,43 @@  discard block
 block discarded – undo
1217 1217
 
1218 1218
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1219 1219
   {
1220
-    $this->deviceDesc = $deviceDesc;
1220
+	$this->deviceDesc = $deviceDesc;
1221 1221
   }
1222 1222
   public function getDeviceDesc()
1223 1223
   {
1224
-    return $this->deviceDesc;
1224
+	return $this->deviceDesc;
1225 1225
   }
1226 1226
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1227 1227
   {
1228
-    $this->location = $location;
1228
+	$this->location = $location;
1229 1229
   }
1230 1230
   public function getLocation()
1231 1231
   {
1232
-    return $this->location;
1232
+	return $this->location;
1233 1233
   }
1234 1234
   public function setSpectra($spectra)
1235 1235
   {
1236
-    $this->spectra = $spectra;
1236
+	$this->spectra = $spectra;
1237 1237
   }
1238 1238
   public function getSpectra()
1239 1239
   {
1240
-    return $this->spectra;
1240
+	return $this->spectra;
1241 1241
   }
1242 1242
   public function setType($type)
1243 1243
   {
1244
-    $this->type = $type;
1244
+	$this->type = $type;
1245 1245
   }
1246 1246
   public function getType()
1247 1247
   {
1248
-    return $this->type;
1248
+	return $this->type;
1249 1249
   }
1250 1250
   public function setVersion($version)
1251 1251
   {
1252
-    $this->version = $version;
1252
+	$this->version = $version;
1253 1253
   }
1254 1254
   public function getVersion()
1255 1255
   {
1256
-    return $this->version;
1256
+	return $this->version;
1257 1257
   }
1258 1258
 }
1259 1259
 
@@ -1268,27 +1268,27 @@  discard block
 block discarded – undo
1268 1268
 
1269 1269
   public function setKind($kind)
1270 1270
   {
1271
-    $this->kind = $kind;
1271
+	$this->kind = $kind;
1272 1272
   }
1273 1273
   public function getKind()
1274 1274
   {
1275
-    return $this->kind;
1275
+	return $this->kind;
1276 1276
   }
1277 1277
   public function setType($type)
1278 1278
   {
1279
-    $this->type = $type;
1279
+	$this->type = $type;
1280 1280
   }
1281 1281
   public function getType()
1282 1282
   {
1283
-    return $this->type;
1283
+	return $this->type;
1284 1284
   }
1285 1285
   public function setVersion($version)
1286 1286
   {
1287
-    $this->version = $version;
1287
+	$this->version = $version;
1288 1288
   }
1289 1289
   public function getVersion()
1290 1290
   {
1291
-    return $this->version;
1291
+	return $this->version;
1292 1292
   }
1293 1293
 }
1294 1294
 
@@ -1310,51 +1310,51 @@  discard block
 block discarded – undo
1310 1310
 
1311 1311
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
1312 1312
   {
1313
-    $this->antenna = $antenna;
1313
+	$this->antenna = $antenna;
1314 1314
   }
1315 1315
   public function getAntenna()
1316 1316
   {
1317
-    return $this->antenna;
1317
+	return $this->antenna;
1318 1318
   }
1319 1319
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1320 1320
   {
1321
-    $this->deviceDesc = $deviceDesc;
1321
+	$this->deviceDesc = $deviceDesc;
1322 1322
   }
1323 1323
   public function getDeviceDesc()
1324 1324
   {
1325
-    return $this->deviceDesc;
1325
+	return $this->deviceDesc;
1326 1326
   }
1327 1327
   public function setDeviceOwner(Google_Service_Spectrum_DeviceOwner $deviceOwner)
1328 1328
   {
1329
-    $this->deviceOwner = $deviceOwner;
1329
+	$this->deviceOwner = $deviceOwner;
1330 1330
   }
1331 1331
   public function getDeviceOwner()
1332 1332
   {
1333
-    return $this->deviceOwner;
1333
+	return $this->deviceOwner;
1334 1334
   }
1335 1335
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1336 1336
   {
1337
-    $this->location = $location;
1337
+	$this->location = $location;
1338 1338
   }
1339 1339
   public function getLocation()
1340 1340
   {
1341
-    return $this->location;
1341
+	return $this->location;
1342 1342
   }
1343 1343
   public function setType($type)
1344 1344
   {
1345
-    $this->type = $type;
1345
+	$this->type = $type;
1346 1346
   }
1347 1347
   public function getType()
1348 1348
   {
1349
-    return $this->type;
1349
+	return $this->type;
1350 1350
   }
1351 1351
   public function setVersion($version)
1352 1352
   {
1353
-    $this->version = $version;
1353
+	$this->version = $version;
1354 1354
   }
1355 1355
   public function getVersion()
1356 1356
   {
1357
-    return $this->version;
1357
+	return $this->version;
1358 1358
   }
1359 1359
 }
1360 1360
 
@@ -1371,35 +1371,35 @@  discard block
 block discarded – undo
1371 1371
 
1372 1372
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1373 1373
   {
1374
-    $this->databaseChange = $databaseChange;
1374
+	$this->databaseChange = $databaseChange;
1375 1375
   }
1376 1376
   public function getDatabaseChange()
1377 1377
   {
1378
-    return $this->databaseChange;
1378
+	return $this->databaseChange;
1379 1379
   }
1380 1380
   public function setKind($kind)
1381 1381
   {
1382
-    $this->kind = $kind;
1382
+	$this->kind = $kind;
1383 1383
   }
1384 1384
   public function getKind()
1385 1385
   {
1386
-    return $this->kind;
1386
+	return $this->kind;
1387 1387
   }
1388 1388
   public function setType($type)
1389 1389
   {
1390
-    $this->type = $type;
1390
+	$this->type = $type;
1391 1391
   }
1392 1392
   public function getType()
1393 1393
   {
1394
-    return $this->type;
1394
+	return $this->type;
1395 1395
   }
1396 1396
   public function setVersion($version)
1397 1397
   {
1398
-    $this->version = $version;
1398
+	$this->version = $version;
1399 1399
   }
1400 1400
   public function getVersion()
1401 1401
   {
1402
-    return $this->version;
1402
+	return $this->version;
1403 1403
   }
1404 1404
 }
1405 1405
 
@@ -1416,27 +1416,27 @@  discard block
 block discarded – undo
1416 1416
 
1417 1417
   public function setDeviceDescs($deviceDescs)
1418 1418
   {
1419
-    $this->deviceDescs = $deviceDescs;
1419
+	$this->deviceDescs = $deviceDescs;
1420 1420
   }
1421 1421
   public function getDeviceDescs()
1422 1422
   {
1423
-    return $this->deviceDescs;
1423
+	return $this->deviceDescs;
1424 1424
   }
1425 1425
   public function setType($type)
1426 1426
   {
1427
-    $this->type = $type;
1427
+	$this->type = $type;
1428 1428
   }
1429 1429
   public function getType()
1430 1430
   {
1431
-    return $this->type;
1431
+	return $this->type;
1432 1432
   }
1433 1433
   public function setVersion($version)
1434 1434
   {
1435
-    $this->version = $version;
1435
+	$this->version = $version;
1436 1436
   }
1437 1437
   public function getVersion()
1438 1438
   {
1439
-    return $this->version;
1439
+	return $this->version;
1440 1440
   }
1441 1441
 }
1442 1442
 
@@ -1456,43 +1456,43 @@  discard block
 block discarded – undo
1456 1456
 
1457 1457
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1458 1458
   {
1459
-    $this->databaseChange = $databaseChange;
1459
+	$this->databaseChange = $databaseChange;
1460 1460
   }
1461 1461
   public function getDatabaseChange()
1462 1462
   {
1463
-    return $this->databaseChange;
1463
+	return $this->databaseChange;
1464 1464
   }
1465 1465
   public function setDeviceValidities($deviceValidities)
1466 1466
   {
1467
-    $this->deviceValidities = $deviceValidities;
1467
+	$this->deviceValidities = $deviceValidities;
1468 1468
   }
1469 1469
   public function getDeviceValidities()
1470 1470
   {
1471
-    return $this->deviceValidities;
1471
+	return $this->deviceValidities;
1472 1472
   }
1473 1473
   public function setKind($kind)
1474 1474
   {
1475
-    $this->kind = $kind;
1475
+	$this->kind = $kind;
1476 1476
   }
1477 1477
   public function getKind()
1478 1478
   {
1479
-    return $this->kind;
1479
+	return $this->kind;
1480 1480
   }
1481 1481
   public function setType($type)
1482 1482
   {
1483
-    $this->type = $type;
1483
+	$this->type = $type;
1484 1484
   }
1485 1485
   public function getType()
1486 1486
   {
1487
-    return $this->type;
1487
+	return $this->type;
1488 1488
   }
1489 1489
   public function setVersion($version)
1490 1490
   {
1491
-    $this->version = $version;
1491
+	$this->version = $version;
1492 1492
   }
1493 1493
   public function getVersion()
1494 1494
   {
1495
-    return $this->version;
1495
+	return $this->version;
1496 1496
   }
1497 1497
 }
1498 1498
 
@@ -1509,35 +1509,35 @@  discard block
 block discarded – undo
1509 1509
 
1510 1510
   public function setAuthority($authority)
1511 1511
   {
1512
-    $this->authority = $authority;
1512
+	$this->authority = $authority;
1513 1513
   }
1514 1514
   public function getAuthority()
1515 1515
   {
1516
-    return $this->authority;
1516
+	return $this->authority;
1517 1517
   }
1518 1518
   public function setMaxLocationChange($maxLocationChange)
1519 1519
   {
1520
-    $this->maxLocationChange = $maxLocationChange;
1520
+	$this->maxLocationChange = $maxLocationChange;
1521 1521
   }
1522 1522
   public function getMaxLocationChange()
1523 1523
   {
1524
-    return $this->maxLocationChange;
1524
+	return $this->maxLocationChange;
1525 1525
   }
1526 1526
   public function setMaxPollingSecs($maxPollingSecs)
1527 1527
   {
1528
-    $this->maxPollingSecs = $maxPollingSecs;
1528
+	$this->maxPollingSecs = $maxPollingSecs;
1529 1529
   }
1530 1530
   public function getMaxPollingSecs()
1531 1531
   {
1532
-    return $this->maxPollingSecs;
1532
+	return $this->maxPollingSecs;
1533 1533
   }
1534 1534
   public function setRulesetIds($rulesetIds)
1535 1535
   {
1536
-    $this->rulesetIds = $rulesetIds;
1536
+	$this->rulesetIds = $rulesetIds;
1537 1537
   }
1538 1538
   public function getRulesetIds()
1539 1539
   {
1540
-    return $this->rulesetIds;
1540
+	return $this->rulesetIds;
1541 1541
   }
1542 1542
 }
1543 1543
 
@@ -1553,19 +1553,19 @@  discard block
 block discarded – undo
1553 1553
 
1554 1554
   public function setBandwidth($bandwidth)
1555 1555
   {
1556
-    $this->bandwidth = $bandwidth;
1556
+	$this->bandwidth = $bandwidth;
1557 1557
   }
1558 1558
   public function getBandwidth()
1559 1559
   {
1560
-    return $this->bandwidth;
1560
+	return $this->bandwidth;
1561 1561
   }
1562 1562
   public function setFrequencyRanges($frequencyRanges)
1563 1563
   {
1564
-    $this->frequencyRanges = $frequencyRanges;
1564
+	$this->frequencyRanges = $frequencyRanges;
1565 1565
   }
1566 1566
   public function getFrequencyRanges()
1567 1567
   {
1568
-    return $this->frequencyRanges;
1568
+	return $this->frequencyRanges;
1569 1569
   }
1570 1570
 }
1571 1571
 
@@ -1582,19 +1582,19 @@  discard block
 block discarded – undo
1582 1582
 
1583 1583
   public function setEventTime(Google_Service_Spectrum_EventTime $eventTime)
1584 1584
   {
1585
-    $this->eventTime = $eventTime;
1585
+	$this->eventTime = $eventTime;
1586 1586
   }
1587 1587
   public function getEventTime()
1588 1588
   {
1589
-    return $this->eventTime;
1589
+	return $this->eventTime;
1590 1590
   }
1591 1591
   public function setSpectra($spectra)
1592 1592
   {
1593
-    $this->spectra = $spectra;
1593
+	$this->spectra = $spectra;
1594 1594
   }
1595 1595
   public function getSpectra()
1596 1596
   {
1597
-    return $this->spectra;
1597
+	return $this->spectra;
1598 1598
   }
1599 1599
 }
1600 1600
 
@@ -1615,43 +1615,43 @@  discard block
 block discarded – undo
1615 1615
 
1616 1616
   public function setAdr(Google_Service_Spectrum_VcardAddress $adr)
1617 1617
   {
1618
-    $this->adr = $adr;
1618
+	$this->adr = $adr;
1619 1619
   }
1620 1620
   public function getAdr()
1621 1621
   {
1622
-    return $this->adr;
1622
+	return $this->adr;
1623 1623
   }
1624 1624
   public function setEmail(Google_Service_Spectrum_VcardTypedText $email)
1625 1625
   {
1626
-    $this->email = $email;
1626
+	$this->email = $email;
1627 1627
   }
1628 1628
   public function getEmail()
1629 1629
   {
1630
-    return $this->email;
1630
+	return $this->email;
1631 1631
   }
1632 1632
   public function setFn($fn)
1633 1633
   {
1634
-    $this->fn = $fn;
1634
+	$this->fn = $fn;
1635 1635
   }
1636 1636
   public function getFn()
1637 1637
   {
1638
-    return $this->fn;
1638
+	return $this->fn;
1639 1639
   }
1640 1640
   public function setOrg(Google_Service_Spectrum_VcardTypedText $org)
1641 1641
   {
1642
-    $this->org = $org;
1642
+	$this->org = $org;
1643 1643
   }
1644 1644
   public function getOrg()
1645 1645
   {
1646
-    return $this->org;
1646
+	return $this->org;
1647 1647
   }
1648 1648
   public function setTel(Google_Service_Spectrum_VcardTelephone $tel)
1649 1649
   {
1650
-    $this->tel = $tel;
1650
+	$this->tel = $tel;
1651 1651
   }
1652 1652
   public function getTel()
1653 1653
   {
1654
-    return $this->tel;
1654
+	return $this->tel;
1655 1655
   }
1656 1656
 }
1657 1657
 
@@ -1669,51 +1669,51 @@  discard block
 block discarded – undo
1669 1669
 
1670 1670
   public function setCode($code)
1671 1671
   {
1672
-    $this->code = $code;
1672
+	$this->code = $code;
1673 1673
   }
1674 1674
   public function getCode()
1675 1675
   {
1676
-    return $this->code;
1676
+	return $this->code;
1677 1677
   }
1678 1678
   public function setCountry($country)
1679 1679
   {
1680
-    $this->country = $country;
1680
+	$this->country = $country;
1681 1681
   }
1682 1682
   public function getCountry()
1683 1683
   {
1684
-    return $this->country;
1684
+	return $this->country;
1685 1685
   }
1686 1686
   public function setLocality($locality)
1687 1687
   {
1688
-    $this->locality = $locality;
1688
+	$this->locality = $locality;
1689 1689
   }
1690 1690
   public function getLocality()
1691 1691
   {
1692
-    return $this->locality;
1692
+	return $this->locality;
1693 1693
   }
1694 1694
   public function setPobox($pobox)
1695 1695
   {
1696
-    $this->pobox = $pobox;
1696
+	$this->pobox = $pobox;
1697 1697
   }
1698 1698
   public function getPobox()
1699 1699
   {
1700
-    return $this->pobox;
1700
+	return $this->pobox;
1701 1701
   }
1702 1702
   public function setRegion($region)
1703 1703
   {
1704
-    $this->region = $region;
1704
+	$this->region = $region;
1705 1705
   }
1706 1706
   public function getRegion()
1707 1707
   {
1708
-    return $this->region;
1708
+	return $this->region;
1709 1709
   }
1710 1710
   public function setStreet($street)
1711 1711
   {
1712
-    $this->street = $street;
1712
+	$this->street = $street;
1713 1713
   }
1714 1714
   public function getStreet()
1715 1715
   {
1716
-    return $this->street;
1716
+	return $this->street;
1717 1717
   }
1718 1718
 }
1719 1719
 
@@ -1726,11 +1726,11 @@  discard block
 block discarded – undo
1726 1726
 
1727 1727
   public function setUri($uri)
1728 1728
   {
1729
-    $this->uri = $uri;
1729
+	$this->uri = $uri;
1730 1730
   }
1731 1731
   public function getUri()
1732 1732
   {
1733
-    return $this->uri;
1733
+	return $this->uri;
1734 1734
   }
1735 1735
 }
1736 1736
 
@@ -1743,10 +1743,10 @@  discard block
 block discarded – undo
1743 1743
 
1744 1744
   public function setText($text)
1745 1745
   {
1746
-    $this->text = $text;
1746
+	$this->text = $text;
1747 1747
   }
1748 1748
   public function getText()
1749 1749
   {
1750
-    return $this->text;
1750
+	return $this->text;
1751 1751
   }
1752 1752
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,23 +58,23 @@
 block discarded – undo
58 58
               'path' => 'getSpectrum',
59 59
               'httpMethod' => 'POST',
60 60
               'parameters' => array(),
61
-            ),'getSpectrumBatch' => array(
61
+            ), 'getSpectrumBatch' => array(
62 62
               'path' => 'getSpectrumBatch',
63 63
               'httpMethod' => 'POST',
64 64
               'parameters' => array(),
65
-            ),'init' => array(
65
+            ), 'init' => array(
66 66
               'path' => 'init',
67 67
               'httpMethod' => 'POST',
68 68
               'parameters' => array(),
69
-            ),'notifySpectrumUse' => array(
69
+            ), 'notifySpectrumUse' => array(
70 70
               'path' => 'notifySpectrumUse',
71 71
               'httpMethod' => 'POST',
72 72
               'parameters' => array(),
73
-            ),'register' => array(
73
+            ), 'register' => array(
74 74
               'path' => 'register',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(),
77
-            ),'verifyDevice' => array(
77
+            ), 'verifyDevice' => array(
78 78
               'path' => 'verifyDevice',
79 79
               'httpMethod' => 'POST',
80 80
               'parameters' => array(),
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/SQLAdmin.php 3 patches
Doc Comments   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -828,7 +828,7 @@  discard block
 block discarded – undo
828 828
    * @param string $project Project ID of the project that contains the instance.
829 829
    * @param string $instance Database instance ID. This does not include the
830 830
    * project ID.
831
-   * @param Google_Database $postBody
831
+   * @param Google_Service_SQLAdmin_Database $postBody
832 832
    * @param array $optParams Optional parameters.
833 833
    * @return Google_Service_SQLAdmin_Operation
834 834
    */
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
    * @param string $instance Database instance ID. This does not include the
866 866
    * project ID.
867 867
    * @param string $database Name of the database to be updated in the instance.
868
-   * @param Google_Database $postBody
868
+   * @param Google_Service_SQLAdmin_Database $postBody
869 869
    * @param array $optParams Optional parameters.
870 870
    * @return Google_Service_SQLAdmin_Operation
871 871
    */
@@ -884,7 +884,7 @@  discard block
 block discarded – undo
884 884
    * @param string $instance Database instance ID. This does not include the
885 885
    * project ID.
886 886
    * @param string $database Name of the database to be updated in the instance.
887
-   * @param Google_Database $postBody
887
+   * @param Google_Service_SQLAdmin_Database $postBody
888 888
    * @param array $optParams Optional parameters.
889 889
    * @return Google_Service_SQLAdmin_Operation
890 890
    */
@@ -941,7 +941,7 @@  discard block
 block discarded – undo
941 941
    * SQL instance.
942 942
    * @param string $instance The ID of the Cloud SQL instance to be cloned
943 943
    * (source). This does not include the project ID.
944
-   * @param Google_InstancesCloneRequest $postBody
944
+   * @param Google_Service_SQLAdmin_InstancesCloneRequest $postBody
945 945
    * @param array $optParams Optional parameters.
946 946
    * @return Google_Service_SQLAdmin_Operation
947 947
    */
@@ -977,7 +977,7 @@  discard block
 block discarded – undo
977 977
    * to be exported.
978 978
    * @param string $instance Cloud SQL instance ID. This does not include the
979 979
    * project ID.
980
-   * @param Google_InstancesExportRequest $postBody
980
+   * @param Google_Service_SQLAdmin_InstancesExportRequest $postBody
981 981
    * @param array $optParams Optional parameters.
982 982
    * @return Google_Service_SQLAdmin_Operation
983 983
    */
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
    * @param string $project Project ID of the project that contains the instance.
1013 1013
    * @param string $instance Cloud SQL instance ID. This does not include the
1014 1014
    * project ID.
1015
-   * @param Google_InstancesImportRequest $postBody
1015
+   * @param Google_Service_SQLAdmin_InstancesImportRequest $postBody
1016 1016
    * @param array $optParams Optional parameters.
1017 1017
    * @return Google_Service_SQLAdmin_Operation
1018 1018
    */
@@ -1028,7 +1028,7 @@  discard block
 block discarded – undo
1028 1028
    *
1029 1029
    * @param string $project Project ID of the project to which the newly created
1030 1030
    * Cloud SQL instances should belong.
1031
-   * @param Google_DatabaseInstance $postBody
1031
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1032 1032
    * @param array $optParams Optional parameters.
1033 1033
    * @return Google_Service_SQLAdmin_Operation
1034 1034
    */
@@ -1069,7 +1069,7 @@  discard block
 block discarded – undo
1069 1069
    * @param string $project Project ID of the project that contains the instance.
1070 1070
    * @param string $instance Cloud SQL instance ID. This does not include the
1071 1071
    * project ID.
1072
-   * @param Google_DatabaseInstance $postBody
1072
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1073 1073
    * @param array $optParams Optional parameters.
1074 1074
    * @return Google_Service_SQLAdmin_Operation
1075 1075
    */
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
    * @param string $project Project ID of the project that contains the instance.
1139 1139
    * @param string $instance Cloud SQL instance ID. This does not include the
1140 1140
    * project ID.
1141
-   * @param Google_InstancesRestoreBackupRequest $postBody
1141
+   * @param Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody
1142 1142
    * @param array $optParams Optional parameters.
1143 1143
    * @return Google_Service_SQLAdmin_Operation
1144 1144
    */
@@ -1187,7 +1187,7 @@  discard block
 block discarded – undo
1187 1187
    * @param string $project Project ID of the project that contains the instance.
1188 1188
    * @param string $instance Cloud SQL instance ID. This does not include the
1189 1189
    * project ID.
1190
-   * @param Google_DatabaseInstance $postBody
1190
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1191 1191
    * @param array $optParams Optional parameters.
1192 1192
    * @return Google_Service_SQLAdmin_Operation
1193 1193
    */
@@ -1307,7 +1307,7 @@  discard block
 block discarded – undo
1307 1307
    * Cloud SQL instances should belong.
1308 1308
    * @param string $instance Cloud SQL instance ID. This does not include the
1309 1309
    * project ID.
1310
-   * @param Google_SslCertsInsertRequest $postBody
1310
+   * @param Google_Service_SQLAdmin_SslCertsInsertRequest $postBody
1311 1311
    * @param array $optParams Optional parameters.
1312 1312
    * @return Google_Service_SQLAdmin_SslCertsInsertResponse
1313 1313
    */
@@ -1399,7 +1399,7 @@  discard block
 block discarded – undo
1399 1399
    * @param string $project Project ID of the project that contains the instance.
1400 1400
    * @param string $instance Database instance ID. This does not include the
1401 1401
    * project ID.
1402
-   * @param Google_User $postBody
1402
+   * @param Google_Service_SQLAdmin_User $postBody
1403 1403
    * @param array $optParams Optional parameters.
1404 1404
    * @return Google_Service_SQLAdmin_Operation
1405 1405
    */
@@ -1434,7 +1434,7 @@  discard block
 block discarded – undo
1434 1434
    * project ID.
1435 1435
    * @param string $host Host of the user in the instance.
1436 1436
    * @param string $name Name of the user in the instance.
1437
-   * @param Google_User $postBody
1437
+   * @param Google_Service_SQLAdmin_User $postBody
1438 1438
    * @param array $optParams Optional parameters.
1439 1439
    * @return Google_Service_SQLAdmin_Operation
1440 1440
    */
Please login to merge, or discard this patch.
Indentation   +1145 added lines, -1145 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
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 Google SQL Service instances. */
37 37
   const SQLSERVICE_ADMIN =
38
-      "https://www.googleapis.com/auth/sqlservice.admin";
38
+	  "https://www.googleapis.com/auth/sqlservice.admin";
39 39
 
40 40
   public $backupRuns;
41 41
   public $databases;
@@ -54,670 +54,670 @@  discard block
 block discarded – undo
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 = 'sql/v1beta4/';
60
-    $this->version = 'v1beta4';
61
-    $this->serviceName = 'sqladmin';
62
-
63
-    $this->backupRuns = new Google_Service_SQLAdmin_BackupRuns_Resource(
64
-        $this,
65
-        $this->serviceName,
66
-        'backupRuns',
67
-        array(
68
-          'methods' => array(
69
-            'get' => array(
70
-              'path' => 'projects/{project}/instances/{instance}/backupRuns/{id}',
71
-              'httpMethod' => 'GET',
72
-              'parameters' => array(
73
-                'project' => array(
74
-                  'location' => 'path',
75
-                  'type' => 'string',
76
-                  'required' => true,
77
-                ),
78
-                'instance' => array(
79
-                  'location' => 'path',
80
-                  'type' => 'string',
81
-                  'required' => true,
82
-                ),
83
-                'id' => array(
84
-                  'location' => 'path',
85
-                  'type' => 'string',
86
-                  'required' => true,
87
-                ),
88
-              ),
89
-            ),'list' => array(
90
-              'path' => 'projects/{project}/instances/{instance}/backupRuns',
91
-              'httpMethod' => 'GET',
92
-              'parameters' => array(
93
-                'project' => array(
94
-                  'location' => 'path',
95
-                  'type' => 'string',
96
-                  'required' => true,
97
-                ),
98
-                'instance' => array(
99
-                  'location' => 'path',
100
-                  'type' => 'string',
101
-                  'required' => true,
102
-                ),
103
-                'maxResults' => array(
104
-                  'location' => 'query',
105
-                  'type' => 'integer',
106
-                ),
107
-                'pageToken' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'string',
110
-                ),
111
-              ),
112
-            ),
113
-          )
114
-        )
115
-    );
116
-    $this->databases = new Google_Service_SQLAdmin_Databases_Resource(
117
-        $this,
118
-        $this->serviceName,
119
-        'databases',
120
-        array(
121
-          'methods' => array(
122
-            'delete' => array(
123
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
124
-              'httpMethod' => 'DELETE',
125
-              'parameters' => array(
126
-                'project' => array(
127
-                  'location' => 'path',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-                'instance' => array(
132
-                  'location' => 'path',
133
-                  'type' => 'string',
134
-                  'required' => true,
135
-                ),
136
-                'database' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-              ),
142
-            ),'get' => array(
143
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144
-              'httpMethod' => 'GET',
145
-              'parameters' => array(
146
-                'project' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'instance' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'database' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-              ),
162
-            ),'insert' => array(
163
-              'path' => 'projects/{project}/instances/{instance}/databases',
164
-              'httpMethod' => 'POST',
165
-              'parameters' => array(
166
-                'project' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'instance' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-              ),
177
-            ),'list' => array(
178
-              'path' => 'projects/{project}/instances/{instance}/databases',
179
-              'httpMethod' => 'GET',
180
-              'parameters' => array(
181
-                'project' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-                'instance' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-              ),
192
-            ),'patch' => array(
193
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194
-              'httpMethod' => 'PATCH',
195
-              'parameters' => array(
196
-                'project' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-                'instance' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-                'database' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-              ),
212
-            ),'update' => array(
213
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214
-              'httpMethod' => 'PUT',
215
-              'parameters' => array(
216
-                'project' => array(
217
-                  'location' => 'path',
218
-                  'type' => 'string',
219
-                  'required' => true,
220
-                ),
221
-                'instance' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'database' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-              ),
232
-            ),
233
-          )
234
-        )
235
-    );
236
-    $this->flags = new Google_Service_SQLAdmin_Flags_Resource(
237
-        $this,
238
-        $this->serviceName,
239
-        'flags',
240
-        array(
241
-          'methods' => array(
242
-            'list' => array(
243
-              'path' => 'flags',
244
-              'httpMethod' => 'GET',
245
-              'parameters' => array(),
246
-            ),
247
-          )
248
-        )
249
-    );
250
-    $this->instances = new Google_Service_SQLAdmin_Instances_Resource(
251
-        $this,
252
-        $this->serviceName,
253
-        'instances',
254
-        array(
255
-          'methods' => array(
256
-            'clone' => array(
257
-              'path' => 'projects/{project}/instances/{instance}/clone',
258
-              'httpMethod' => 'POST',
259
-              'parameters' => array(
260
-                'project' => array(
261
-                  'location' => 'path',
262
-                  'type' => 'string',
263
-                  'required' => true,
264
-                ),
265
-                'instance' => array(
266
-                  'location' => 'path',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-              ),
271
-            ),'delete' => array(
272
-              'path' => 'projects/{project}/instances/{instance}',
273
-              'httpMethod' => 'DELETE',
274
-              'parameters' => array(
275
-                'project' => array(
276
-                  'location' => 'path',
277
-                  'type' => 'string',
278
-                  'required' => true,
279
-                ),
280
-                'instance' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'string',
283
-                  'required' => true,
284
-                ),
285
-              ),
286
-            ),'export' => array(
287
-              'path' => 'projects/{project}/instances/{instance}/export',
288
-              'httpMethod' => 'POST',
289
-              'parameters' => array(
290
-                'project' => array(
291
-                  'location' => 'path',
292
-                  'type' => 'string',
293
-                  'required' => true,
294
-                ),
295
-                'instance' => array(
296
-                  'location' => 'path',
297
-                  'type' => 'string',
298
-                  'required' => true,
299
-                ),
300
-              ),
301
-            ),'get' => array(
302
-              'path' => 'projects/{project}/instances/{instance}',
303
-              'httpMethod' => 'GET',
304
-              'parameters' => array(
305
-                'project' => array(
306
-                  'location' => 'path',
307
-                  'type' => 'string',
308
-                  'required' => true,
309
-                ),
310
-                'instance' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-              ),
316
-            ),'import' => array(
317
-              'path' => 'projects/{project}/instances/{instance}/import',
318
-              'httpMethod' => 'POST',
319
-              'parameters' => array(
320
-                'project' => array(
321
-                  'location' => 'path',
322
-                  'type' => 'string',
323
-                  'required' => true,
324
-                ),
325
-                'instance' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-              ),
331
-            ),'insert' => array(
332
-              'path' => 'projects/{project}/instances',
333
-              'httpMethod' => 'POST',
334
-              'parameters' => array(
335
-                'project' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-              ),
341
-            ),'list' => array(
342
-              'path' => 'projects/{project}/instances',
343
-              'httpMethod' => 'GET',
344
-              'parameters' => array(
345
-                'project' => array(
346
-                  'location' => 'path',
347
-                  'type' => 'string',
348
-                  'required' => true,
349
-                ),
350
-                'pageToken' => array(
351
-                  'location' => 'query',
352
-                  'type' => 'string',
353
-                ),
354
-                'maxResults' => array(
355
-                  'location' => 'query',
356
-                  'type' => 'integer',
357
-                ),
358
-              ),
359
-            ),'patch' => array(
360
-              'path' => 'projects/{project}/instances/{instance}',
361
-              'httpMethod' => 'PATCH',
362
-              'parameters' => array(
363
-                'project' => array(
364
-                  'location' => 'path',
365
-                  'type' => 'string',
366
-                  'required' => true,
367
-                ),
368
-                'instance' => array(
369
-                  'location' => 'path',
370
-                  'type' => 'string',
371
-                  'required' => true,
372
-                ),
373
-              ),
374
-            ),'promoteReplica' => array(
375
-              'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376
-              'httpMethod' => 'POST',
377
-              'parameters' => array(
378
-                'project' => array(
379
-                  'location' => 'path',
380
-                  'type' => 'string',
381
-                  'required' => true,
382
-                ),
383
-                'instance' => array(
384
-                  'location' => 'path',
385
-                  'type' => 'string',
386
-                  'required' => true,
387
-                ),
388
-              ),
389
-            ),'resetSslConfig' => array(
390
-              'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391
-              'httpMethod' => 'POST',
392
-              'parameters' => array(
393
-                'project' => array(
394
-                  'location' => 'path',
395
-                  'type' => 'string',
396
-                  'required' => true,
397
-                ),
398
-                'instance' => array(
399
-                  'location' => 'path',
400
-                  'type' => 'string',
401
-                  'required' => true,
402
-                ),
403
-              ),
404
-            ),'restart' => array(
405
-              'path' => 'projects/{project}/instances/{instance}/restart',
406
-              'httpMethod' => 'POST',
407
-              'parameters' => array(
408
-                'project' => array(
409
-                  'location' => 'path',
410
-                  'type' => 'string',
411
-                  'required' => true,
412
-                ),
413
-                'instance' => array(
414
-                  'location' => 'path',
415
-                  'type' => 'string',
416
-                  'required' => true,
417
-                ),
418
-              ),
419
-            ),'restoreBackup' => array(
420
-              'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421
-              'httpMethod' => 'POST',
422
-              'parameters' => array(
423
-                'project' => array(
424
-                  'location' => 'path',
425
-                  'type' => 'string',
426
-                  'required' => true,
427
-                ),
428
-                'instance' => array(
429
-                  'location' => 'path',
430
-                  'type' => 'string',
431
-                  'required' => true,
432
-                ),
433
-              ),
434
-            ),'startReplica' => array(
435
-              'path' => 'projects/{project}/instances/{instance}/startReplica',
436
-              'httpMethod' => 'POST',
437
-              'parameters' => array(
438
-                'project' => array(
439
-                  'location' => 'path',
440
-                  'type' => 'string',
441
-                  'required' => true,
442
-                ),
443
-                'instance' => array(
444
-                  'location' => 'path',
445
-                  'type' => 'string',
446
-                  'required' => true,
447
-                ),
448
-              ),
449
-            ),'stopReplica' => array(
450
-              'path' => 'projects/{project}/instances/{instance}/stopReplica',
451
-              'httpMethod' => 'POST',
452
-              'parameters' => array(
453
-                'project' => array(
454
-                  'location' => 'path',
455
-                  'type' => 'string',
456
-                  'required' => true,
457
-                ),
458
-                'instance' => array(
459
-                  'location' => 'path',
460
-                  'type' => 'string',
461
-                  'required' => true,
462
-                ),
463
-              ),
464
-            ),'update' => array(
465
-              'path' => 'projects/{project}/instances/{instance}',
466
-              'httpMethod' => 'PUT',
467
-              'parameters' => array(
468
-                'project' => array(
469
-                  'location' => 'path',
470
-                  'type' => 'string',
471
-                  'required' => true,
472
-                ),
473
-                'instance' => array(
474
-                  'location' => 'path',
475
-                  'type' => 'string',
476
-                  'required' => true,
477
-                ),
478
-              ),
479
-            ),
480
-          )
481
-        )
482
-    );
483
-    $this->operations = new Google_Service_SQLAdmin_Operations_Resource(
484
-        $this,
485
-        $this->serviceName,
486
-        'operations',
487
-        array(
488
-          'methods' => array(
489
-            'get' => array(
490
-              'path' => 'projects/{project}/operations/{operation}',
491
-              'httpMethod' => 'GET',
492
-              'parameters' => array(
493
-                'project' => array(
494
-                  'location' => 'path',
495
-                  'type' => 'string',
496
-                  'required' => true,
497
-                ),
498
-                'operation' => array(
499
-                  'location' => 'path',
500
-                  'type' => 'string',
501
-                  'required' => true,
502
-                ),
503
-              ),
504
-            ),'list' => array(
505
-              'path' => 'projects/{project}/operations',
506
-              'httpMethod' => 'GET',
507
-              'parameters' => array(
508
-                'project' => array(
509
-                  'location' => 'path',
510
-                  'type' => 'string',
511
-                  'required' => true,
512
-                ),
513
-                'instance' => array(
514
-                  'location' => 'query',
515
-                  'type' => 'string',
516
-                  'required' => true,
517
-                ),
518
-                'maxResults' => array(
519
-                  'location' => 'query',
520
-                  'type' => 'integer',
521
-                ),
522
-                'pageToken' => array(
523
-                  'location' => 'query',
524
-                  'type' => 'string',
525
-                ),
526
-              ),
527
-            ),
528
-          )
529
-        )
530
-    );
531
-    $this->sslCerts = new Google_Service_SQLAdmin_SslCerts_Resource(
532
-        $this,
533
-        $this->serviceName,
534
-        'sslCerts',
535
-        array(
536
-          'methods' => array(
537
-            'delete' => array(
538
-              'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
539
-              'httpMethod' => 'DELETE',
540
-              'parameters' => array(
541
-                'project' => array(
542
-                  'location' => 'path',
543
-                  'type' => 'string',
544
-                  'required' => true,
545
-                ),
546
-                'instance' => array(
547
-                  'location' => 'path',
548
-                  'type' => 'string',
549
-                  'required' => true,
550
-                ),
551
-                'sha1Fingerprint' => array(
552
-                  'location' => 'path',
553
-                  'type' => 'string',
554
-                  'required' => true,
555
-                ),
556
-              ),
557
-            ),'get' => array(
558
-              'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559
-              'httpMethod' => 'GET',
560
-              'parameters' => array(
561
-                'project' => array(
562
-                  'location' => 'path',
563
-                  'type' => 'string',
564
-                  'required' => true,
565
-                ),
566
-                'instance' => array(
567
-                  'location' => 'path',
568
-                  'type' => 'string',
569
-                  'required' => true,
570
-                ),
571
-                'sha1Fingerprint' => array(
572
-                  'location' => 'path',
573
-                  'type' => 'string',
574
-                  'required' => true,
575
-                ),
576
-              ),
577
-            ),'insert' => array(
578
-              'path' => 'projects/{project}/instances/{instance}/sslCerts',
579
-              'httpMethod' => 'POST',
580
-              'parameters' => array(
581
-                'project' => array(
582
-                  'location' => 'path',
583
-                  'type' => 'string',
584
-                  'required' => true,
585
-                ),
586
-                'instance' => array(
587
-                  'location' => 'path',
588
-                  'type' => 'string',
589
-                  'required' => true,
590
-                ),
591
-              ),
592
-            ),'list' => array(
593
-              'path' => 'projects/{project}/instances/{instance}/sslCerts',
594
-              'httpMethod' => 'GET',
595
-              'parameters' => array(
596
-                'project' => array(
597
-                  'location' => 'path',
598
-                  'type' => 'string',
599
-                  'required' => true,
600
-                ),
601
-                'instance' => array(
602
-                  'location' => 'path',
603
-                  'type' => 'string',
604
-                  'required' => true,
605
-                ),
606
-              ),
607
-            ),
608
-          )
609
-        )
610
-    );
611
-    $this->tiers = new Google_Service_SQLAdmin_Tiers_Resource(
612
-        $this,
613
-        $this->serviceName,
614
-        'tiers',
615
-        array(
616
-          'methods' => array(
617
-            'list' => array(
618
-              'path' => 'projects/{project}/tiers',
619
-              'httpMethod' => 'GET',
620
-              'parameters' => array(
621
-                'project' => array(
622
-                  'location' => 'path',
623
-                  'type' => 'string',
624
-                  'required' => true,
625
-                ),
626
-              ),
627
-            ),
628
-          )
629
-        )
630
-    );
631
-    $this->users = new Google_Service_SQLAdmin_Users_Resource(
632
-        $this,
633
-        $this->serviceName,
634
-        'users',
635
-        array(
636
-          'methods' => array(
637
-            'delete' => array(
638
-              'path' => 'projects/{project}/instances/{instance}/users',
639
-              'httpMethod' => 'DELETE',
640
-              'parameters' => array(
641
-                'project' => array(
642
-                  'location' => 'path',
643
-                  'type' => 'string',
644
-                  'required' => true,
645
-                ),
646
-                'instance' => array(
647
-                  'location' => 'path',
648
-                  'type' => 'string',
649
-                  'required' => true,
650
-                ),
651
-                'host' => array(
652
-                  'location' => 'query',
653
-                  'type' => 'string',
654
-                  'required' => true,
655
-                ),
656
-                'name' => array(
657
-                  'location' => 'query',
658
-                  'type' => 'string',
659
-                  'required' => true,
660
-                ),
661
-              ),
662
-            ),'insert' => array(
663
-              'path' => 'projects/{project}/instances/{instance}/users',
664
-              'httpMethod' => 'POST',
665
-              'parameters' => array(
666
-                'project' => array(
667
-                  'location' => 'path',
668
-                  'type' => 'string',
669
-                  'required' => true,
670
-                ),
671
-                'instance' => array(
672
-                  'location' => 'path',
673
-                  'type' => 'string',
674
-                  'required' => true,
675
-                ),
676
-              ),
677
-            ),'list' => array(
678
-              'path' => 'projects/{project}/instances/{instance}/users',
679
-              'httpMethod' => 'GET',
680
-              'parameters' => array(
681
-                'project' => array(
682
-                  'location' => 'path',
683
-                  'type' => 'string',
684
-                  'required' => true,
685
-                ),
686
-                'instance' => array(
687
-                  'location' => 'path',
688
-                  'type' => 'string',
689
-                  'required' => true,
690
-                ),
691
-              ),
692
-            ),'update' => array(
693
-              'path' => 'projects/{project}/instances/{instance}/users',
694
-              'httpMethod' => 'PUT',
695
-              'parameters' => array(
696
-                'project' => array(
697
-                  'location' => 'path',
698
-                  'type' => 'string',
699
-                  'required' => true,
700
-                ),
701
-                'instance' => array(
702
-                  'location' => 'path',
703
-                  'type' => 'string',
704
-                  'required' => true,
705
-                ),
706
-                'host' => array(
707
-                  'location' => 'query',
708
-                  'type' => 'string',
709
-                  'required' => true,
710
-                ),
711
-                'name' => array(
712
-                  'location' => 'query',
713
-                  'type' => 'string',
714
-                  'required' => true,
715
-                ),
716
-              ),
717
-            ),
718
-          )
719
-        )
720
-    );
57
+	parent::__construct($client);
58
+	$this->rootUrl = 'https://www.googleapis.com/';
59
+	$this->servicePath = 'sql/v1beta4/';
60
+	$this->version = 'v1beta4';
61
+	$this->serviceName = 'sqladmin';
62
+
63
+	$this->backupRuns = new Google_Service_SQLAdmin_BackupRuns_Resource(
64
+		$this,
65
+		$this->serviceName,
66
+		'backupRuns',
67
+		array(
68
+		  'methods' => array(
69
+			'get' => array(
70
+			  'path' => 'projects/{project}/instances/{instance}/backupRuns/{id}',
71
+			  'httpMethod' => 'GET',
72
+			  'parameters' => array(
73
+				'project' => array(
74
+				  'location' => 'path',
75
+				  'type' => 'string',
76
+				  'required' => true,
77
+				),
78
+				'instance' => array(
79
+				  'location' => 'path',
80
+				  'type' => 'string',
81
+				  'required' => true,
82
+				),
83
+				'id' => array(
84
+				  'location' => 'path',
85
+				  'type' => 'string',
86
+				  'required' => true,
87
+				),
88
+			  ),
89
+			),'list' => array(
90
+			  'path' => 'projects/{project}/instances/{instance}/backupRuns',
91
+			  'httpMethod' => 'GET',
92
+			  'parameters' => array(
93
+				'project' => array(
94
+				  'location' => 'path',
95
+				  'type' => 'string',
96
+				  'required' => true,
97
+				),
98
+				'instance' => array(
99
+				  'location' => 'path',
100
+				  'type' => 'string',
101
+				  'required' => true,
102
+				),
103
+				'maxResults' => array(
104
+				  'location' => 'query',
105
+				  'type' => 'integer',
106
+				),
107
+				'pageToken' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'string',
110
+				),
111
+			  ),
112
+			),
113
+		  )
114
+		)
115
+	);
116
+	$this->databases = new Google_Service_SQLAdmin_Databases_Resource(
117
+		$this,
118
+		$this->serviceName,
119
+		'databases',
120
+		array(
121
+		  'methods' => array(
122
+			'delete' => array(
123
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
124
+			  'httpMethod' => 'DELETE',
125
+			  'parameters' => array(
126
+				'project' => array(
127
+				  'location' => 'path',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+				'instance' => array(
132
+				  'location' => 'path',
133
+				  'type' => 'string',
134
+				  'required' => true,
135
+				),
136
+				'database' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+			  ),
142
+			),'get' => array(
143
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144
+			  'httpMethod' => 'GET',
145
+			  'parameters' => array(
146
+				'project' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'instance' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'database' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+			  ),
162
+			),'insert' => array(
163
+			  'path' => 'projects/{project}/instances/{instance}/databases',
164
+			  'httpMethod' => 'POST',
165
+			  'parameters' => array(
166
+				'project' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'instance' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+			  ),
177
+			),'list' => array(
178
+			  'path' => 'projects/{project}/instances/{instance}/databases',
179
+			  'httpMethod' => 'GET',
180
+			  'parameters' => array(
181
+				'project' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+				'instance' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+			  ),
192
+			),'patch' => array(
193
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194
+			  'httpMethod' => 'PATCH',
195
+			  'parameters' => array(
196
+				'project' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+				'instance' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+				'database' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+			  ),
212
+			),'update' => array(
213
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214
+			  'httpMethod' => 'PUT',
215
+			  'parameters' => array(
216
+				'project' => array(
217
+				  'location' => 'path',
218
+				  'type' => 'string',
219
+				  'required' => true,
220
+				),
221
+				'instance' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'database' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+			  ),
232
+			),
233
+		  )
234
+		)
235
+	);
236
+	$this->flags = new Google_Service_SQLAdmin_Flags_Resource(
237
+		$this,
238
+		$this->serviceName,
239
+		'flags',
240
+		array(
241
+		  'methods' => array(
242
+			'list' => array(
243
+			  'path' => 'flags',
244
+			  'httpMethod' => 'GET',
245
+			  'parameters' => array(),
246
+			),
247
+		  )
248
+		)
249
+	);
250
+	$this->instances = new Google_Service_SQLAdmin_Instances_Resource(
251
+		$this,
252
+		$this->serviceName,
253
+		'instances',
254
+		array(
255
+		  'methods' => array(
256
+			'clone' => array(
257
+			  'path' => 'projects/{project}/instances/{instance}/clone',
258
+			  'httpMethod' => 'POST',
259
+			  'parameters' => array(
260
+				'project' => array(
261
+				  'location' => 'path',
262
+				  'type' => 'string',
263
+				  'required' => true,
264
+				),
265
+				'instance' => array(
266
+				  'location' => 'path',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+			  ),
271
+			),'delete' => array(
272
+			  'path' => 'projects/{project}/instances/{instance}',
273
+			  'httpMethod' => 'DELETE',
274
+			  'parameters' => array(
275
+				'project' => array(
276
+				  'location' => 'path',
277
+				  'type' => 'string',
278
+				  'required' => true,
279
+				),
280
+				'instance' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'string',
283
+				  'required' => true,
284
+				),
285
+			  ),
286
+			),'export' => array(
287
+			  'path' => 'projects/{project}/instances/{instance}/export',
288
+			  'httpMethod' => 'POST',
289
+			  'parameters' => array(
290
+				'project' => array(
291
+				  'location' => 'path',
292
+				  'type' => 'string',
293
+				  'required' => true,
294
+				),
295
+				'instance' => array(
296
+				  'location' => 'path',
297
+				  'type' => 'string',
298
+				  'required' => true,
299
+				),
300
+			  ),
301
+			),'get' => array(
302
+			  'path' => 'projects/{project}/instances/{instance}',
303
+			  'httpMethod' => 'GET',
304
+			  'parameters' => array(
305
+				'project' => array(
306
+				  'location' => 'path',
307
+				  'type' => 'string',
308
+				  'required' => true,
309
+				),
310
+				'instance' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+			  ),
316
+			),'import' => array(
317
+			  'path' => 'projects/{project}/instances/{instance}/import',
318
+			  'httpMethod' => 'POST',
319
+			  'parameters' => array(
320
+				'project' => array(
321
+				  'location' => 'path',
322
+				  'type' => 'string',
323
+				  'required' => true,
324
+				),
325
+				'instance' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+			  ),
331
+			),'insert' => array(
332
+			  'path' => 'projects/{project}/instances',
333
+			  'httpMethod' => 'POST',
334
+			  'parameters' => array(
335
+				'project' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+			  ),
341
+			),'list' => array(
342
+			  'path' => 'projects/{project}/instances',
343
+			  'httpMethod' => 'GET',
344
+			  'parameters' => array(
345
+				'project' => array(
346
+				  'location' => 'path',
347
+				  'type' => 'string',
348
+				  'required' => true,
349
+				),
350
+				'pageToken' => array(
351
+				  'location' => 'query',
352
+				  'type' => 'string',
353
+				),
354
+				'maxResults' => array(
355
+				  'location' => 'query',
356
+				  'type' => 'integer',
357
+				),
358
+			  ),
359
+			),'patch' => array(
360
+			  'path' => 'projects/{project}/instances/{instance}',
361
+			  'httpMethod' => 'PATCH',
362
+			  'parameters' => array(
363
+				'project' => array(
364
+				  'location' => 'path',
365
+				  'type' => 'string',
366
+				  'required' => true,
367
+				),
368
+				'instance' => array(
369
+				  'location' => 'path',
370
+				  'type' => 'string',
371
+				  'required' => true,
372
+				),
373
+			  ),
374
+			),'promoteReplica' => array(
375
+			  'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376
+			  'httpMethod' => 'POST',
377
+			  'parameters' => array(
378
+				'project' => array(
379
+				  'location' => 'path',
380
+				  'type' => 'string',
381
+				  'required' => true,
382
+				),
383
+				'instance' => array(
384
+				  'location' => 'path',
385
+				  'type' => 'string',
386
+				  'required' => true,
387
+				),
388
+			  ),
389
+			),'resetSslConfig' => array(
390
+			  'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391
+			  'httpMethod' => 'POST',
392
+			  'parameters' => array(
393
+				'project' => array(
394
+				  'location' => 'path',
395
+				  'type' => 'string',
396
+				  'required' => true,
397
+				),
398
+				'instance' => array(
399
+				  'location' => 'path',
400
+				  'type' => 'string',
401
+				  'required' => true,
402
+				),
403
+			  ),
404
+			),'restart' => array(
405
+			  'path' => 'projects/{project}/instances/{instance}/restart',
406
+			  'httpMethod' => 'POST',
407
+			  'parameters' => array(
408
+				'project' => array(
409
+				  'location' => 'path',
410
+				  'type' => 'string',
411
+				  'required' => true,
412
+				),
413
+				'instance' => array(
414
+				  'location' => 'path',
415
+				  'type' => 'string',
416
+				  'required' => true,
417
+				),
418
+			  ),
419
+			),'restoreBackup' => array(
420
+			  'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421
+			  'httpMethod' => 'POST',
422
+			  'parameters' => array(
423
+				'project' => array(
424
+				  'location' => 'path',
425
+				  'type' => 'string',
426
+				  'required' => true,
427
+				),
428
+				'instance' => array(
429
+				  'location' => 'path',
430
+				  'type' => 'string',
431
+				  'required' => true,
432
+				),
433
+			  ),
434
+			),'startReplica' => array(
435
+			  'path' => 'projects/{project}/instances/{instance}/startReplica',
436
+			  'httpMethod' => 'POST',
437
+			  'parameters' => array(
438
+				'project' => array(
439
+				  'location' => 'path',
440
+				  'type' => 'string',
441
+				  'required' => true,
442
+				),
443
+				'instance' => array(
444
+				  'location' => 'path',
445
+				  'type' => 'string',
446
+				  'required' => true,
447
+				),
448
+			  ),
449
+			),'stopReplica' => array(
450
+			  'path' => 'projects/{project}/instances/{instance}/stopReplica',
451
+			  'httpMethod' => 'POST',
452
+			  'parameters' => array(
453
+				'project' => array(
454
+				  'location' => 'path',
455
+				  'type' => 'string',
456
+				  'required' => true,
457
+				),
458
+				'instance' => array(
459
+				  'location' => 'path',
460
+				  'type' => 'string',
461
+				  'required' => true,
462
+				),
463
+			  ),
464
+			),'update' => array(
465
+			  'path' => 'projects/{project}/instances/{instance}',
466
+			  'httpMethod' => 'PUT',
467
+			  'parameters' => array(
468
+				'project' => array(
469
+				  'location' => 'path',
470
+				  'type' => 'string',
471
+				  'required' => true,
472
+				),
473
+				'instance' => array(
474
+				  'location' => 'path',
475
+				  'type' => 'string',
476
+				  'required' => true,
477
+				),
478
+			  ),
479
+			),
480
+		  )
481
+		)
482
+	);
483
+	$this->operations = new Google_Service_SQLAdmin_Operations_Resource(
484
+		$this,
485
+		$this->serviceName,
486
+		'operations',
487
+		array(
488
+		  'methods' => array(
489
+			'get' => array(
490
+			  'path' => 'projects/{project}/operations/{operation}',
491
+			  'httpMethod' => 'GET',
492
+			  'parameters' => array(
493
+				'project' => array(
494
+				  'location' => 'path',
495
+				  'type' => 'string',
496
+				  'required' => true,
497
+				),
498
+				'operation' => array(
499
+				  'location' => 'path',
500
+				  'type' => 'string',
501
+				  'required' => true,
502
+				),
503
+			  ),
504
+			),'list' => array(
505
+			  'path' => 'projects/{project}/operations',
506
+			  'httpMethod' => 'GET',
507
+			  'parameters' => array(
508
+				'project' => array(
509
+				  'location' => 'path',
510
+				  'type' => 'string',
511
+				  'required' => true,
512
+				),
513
+				'instance' => array(
514
+				  'location' => 'query',
515
+				  'type' => 'string',
516
+				  'required' => true,
517
+				),
518
+				'maxResults' => array(
519
+				  'location' => 'query',
520
+				  'type' => 'integer',
521
+				),
522
+				'pageToken' => array(
523
+				  'location' => 'query',
524
+				  'type' => 'string',
525
+				),
526
+			  ),
527
+			),
528
+		  )
529
+		)
530
+	);
531
+	$this->sslCerts = new Google_Service_SQLAdmin_SslCerts_Resource(
532
+		$this,
533
+		$this->serviceName,
534
+		'sslCerts',
535
+		array(
536
+		  'methods' => array(
537
+			'delete' => array(
538
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
539
+			  'httpMethod' => 'DELETE',
540
+			  'parameters' => array(
541
+				'project' => array(
542
+				  'location' => 'path',
543
+				  'type' => 'string',
544
+				  'required' => true,
545
+				),
546
+				'instance' => array(
547
+				  'location' => 'path',
548
+				  'type' => 'string',
549
+				  'required' => true,
550
+				),
551
+				'sha1Fingerprint' => array(
552
+				  'location' => 'path',
553
+				  'type' => 'string',
554
+				  'required' => true,
555
+				),
556
+			  ),
557
+			),'get' => array(
558
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559
+			  'httpMethod' => 'GET',
560
+			  'parameters' => array(
561
+				'project' => array(
562
+				  'location' => 'path',
563
+				  'type' => 'string',
564
+				  'required' => true,
565
+				),
566
+				'instance' => array(
567
+				  'location' => 'path',
568
+				  'type' => 'string',
569
+				  'required' => true,
570
+				),
571
+				'sha1Fingerprint' => array(
572
+				  'location' => 'path',
573
+				  'type' => 'string',
574
+				  'required' => true,
575
+				),
576
+			  ),
577
+			),'insert' => array(
578
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts',
579
+			  'httpMethod' => 'POST',
580
+			  'parameters' => array(
581
+				'project' => array(
582
+				  'location' => 'path',
583
+				  'type' => 'string',
584
+				  'required' => true,
585
+				),
586
+				'instance' => array(
587
+				  'location' => 'path',
588
+				  'type' => 'string',
589
+				  'required' => true,
590
+				),
591
+			  ),
592
+			),'list' => array(
593
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts',
594
+			  'httpMethod' => 'GET',
595
+			  'parameters' => array(
596
+				'project' => array(
597
+				  'location' => 'path',
598
+				  'type' => 'string',
599
+				  'required' => true,
600
+				),
601
+				'instance' => array(
602
+				  'location' => 'path',
603
+				  'type' => 'string',
604
+				  'required' => true,
605
+				),
606
+			  ),
607
+			),
608
+		  )
609
+		)
610
+	);
611
+	$this->tiers = new Google_Service_SQLAdmin_Tiers_Resource(
612
+		$this,
613
+		$this->serviceName,
614
+		'tiers',
615
+		array(
616
+		  'methods' => array(
617
+			'list' => array(
618
+			  'path' => 'projects/{project}/tiers',
619
+			  'httpMethod' => 'GET',
620
+			  'parameters' => array(
621
+				'project' => array(
622
+				  'location' => 'path',
623
+				  'type' => 'string',
624
+				  'required' => true,
625
+				),
626
+			  ),
627
+			),
628
+		  )
629
+		)
630
+	);
631
+	$this->users = new Google_Service_SQLAdmin_Users_Resource(
632
+		$this,
633
+		$this->serviceName,
634
+		'users',
635
+		array(
636
+		  'methods' => array(
637
+			'delete' => array(
638
+			  'path' => 'projects/{project}/instances/{instance}/users',
639
+			  'httpMethod' => 'DELETE',
640
+			  'parameters' => array(
641
+				'project' => array(
642
+				  'location' => 'path',
643
+				  'type' => 'string',
644
+				  'required' => true,
645
+				),
646
+				'instance' => array(
647
+				  'location' => 'path',
648
+				  'type' => 'string',
649
+				  'required' => true,
650
+				),
651
+				'host' => array(
652
+				  'location' => 'query',
653
+				  'type' => 'string',
654
+				  'required' => true,
655
+				),
656
+				'name' => array(
657
+				  'location' => 'query',
658
+				  'type' => 'string',
659
+				  'required' => true,
660
+				),
661
+			  ),
662
+			),'insert' => array(
663
+			  'path' => 'projects/{project}/instances/{instance}/users',
664
+			  'httpMethod' => 'POST',
665
+			  'parameters' => array(
666
+				'project' => array(
667
+				  'location' => 'path',
668
+				  'type' => 'string',
669
+				  'required' => true,
670
+				),
671
+				'instance' => array(
672
+				  'location' => 'path',
673
+				  'type' => 'string',
674
+				  'required' => true,
675
+				),
676
+			  ),
677
+			),'list' => array(
678
+			  'path' => 'projects/{project}/instances/{instance}/users',
679
+			  'httpMethod' => 'GET',
680
+			  'parameters' => array(
681
+				'project' => array(
682
+				  'location' => 'path',
683
+				  'type' => 'string',
684
+				  'required' => true,
685
+				),
686
+				'instance' => array(
687
+				  'location' => 'path',
688
+				  'type' => 'string',
689
+				  'required' => true,
690
+				),
691
+			  ),
692
+			),'update' => array(
693
+			  'path' => 'projects/{project}/instances/{instance}/users',
694
+			  'httpMethod' => 'PUT',
695
+			  'parameters' => array(
696
+				'project' => array(
697
+				  'location' => 'path',
698
+				  'type' => 'string',
699
+				  'required' => true,
700
+				),
701
+				'instance' => array(
702
+				  'location' => 'path',
703
+				  'type' => 'string',
704
+				  'required' => true,
705
+				),
706
+				'host' => array(
707
+				  'location' => 'query',
708
+				  'type' => 'string',
709
+				  'required' => true,
710
+				),
711
+				'name' => array(
712
+				  'location' => 'query',
713
+				  'type' => 'string',
714
+				  'required' => true,
715
+				),
716
+			  ),
717
+			),
718
+		  )
719
+		)
720
+	);
721 721
   }
722 722
 }
723 723
 
@@ -746,9 +746,9 @@  discard block
 block discarded – undo
746 746
    */
747 747
   public function get($project, $instance, $id, $optParams = array())
748 748
   {
749
-    $params = array('project' => $project, 'instance' => $instance, 'id' => $id);
750
-    $params = array_merge($params, $optParams);
751
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_BackupRun");
749
+	$params = array('project' => $project, 'instance' => $instance, 'id' => $id);
750
+	$params = array_merge($params, $optParams);
751
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_BackupRun");
752 752
   }
753 753
 
754 754
   /**
@@ -768,9 +768,9 @@  discard block
 block discarded – undo
768 768
    */
769 769
   public function listBackupRuns($project, $instance, $optParams = array())
770 770
   {
771
-    $params = array('project' => $project, 'instance' => $instance);
772
-    $params = array_merge($params, $optParams);
773
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_BackupRunsListResponse");
771
+	$params = array('project' => $project, 'instance' => $instance);
772
+	$params = array_merge($params, $optParams);
773
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_BackupRunsListResponse");
774 774
   }
775 775
 }
776 776
 
@@ -798,9 +798,9 @@  discard block
 block discarded – undo
798 798
    */
799 799
   public function delete($project, $instance, $database, $optParams = array())
800 800
   {
801
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database);
802
-    $params = array_merge($params, $optParams);
803
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
801
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database);
802
+	$params = array_merge($params, $optParams);
803
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
804 804
   }
805 805
 
806 806
   /**
@@ -816,9 +816,9 @@  discard block
 block discarded – undo
816 816
    */
817 817
   public function get($project, $instance, $database, $optParams = array())
818 818
   {
819
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database);
820
-    $params = array_merge($params, $optParams);
821
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_Database");
819
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database);
820
+	$params = array_merge($params, $optParams);
821
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_Database");
822 822
   }
823 823
 
824 824
   /**
@@ -834,9 +834,9 @@  discard block
 block discarded – undo
834 834
    */
835 835
   public function insert($project, $instance, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
836 836
   {
837
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
838
-    $params = array_merge($params, $optParams);
839
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
837
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
838
+	$params = array_merge($params, $optParams);
839
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
840 840
   }
841 841
 
842 842
   /**
@@ -852,9 +852,9 @@  discard block
 block discarded – undo
852 852
    */
853 853
   public function listDatabases($project, $instance, $optParams = array())
854 854
   {
855
-    $params = array('project' => $project, 'instance' => $instance);
856
-    $params = array_merge($params, $optParams);
857
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_DatabasesListResponse");
855
+	$params = array('project' => $project, 'instance' => $instance);
856
+	$params = array_merge($params, $optParams);
857
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_DatabasesListResponse");
858 858
   }
859 859
 
860 860
   /**
@@ -871,9 +871,9 @@  discard block
 block discarded – undo
871 871
    */
872 872
   public function patch($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
873 873
   {
874
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
875
-    $params = array_merge($params, $optParams);
876
-    return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
874
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
875
+	$params = array_merge($params, $optParams);
876
+	return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
877 877
   }
878 878
 
879 879
   /**
@@ -890,9 +890,9 @@  discard block
 block discarded – undo
890 890
    */
891 891
   public function update($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
892 892
   {
893
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
894
-    $params = array_merge($params, $optParams);
895
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
893
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
894
+	$params = array_merge($params, $optParams);
895
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
896 896
   }
897 897
 }
898 898
 
@@ -916,9 +916,9 @@  discard block
 block discarded – undo
916 916
    */
917 917
   public function listFlags($optParams = array())
918 918
   {
919
-    $params = array();
920
-    $params = array_merge($params, $optParams);
921
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_FlagsListResponse");
919
+	$params = array();
920
+	$params = array_merge($params, $optParams);
921
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_FlagsListResponse");
922 922
   }
923 923
 }
924 924
 
@@ -947,9 +947,9 @@  discard block
 block discarded – undo
947 947
    */
948 948
   public function cloneInstances($project, $instance, Google_Service_SQLAdmin_InstancesCloneRequest $postBody, $optParams = array())
949 949
   {
950
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
951
-    $params = array_merge($params, $optParams);
952
-    return $this->call('clone', array($params), "Google_Service_SQLAdmin_Operation");
950
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
951
+	$params = array_merge($params, $optParams);
952
+	return $this->call('clone', array($params), "Google_Service_SQLAdmin_Operation");
953 953
   }
954 954
 
955 955
   /**
@@ -964,9 +964,9 @@  discard block
 block discarded – undo
964 964
    */
965 965
   public function delete($project, $instance, $optParams = array())
966 966
   {
967
-    $params = array('project' => $project, 'instance' => $instance);
968
-    $params = array_merge($params, $optParams);
969
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
967
+	$params = array('project' => $project, 'instance' => $instance);
968
+	$params = array_merge($params, $optParams);
969
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
970 970
   }
971 971
 
972 972
   /**
@@ -983,9 +983,9 @@  discard block
 block discarded – undo
983 983
    */
984 984
   public function export($project, $instance, Google_Service_SQLAdmin_InstancesExportRequest $postBody, $optParams = array())
985 985
   {
986
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
987
-    $params = array_merge($params, $optParams);
988
-    return $this->call('export', array($params), "Google_Service_SQLAdmin_Operation");
986
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
987
+	$params = array_merge($params, $optParams);
988
+	return $this->call('export', array($params), "Google_Service_SQLAdmin_Operation");
989 989
   }
990 990
 
991 991
   /**
@@ -1000,9 +1000,9 @@  discard block
 block discarded – undo
1000 1000
    */
1001 1001
   public function get($project, $instance, $optParams = array())
1002 1002
   {
1003
-    $params = array('project' => $project, 'instance' => $instance);
1004
-    $params = array_merge($params, $optParams);
1005
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_DatabaseInstance");
1003
+	$params = array('project' => $project, 'instance' => $instance);
1004
+	$params = array_merge($params, $optParams);
1005
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_DatabaseInstance");
1006 1006
   }
1007 1007
 
1008 1008
   /**
@@ -1018,9 +1018,9 @@  discard block
 block discarded – undo
1018 1018
    */
1019 1019
   public function import($project, $instance, Google_Service_SQLAdmin_InstancesImportRequest $postBody, $optParams = array())
1020 1020
   {
1021
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1022
-    $params = array_merge($params, $optParams);
1023
-    return $this->call('import', array($params), "Google_Service_SQLAdmin_Operation");
1021
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1022
+	$params = array_merge($params, $optParams);
1023
+	return $this->call('import', array($params), "Google_Service_SQLAdmin_Operation");
1024 1024
   }
1025 1025
 
1026 1026
   /**
@@ -1034,9 +1034,9 @@  discard block
 block discarded – undo
1034 1034
    */
1035 1035
   public function insert($project, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1036 1036
   {
1037
-    $params = array('project' => $project, 'postBody' => $postBody);
1038
-    $params = array_merge($params, $optParams);
1039
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1037
+	$params = array('project' => $project, 'postBody' => $postBody);
1038
+	$params = array_merge($params, $optParams);
1039
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1040 1040
   }
1041 1041
 
1042 1042
   /**
@@ -1055,9 +1055,9 @@  discard block
 block discarded – undo
1055 1055
    */
1056 1056
   public function listInstances($project, $optParams = array())
1057 1057
   {
1058
-    $params = array('project' => $project);
1059
-    $params = array_merge($params, $optParams);
1060
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_InstancesListResponse");
1058
+	$params = array('project' => $project);
1059
+	$params = array_merge($params, $optParams);
1060
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_InstancesListResponse");
1061 1061
   }
1062 1062
 
1063 1063
   /**
@@ -1075,9 +1075,9 @@  discard block
 block discarded – undo
1075 1075
    */
1076 1076
   public function patch($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1077 1077
   {
1078
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1079
-    $params = array_merge($params, $optParams);
1080
-    return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
1078
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1079
+	$params = array_merge($params, $optParams);
1080
+	return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
1081 1081
   }
1082 1082
 
1083 1083
   /**
@@ -1091,9 +1091,9 @@  discard block
 block discarded – undo
1091 1091
    */
1092 1092
   public function promoteReplica($project, $instance, $optParams = array())
1093 1093
   {
1094
-    $params = array('project' => $project, 'instance' => $instance);
1095
-    $params = array_merge($params, $optParams);
1096
-    return $this->call('promoteReplica', array($params), "Google_Service_SQLAdmin_Operation");
1094
+	$params = array('project' => $project, 'instance' => $instance);
1095
+	$params = array_merge($params, $optParams);
1096
+	return $this->call('promoteReplica', array($params), "Google_Service_SQLAdmin_Operation");
1097 1097
   }
1098 1098
 
1099 1099
   /**
@@ -1110,9 +1110,9 @@  discard block
 block discarded – undo
1110 1110
    */
1111 1111
   public function resetSslConfig($project, $instance, $optParams = array())
1112 1112
   {
1113
-    $params = array('project' => $project, 'instance' => $instance);
1114
-    $params = array_merge($params, $optParams);
1115
-    return $this->call('resetSslConfig', array($params), "Google_Service_SQLAdmin_Operation");
1113
+	$params = array('project' => $project, 'instance' => $instance);
1114
+	$params = array_merge($params, $optParams);
1115
+	return $this->call('resetSslConfig', array($params), "Google_Service_SQLAdmin_Operation");
1116 1116
   }
1117 1117
 
1118 1118
   /**
@@ -1127,9 +1127,9 @@  discard block
 block discarded – undo
1127 1127
    */
1128 1128
   public function restart($project, $instance, $optParams = array())
1129 1129
   {
1130
-    $params = array('project' => $project, 'instance' => $instance);
1131
-    $params = array_merge($params, $optParams);
1132
-    return $this->call('restart', array($params), "Google_Service_SQLAdmin_Operation");
1130
+	$params = array('project' => $project, 'instance' => $instance);
1131
+	$params = array_merge($params, $optParams);
1132
+	return $this->call('restart', array($params), "Google_Service_SQLAdmin_Operation");
1133 1133
   }
1134 1134
 
1135 1135
   /**
@@ -1144,9 +1144,9 @@  discard block
 block discarded – undo
1144 1144
    */
1145 1145
   public function restoreBackup($project, $instance, Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody, $optParams = array())
1146 1146
   {
1147
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1148
-    $params = array_merge($params, $optParams);
1149
-    return $this->call('restoreBackup', array($params), "Google_Service_SQLAdmin_Operation");
1147
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1148
+	$params = array_merge($params, $optParams);
1149
+	return $this->call('restoreBackup', array($params), "Google_Service_SQLAdmin_Operation");
1150 1150
   }
1151 1151
 
1152 1152
   /**
@@ -1159,9 +1159,9 @@  discard block
 block discarded – undo
1159 1159
    */
1160 1160
   public function startReplica($project, $instance, $optParams = array())
1161 1161
   {
1162
-    $params = array('project' => $project, 'instance' => $instance);
1163
-    $params = array_merge($params, $optParams);
1164
-    return $this->call('startReplica', array($params), "Google_Service_SQLAdmin_Operation");
1162
+	$params = array('project' => $project, 'instance' => $instance);
1163
+	$params = array_merge($params, $optParams);
1164
+	return $this->call('startReplica', array($params), "Google_Service_SQLAdmin_Operation");
1165 1165
   }
1166 1166
 
1167 1167
   /**
@@ -1174,9 +1174,9 @@  discard block
 block discarded – undo
1174 1174
    */
1175 1175
   public function stopReplica($project, $instance, $optParams = array())
1176 1176
   {
1177
-    $params = array('project' => $project, 'instance' => $instance);
1178
-    $params = array_merge($params, $optParams);
1179
-    return $this->call('stopReplica', array($params), "Google_Service_SQLAdmin_Operation");
1177
+	$params = array('project' => $project, 'instance' => $instance);
1178
+	$params = array_merge($params, $optParams);
1179
+	return $this->call('stopReplica', array($params), "Google_Service_SQLAdmin_Operation");
1180 1180
   }
1181 1181
 
1182 1182
   /**
@@ -1193,9 +1193,9 @@  discard block
 block discarded – undo
1193 1193
    */
1194 1194
   public function update($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1195 1195
   {
1196
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1197
-    $params = array_merge($params, $optParams);
1198
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1196
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1197
+	$params = array_merge($params, $optParams);
1198
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1199 1199
   }
1200 1200
 }
1201 1201
 
@@ -1221,9 +1221,9 @@  discard block
 block discarded – undo
1221 1221
    */
1222 1222
   public function get($project, $operation, $optParams = array())
1223 1223
   {
1224
-    $params = array('project' => $project, 'operation' => $operation);
1225
-    $params = array_merge($params, $optParams);
1226
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_Operation");
1224
+	$params = array('project' => $project, 'operation' => $operation);
1225
+	$params = array_merge($params, $optParams);
1226
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_Operation");
1227 1227
   }
1228 1228
 
1229 1229
   /**
@@ -1243,9 +1243,9 @@  discard block
 block discarded – undo
1243 1243
    */
1244 1244
   public function listOperations($project, $instance, $optParams = array())
1245 1245
   {
1246
-    $params = array('project' => $project, 'instance' => $instance);
1247
-    $params = array_merge($params, $optParams);
1248
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_OperationsListResponse");
1246
+	$params = array('project' => $project, 'instance' => $instance);
1247
+	$params = array_merge($params, $optParams);
1248
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_OperationsListResponse");
1249 1249
   }
1250 1250
 }
1251 1251
 
@@ -1274,9 +1274,9 @@  discard block
 block discarded – undo
1274 1274
    */
1275 1275
   public function delete($project, $instance, $sha1Fingerprint, $optParams = array())
1276 1276
   {
1277
-    $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1278
-    $params = array_merge($params, $optParams);
1279
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1277
+	$params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1278
+	$params = array_merge($params, $optParams);
1279
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1280 1280
   }
1281 1281
 
1282 1282
   /**
@@ -1293,9 +1293,9 @@  discard block
 block discarded – undo
1293 1293
    */
1294 1294
   public function get($project, $instance, $sha1Fingerprint, $optParams = array())
1295 1295
   {
1296
-    $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1297
-    $params = array_merge($params, $optParams);
1298
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_SslCert");
1296
+	$params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1297
+	$params = array_merge($params, $optParams);
1298
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_SslCert");
1299 1299
   }
1300 1300
 
1301 1301
   /**
@@ -1313,9 +1313,9 @@  discard block
 block discarded – undo
1313 1313
    */
1314 1314
   public function insert($project, $instance, Google_Service_SQLAdmin_SslCertsInsertRequest $postBody, $optParams = array())
1315 1315
   {
1316
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1317
-    $params = array_merge($params, $optParams);
1318
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_SslCertsInsertResponse");
1316
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1317
+	$params = array_merge($params, $optParams);
1318
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_SslCertsInsertResponse");
1319 1319
   }
1320 1320
 
1321 1321
   /**
@@ -1331,9 +1331,9 @@  discard block
 block discarded – undo
1331 1331
    */
1332 1332
   public function listSslCerts($project, $instance, $optParams = array())
1333 1333
   {
1334
-    $params = array('project' => $project, 'instance' => $instance);
1335
-    $params = array_merge($params, $optParams);
1336
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_SslCertsListResponse");
1334
+	$params = array('project' => $project, 'instance' => $instance);
1335
+	$params = array_merge($params, $optParams);
1336
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_SslCertsListResponse");
1337 1337
   }
1338 1338
 }
1339 1339
 
@@ -1358,9 +1358,9 @@  discard block
 block discarded – undo
1358 1358
    */
1359 1359
   public function listTiers($project, $optParams = array())
1360 1360
   {
1361
-    $params = array('project' => $project);
1362
-    $params = array_merge($params, $optParams);
1363
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_TiersListResponse");
1361
+	$params = array('project' => $project);
1362
+	$params = array_merge($params, $optParams);
1363
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_TiersListResponse");
1364 1364
   }
1365 1365
 }
1366 1366
 
@@ -1388,9 +1388,9 @@  discard block
 block discarded – undo
1388 1388
    */
1389 1389
   public function delete($project, $instance, $host, $name, $optParams = array())
1390 1390
   {
1391
-    $params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name);
1392
-    $params = array_merge($params, $optParams);
1393
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1391
+	$params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name);
1392
+	$params = array_merge($params, $optParams);
1393
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1394 1394
   }
1395 1395
 
1396 1396
   /**
@@ -1405,9 +1405,9 @@  discard block
 block discarded – undo
1405 1405
    */
1406 1406
   public function insert($project, $instance, Google_Service_SQLAdmin_User $postBody, $optParams = array())
1407 1407
   {
1408
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1409
-    $params = array_merge($params, $optParams);
1410
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1408
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1409
+	$params = array_merge($params, $optParams);
1410
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1411 1411
   }
1412 1412
 
1413 1413
   /**
@@ -1421,9 +1421,9 @@  discard block
 block discarded – undo
1421 1421
    */
1422 1422
   public function listUsers($project, $instance, $optParams = array())
1423 1423
   {
1424
-    $params = array('project' => $project, 'instance' => $instance);
1425
-    $params = array_merge($params, $optParams);
1426
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_UsersListResponse");
1424
+	$params = array('project' => $project, 'instance' => $instance);
1425
+	$params = array_merge($params, $optParams);
1426
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_UsersListResponse");
1427 1427
   }
1428 1428
 
1429 1429
   /**
@@ -1440,9 +1440,9 @@  discard block
 block discarded – undo
1440 1440
    */
1441 1441
   public function update($project, $instance, $host, $name, Google_Service_SQLAdmin_User $postBody, $optParams = array())
1442 1442
   {
1443
-    $params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name, 'postBody' => $postBody);
1444
-    $params = array_merge($params, $optParams);
1445
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1443
+	$params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name, 'postBody' => $postBody);
1444
+	$params = array_merge($params, $optParams);
1445
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1446 1446
   }
1447 1447
 }
1448 1448
 
@@ -1461,35 +1461,35 @@  discard block
 block discarded – undo
1461 1461
 
1462 1462
   public function setExpirationTime($expirationTime)
1463 1463
   {
1464
-    $this->expirationTime = $expirationTime;
1464
+	$this->expirationTime = $expirationTime;
1465 1465
   }
1466 1466
   public function getExpirationTime()
1467 1467
   {
1468
-    return $this->expirationTime;
1468
+	return $this->expirationTime;
1469 1469
   }
1470 1470
   public function setKind($kind)
1471 1471
   {
1472
-    $this->kind = $kind;
1472
+	$this->kind = $kind;
1473 1473
   }
1474 1474
   public function getKind()
1475 1475
   {
1476
-    return $this->kind;
1476
+	return $this->kind;
1477 1477
   }
1478 1478
   public function setName($name)
1479 1479
   {
1480
-    $this->name = $name;
1480
+	$this->name = $name;
1481 1481
   }
1482 1482
   public function getName()
1483 1483
   {
1484
-    return $this->name;
1484
+	return $this->name;
1485 1485
   }
1486 1486
   public function setValue($value)
1487 1487
   {
1488
-    $this->value = $value;
1488
+	$this->value = $value;
1489 1489
   }
1490 1490
   public function getValue()
1491 1491
   {
1492
-    return $this->value;
1492
+	return $this->value;
1493 1493
   }
1494 1494
 }
1495 1495
 
@@ -1505,35 +1505,35 @@  discard block
 block discarded – undo
1505 1505
 
1506 1506
   public function setBinaryLogEnabled($binaryLogEnabled)
1507 1507
   {
1508
-    $this->binaryLogEnabled = $binaryLogEnabled;
1508
+	$this->binaryLogEnabled = $binaryLogEnabled;
1509 1509
   }
1510 1510
   public function getBinaryLogEnabled()
1511 1511
   {
1512
-    return $this->binaryLogEnabled;
1512
+	return $this->binaryLogEnabled;
1513 1513
   }
1514 1514
   public function setEnabled($enabled)
1515 1515
   {
1516
-    $this->enabled = $enabled;
1516
+	$this->enabled = $enabled;
1517 1517
   }
1518 1518
   public function getEnabled()
1519 1519
   {
1520
-    return $this->enabled;
1520
+	return $this->enabled;
1521 1521
   }
1522 1522
   public function setKind($kind)
1523 1523
   {
1524
-    $this->kind = $kind;
1524
+	$this->kind = $kind;
1525 1525
   }
1526 1526
   public function getKind()
1527 1527
   {
1528
-    return $this->kind;
1528
+	return $this->kind;
1529 1529
   }
1530 1530
   public function setStartTime($startTime)
1531 1531
   {
1532
-    $this->startTime = $startTime;
1532
+	$this->startTime = $startTime;
1533 1533
   }
1534 1534
   public function getStartTime()
1535 1535
   {
1536
-    return $this->startTime;
1536
+	return $this->startTime;
1537 1537
   }
1538 1538
 }
1539 1539
 
@@ -1556,83 +1556,83 @@  discard block
 block discarded – undo
1556 1556
 
1557 1557
   public function setEndTime($endTime)
1558 1558
   {
1559
-    $this->endTime = $endTime;
1559
+	$this->endTime = $endTime;
1560 1560
   }
1561 1561
   public function getEndTime()
1562 1562
   {
1563
-    return $this->endTime;
1563
+	return $this->endTime;
1564 1564
   }
1565 1565
   public function setEnqueuedTime($enqueuedTime)
1566 1566
   {
1567
-    $this->enqueuedTime = $enqueuedTime;
1567
+	$this->enqueuedTime = $enqueuedTime;
1568 1568
   }
1569 1569
   public function getEnqueuedTime()
1570 1570
   {
1571
-    return $this->enqueuedTime;
1571
+	return $this->enqueuedTime;
1572 1572
   }
1573 1573
   public function setError(Google_Service_SQLAdmin_OperationError $error)
1574 1574
   {
1575
-    $this->error = $error;
1575
+	$this->error = $error;
1576 1576
   }
1577 1577
   public function getError()
1578 1578
   {
1579
-    return $this->error;
1579
+	return $this->error;
1580 1580
   }
1581 1581
   public function setId($id)
1582 1582
   {
1583
-    $this->id = $id;
1583
+	$this->id = $id;
1584 1584
   }
1585 1585
   public function getId()
1586 1586
   {
1587
-    return $this->id;
1587
+	return $this->id;
1588 1588
   }
1589 1589
   public function setInstance($instance)
1590 1590
   {
1591
-    $this->instance = $instance;
1591
+	$this->instance = $instance;
1592 1592
   }
1593 1593
   public function getInstance()
1594 1594
   {
1595
-    return $this->instance;
1595
+	return $this->instance;
1596 1596
   }
1597 1597
   public function setKind($kind)
1598 1598
   {
1599
-    $this->kind = $kind;
1599
+	$this->kind = $kind;
1600 1600
   }
1601 1601
   public function getKind()
1602 1602
   {
1603
-    return $this->kind;
1603
+	return $this->kind;
1604 1604
   }
1605 1605
   public function setSelfLink($selfLink)
1606 1606
   {
1607
-    $this->selfLink = $selfLink;
1607
+	$this->selfLink = $selfLink;
1608 1608
   }
1609 1609
   public function getSelfLink()
1610 1610
   {
1611
-    return $this->selfLink;
1611
+	return $this->selfLink;
1612 1612
   }
1613 1613
   public function setStartTime($startTime)
1614 1614
   {
1615
-    $this->startTime = $startTime;
1615
+	$this->startTime = $startTime;
1616 1616
   }
1617 1617
   public function getStartTime()
1618 1618
   {
1619
-    return $this->startTime;
1619
+	return $this->startTime;
1620 1620
   }
1621 1621
   public function setStatus($status)
1622 1622
   {
1623
-    $this->status = $status;
1623
+	$this->status = $status;
1624 1624
   }
1625 1625
   public function getStatus()
1626 1626
   {
1627
-    return $this->status;
1627
+	return $this->status;
1628 1628
   }
1629 1629
   public function setWindowStartTime($windowStartTime)
1630 1630
   {
1631
-    $this->windowStartTime = $windowStartTime;
1631
+	$this->windowStartTime = $windowStartTime;
1632 1632
   }
1633 1633
   public function getWindowStartTime()
1634 1634
   {
1635
-    return $this->windowStartTime;
1635
+	return $this->windowStartTime;
1636 1636
   }
1637 1637
 }
1638 1638
 
@@ -1649,27 +1649,27 @@  discard block
 block discarded – undo
1649 1649
 
1650 1650
   public function setItems($items)
1651 1651
   {
1652
-    $this->items = $items;
1652
+	$this->items = $items;
1653 1653
   }
1654 1654
   public function getItems()
1655 1655
   {
1656
-    return $this->items;
1656
+	return $this->items;
1657 1657
   }
1658 1658
   public function setKind($kind)
1659 1659
   {
1660
-    $this->kind = $kind;
1660
+	$this->kind = $kind;
1661 1661
   }
1662 1662
   public function getKind()
1663 1663
   {
1664
-    return $this->kind;
1664
+	return $this->kind;
1665 1665
   }
1666 1666
   public function setNextPageToken($nextPageToken)
1667 1667
   {
1668
-    $this->nextPageToken = $nextPageToken;
1668
+	$this->nextPageToken = $nextPageToken;
1669 1669
   }
1670 1670
   public function getNextPageToken()
1671 1671
   {
1672
-    return $this->nextPageToken;
1672
+	return $this->nextPageToken;
1673 1673
   }
1674 1674
 }
1675 1675
 
@@ -1684,27 +1684,27 @@  discard block
 block discarded – undo
1684 1684
 
1685 1685
   public function setBinLogFileName($binLogFileName)
1686 1686
   {
1687
-    $this->binLogFileName = $binLogFileName;
1687
+	$this->binLogFileName = $binLogFileName;
1688 1688
   }
1689 1689
   public function getBinLogFileName()
1690 1690
   {
1691
-    return $this->binLogFileName;
1691
+	return $this->binLogFileName;
1692 1692
   }
1693 1693
   public function setBinLogPosition($binLogPosition)
1694 1694
   {
1695
-    $this->binLogPosition = $binLogPosition;
1695
+	$this->binLogPosition = $binLogPosition;
1696 1696
   }
1697 1697
   public function getBinLogPosition()
1698 1698
   {
1699
-    return $this->binLogPosition;
1699
+	return $this->binLogPosition;
1700 1700
   }
1701 1701
   public function setKind($kind)
1702 1702
   {
1703
-    $this->kind = $kind;
1703
+	$this->kind = $kind;
1704 1704
   }
1705 1705
   public function getKind()
1706 1706
   {
1707
-    return $this->kind;
1707
+	return $this->kind;
1708 1708
   }
1709 1709
 }
1710 1710
 
@@ -1720,27 +1720,27 @@  discard block
 block discarded – undo
1720 1720
 
1721 1721
   public function setBinLogCoordinates(Google_Service_SQLAdmin_BinLogCoordinates $binLogCoordinates)
1722 1722
   {
1723
-    $this->binLogCoordinates = $binLogCoordinates;
1723
+	$this->binLogCoordinates = $binLogCoordinates;
1724 1724
   }
1725 1725
   public function getBinLogCoordinates()
1726 1726
   {
1727
-    return $this->binLogCoordinates;
1727
+	return $this->binLogCoordinates;
1728 1728
   }
1729 1729
   public function setDestinationInstanceName($destinationInstanceName)
1730 1730
   {
1731
-    $this->destinationInstanceName = $destinationInstanceName;
1731
+	$this->destinationInstanceName = $destinationInstanceName;
1732 1732
   }
1733 1733
   public function getDestinationInstanceName()
1734 1734
   {
1735
-    return $this->destinationInstanceName;
1735
+	return $this->destinationInstanceName;
1736 1736
   }
1737 1737
   public function setKind($kind)
1738 1738
   {
1739
-    $this->kind = $kind;
1739
+	$this->kind = $kind;
1740 1740
   }
1741 1741
   public function getKind()
1742 1742
   {
1743
-    return $this->kind;
1743
+	return $this->kind;
1744 1744
   }
1745 1745
 }
1746 1746
 
@@ -1760,67 +1760,67 @@  discard block
 block discarded – undo
1760 1760
 
1761 1761
   public function setCharset($charset)
1762 1762
   {
1763
-    $this->charset = $charset;
1763
+	$this->charset = $charset;
1764 1764
   }
1765 1765
   public function getCharset()
1766 1766
   {
1767
-    return $this->charset;
1767
+	return $this->charset;
1768 1768
   }
1769 1769
   public function setCollation($collation)
1770 1770
   {
1771
-    $this->collation = $collation;
1771
+	$this->collation = $collation;
1772 1772
   }
1773 1773
   public function getCollation()
1774 1774
   {
1775
-    return $this->collation;
1775
+	return $this->collation;
1776 1776
   }
1777 1777
   public function setEtag($etag)
1778 1778
   {
1779
-    $this->etag = $etag;
1779
+	$this->etag = $etag;
1780 1780
   }
1781 1781
   public function getEtag()
1782 1782
   {
1783
-    return $this->etag;
1783
+	return $this->etag;
1784 1784
   }
1785 1785
   public function setInstance($instance)
1786 1786
   {
1787
-    $this->instance = $instance;
1787
+	$this->instance = $instance;
1788 1788
   }
1789 1789
   public function getInstance()
1790 1790
   {
1791
-    return $this->instance;
1791
+	return $this->instance;
1792 1792
   }
1793 1793
   public function setKind($kind)
1794 1794
   {
1795
-    $this->kind = $kind;
1795
+	$this->kind = $kind;
1796 1796
   }
1797 1797
   public function getKind()
1798 1798
   {
1799
-    return $this->kind;
1799
+	return $this->kind;
1800 1800
   }
1801 1801
   public function setName($name)
1802 1802
   {
1803
-    $this->name = $name;
1803
+	$this->name = $name;
1804 1804
   }
1805 1805
   public function getName()
1806 1806
   {
1807
-    return $this->name;
1807
+	return $this->name;
1808 1808
   }
1809 1809
   public function setProject($project)
1810 1810
   {
1811
-    $this->project = $project;
1811
+	$this->project = $project;
1812 1812
   }
1813 1813
   public function getProject()
1814 1814
   {
1815
-    return $this->project;
1815
+	return $this->project;
1816 1816
   }
1817 1817
   public function setSelfLink($selfLink)
1818 1818
   {
1819
-    $this->selfLink = $selfLink;
1819
+	$this->selfLink = $selfLink;
1820 1820
   }
1821 1821
   public function getSelfLink()
1822 1822
   {
1823
-    return $this->selfLink;
1823
+	return $this->selfLink;
1824 1824
   }
1825 1825
 }
1826 1826
 
@@ -1834,19 +1834,19 @@  discard block
 block discarded – undo
1834 1834
 
1835 1835
   public function setName($name)
1836 1836
   {
1837
-    $this->name = $name;
1837
+	$this->name = $name;
1838 1838
   }
1839 1839
   public function getName()
1840 1840
   {
1841
-    return $this->name;
1841
+	return $this->name;
1842 1842
   }
1843 1843
   public function setValue($value)
1844 1844
   {
1845
-    $this->value = $value;
1845
+	$this->value = $value;
1846 1846
   }
1847 1847
   public function getValue()
1848 1848
   {
1849
-    return $this->value;
1849
+	return $this->value;
1850 1850
   }
1851 1851
 }
1852 1852
 
@@ -1884,163 +1884,163 @@  discard block
 block discarded – undo
1884 1884
 
1885 1885
   public function setCurrentDiskSize($currentDiskSize)
1886 1886
   {
1887
-    $this->currentDiskSize = $currentDiskSize;
1887
+	$this->currentDiskSize = $currentDiskSize;
1888 1888
   }
1889 1889
   public function getCurrentDiskSize()
1890 1890
   {
1891
-    return $this->currentDiskSize;
1891
+	return $this->currentDiskSize;
1892 1892
   }
1893 1893
   public function setDatabaseVersion($databaseVersion)
1894 1894
   {
1895
-    $this->databaseVersion = $databaseVersion;
1895
+	$this->databaseVersion = $databaseVersion;
1896 1896
   }
1897 1897
   public function getDatabaseVersion()
1898 1898
   {
1899
-    return $this->databaseVersion;
1899
+	return $this->databaseVersion;
1900 1900
   }
1901 1901
   public function setEtag($etag)
1902 1902
   {
1903
-    $this->etag = $etag;
1903
+	$this->etag = $etag;
1904 1904
   }
1905 1905
   public function getEtag()
1906 1906
   {
1907
-    return $this->etag;
1907
+	return $this->etag;
1908 1908
   }
1909 1909
   public function setInstanceType($instanceType)
1910 1910
   {
1911
-    $this->instanceType = $instanceType;
1911
+	$this->instanceType = $instanceType;
1912 1912
   }
1913 1913
   public function getInstanceType()
1914 1914
   {
1915
-    return $this->instanceType;
1915
+	return $this->instanceType;
1916 1916
   }
1917 1917
   public function setIpAddresses($ipAddresses)
1918 1918
   {
1919
-    $this->ipAddresses = $ipAddresses;
1919
+	$this->ipAddresses = $ipAddresses;
1920 1920
   }
1921 1921
   public function getIpAddresses()
1922 1922
   {
1923
-    return $this->ipAddresses;
1923
+	return $this->ipAddresses;
1924 1924
   }
1925 1925
   public function setIpv6Address($ipv6Address)
1926 1926
   {
1927
-    $this->ipv6Address = $ipv6Address;
1927
+	$this->ipv6Address = $ipv6Address;
1928 1928
   }
1929 1929
   public function getIpv6Address()
1930 1930
   {
1931
-    return $this->ipv6Address;
1931
+	return $this->ipv6Address;
1932 1932
   }
1933 1933
   public function setKind($kind)
1934 1934
   {
1935
-    $this->kind = $kind;
1935
+	$this->kind = $kind;
1936 1936
   }
1937 1937
   public function getKind()
1938 1938
   {
1939
-    return $this->kind;
1939
+	return $this->kind;
1940 1940
   }
1941 1941
   public function setMasterInstanceName($masterInstanceName)
1942 1942
   {
1943
-    $this->masterInstanceName = $masterInstanceName;
1943
+	$this->masterInstanceName = $masterInstanceName;
1944 1944
   }
1945 1945
   public function getMasterInstanceName()
1946 1946
   {
1947
-    return $this->masterInstanceName;
1947
+	return $this->masterInstanceName;
1948 1948
   }
1949 1949
   public function setMaxDiskSize($maxDiskSize)
1950 1950
   {
1951
-    $this->maxDiskSize = $maxDiskSize;
1951
+	$this->maxDiskSize = $maxDiskSize;
1952 1952
   }
1953 1953
   public function getMaxDiskSize()
1954 1954
   {
1955
-    return $this->maxDiskSize;
1955
+	return $this->maxDiskSize;
1956 1956
   }
1957 1957
   public function setName($name)
1958 1958
   {
1959
-    $this->name = $name;
1959
+	$this->name = $name;
1960 1960
   }
1961 1961
   public function getName()
1962 1962
   {
1963
-    return $this->name;
1963
+	return $this->name;
1964 1964
   }
1965 1965
   public function setOnPremisesConfiguration(Google_Service_SQLAdmin_OnPremisesConfiguration $onPremisesConfiguration)
1966 1966
   {
1967
-    $this->onPremisesConfiguration = $onPremisesConfiguration;
1967
+	$this->onPremisesConfiguration = $onPremisesConfiguration;
1968 1968
   }
1969 1969
   public function getOnPremisesConfiguration()
1970 1970
   {
1971
-    return $this->onPremisesConfiguration;
1971
+	return $this->onPremisesConfiguration;
1972 1972
   }
1973 1973
   public function setProject($project)
1974 1974
   {
1975
-    $this->project = $project;
1975
+	$this->project = $project;
1976 1976
   }
1977 1977
   public function getProject()
1978 1978
   {
1979
-    return $this->project;
1979
+	return $this->project;
1980 1980
   }
1981 1981
   public function setRegion($region)
1982 1982
   {
1983
-    $this->region = $region;
1983
+	$this->region = $region;
1984 1984
   }
1985 1985
   public function getRegion()
1986 1986
   {
1987
-    return $this->region;
1987
+	return $this->region;
1988 1988
   }
1989 1989
   public function setReplicaConfiguration(Google_Service_SQLAdmin_ReplicaConfiguration $replicaConfiguration)
1990 1990
   {
1991
-    $this->replicaConfiguration = $replicaConfiguration;
1991
+	$this->replicaConfiguration = $replicaConfiguration;
1992 1992
   }
1993 1993
   public function getReplicaConfiguration()
1994 1994
   {
1995
-    return $this->replicaConfiguration;
1995
+	return $this->replicaConfiguration;
1996 1996
   }
1997 1997
   public function setReplicaNames($replicaNames)
1998 1998
   {
1999
-    $this->replicaNames = $replicaNames;
1999
+	$this->replicaNames = $replicaNames;
2000 2000
   }
2001 2001
   public function getReplicaNames()
2002 2002
   {
2003
-    return $this->replicaNames;
2003
+	return $this->replicaNames;
2004 2004
   }
2005 2005
   public function setSelfLink($selfLink)
2006 2006
   {
2007
-    $this->selfLink = $selfLink;
2007
+	$this->selfLink = $selfLink;
2008 2008
   }
2009 2009
   public function getSelfLink()
2010 2010
   {
2011
-    return $this->selfLink;
2011
+	return $this->selfLink;
2012 2012
   }
2013 2013
   public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert)
2014 2014
   {
2015
-    $this->serverCaCert = $serverCaCert;
2015
+	$this->serverCaCert = $serverCaCert;
2016 2016
   }
2017 2017
   public function getServerCaCert()
2018 2018
   {
2019
-    return $this->serverCaCert;
2019
+	return $this->serverCaCert;
2020 2020
   }
2021 2021
   public function setServiceAccountEmailAddress($serviceAccountEmailAddress)
2022 2022
   {
2023
-    $this->serviceAccountEmailAddress = $serviceAccountEmailAddress;
2023
+	$this->serviceAccountEmailAddress = $serviceAccountEmailAddress;
2024 2024
   }
2025 2025
   public function getServiceAccountEmailAddress()
2026 2026
   {
2027
-    return $this->serviceAccountEmailAddress;
2027
+	return $this->serviceAccountEmailAddress;
2028 2028
   }
2029 2029
   public function setSettings(Google_Service_SQLAdmin_Settings $settings)
2030 2030
   {
2031
-    $this->settings = $settings;
2031
+	$this->settings = $settings;
2032 2032
   }
2033 2033
   public function getSettings()
2034 2034
   {
2035
-    return $this->settings;
2035
+	return $this->settings;
2036 2036
   }
2037 2037
   public function setState($state)
2038 2038
   {
2039
-    $this->state = $state;
2039
+	$this->state = $state;
2040 2040
   }
2041 2041
   public function getState()
2042 2042
   {
2043
-    return $this->state;
2043
+	return $this->state;
2044 2044
   }
2045 2045
 }
2046 2046
 
@@ -2056,19 +2056,19 @@  discard block
 block discarded – undo
2056 2056
 
2057 2057
   public function setItems($items)
2058 2058
   {
2059
-    $this->items = $items;
2059
+	$this->items = $items;
2060 2060
   }
2061 2061
   public function getItems()
2062 2062
   {
2063
-    return $this->items;
2063
+	return $this->items;
2064 2064
   }
2065 2065
   public function setKind($kind)
2066 2066
   {
2067
-    $this->kind = $kind;
2067
+	$this->kind = $kind;
2068 2068
   }
2069 2069
   public function getKind()
2070 2070
   {
2071
-    return $this->kind;
2071
+	return $this->kind;
2072 2072
   }
2073 2073
 }
2074 2074
 
@@ -2089,51 +2089,51 @@  discard block
 block discarded – undo
2089 2089
 
2090 2090
   public function setCsvExportOptions(Google_Service_SQLAdmin_ExportContextCsvExportOptions $csvExportOptions)
2091 2091
   {
2092
-    $this->csvExportOptions = $csvExportOptions;
2092
+	$this->csvExportOptions = $csvExportOptions;
2093 2093
   }
2094 2094
   public function getCsvExportOptions()
2095 2095
   {
2096
-    return $this->csvExportOptions;
2096
+	return $this->csvExportOptions;
2097 2097
   }
2098 2098
   public function setDatabases($databases)
2099 2099
   {
2100
-    $this->databases = $databases;
2100
+	$this->databases = $databases;
2101 2101
   }
2102 2102
   public function getDatabases()
2103 2103
   {
2104
-    return $this->databases;
2104
+	return $this->databases;
2105 2105
   }
2106 2106
   public function setFileType($fileType)
2107 2107
   {
2108
-    $this->fileType = $fileType;
2108
+	$this->fileType = $fileType;
2109 2109
   }
2110 2110
   public function getFileType()
2111 2111
   {
2112
-    return $this->fileType;
2112
+	return $this->fileType;
2113 2113
   }
2114 2114
   public function setKind($kind)
2115 2115
   {
2116
-    $this->kind = $kind;
2116
+	$this->kind = $kind;
2117 2117
   }
2118 2118
   public function getKind()
2119 2119
   {
2120
-    return $this->kind;
2120
+	return $this->kind;
2121 2121
   }
2122 2122
   public function setSqlExportOptions(Google_Service_SQLAdmin_ExportContextSqlExportOptions $sqlExportOptions)
2123 2123
   {
2124
-    $this->sqlExportOptions = $sqlExportOptions;
2124
+	$this->sqlExportOptions = $sqlExportOptions;
2125 2125
   }
2126 2126
   public function getSqlExportOptions()
2127 2127
   {
2128
-    return $this->sqlExportOptions;
2128
+	return $this->sqlExportOptions;
2129 2129
   }
2130 2130
   public function setUri($uri)
2131 2131
   {
2132
-    $this->uri = $uri;
2132
+	$this->uri = $uri;
2133 2133
   }
2134 2134
   public function getUri()
2135 2135
   {
2136
-    return $this->uri;
2136
+	return $this->uri;
2137 2137
   }
2138 2138
 }
2139 2139
 
@@ -2146,11 +2146,11 @@  discard block
 block discarded – undo
2146 2146
 
2147 2147
   public function setSelectQuery($selectQuery)
2148 2148
   {
2149
-    $this->selectQuery = $selectQuery;
2149
+	$this->selectQuery = $selectQuery;
2150 2150
   }
2151 2151
   public function getSelectQuery()
2152 2152
   {
2153
-    return $this->selectQuery;
2153
+	return $this->selectQuery;
2154 2154
   }
2155 2155
 }
2156 2156
 
@@ -2164,11 +2164,11 @@  discard block
 block discarded – undo
2164 2164
 
2165 2165
   public function setTables($tables)
2166 2166
   {
2167
-    $this->tables = $tables;
2167
+	$this->tables = $tables;
2168 2168
   }
2169 2169
   public function getTables()
2170 2170
   {
2171
-    return $this->tables;
2171
+	return $this->tables;
2172 2172
   }
2173 2173
 }
2174 2174
 
@@ -2188,59 +2188,59 @@  discard block
 block discarded – undo
2188 2188
 
2189 2189
   public function setAllowedStringValues($allowedStringValues)
2190 2190
   {
2191
-    $this->allowedStringValues = $allowedStringValues;
2191
+	$this->allowedStringValues = $allowedStringValues;
2192 2192
   }
2193 2193
   public function getAllowedStringValues()
2194 2194
   {
2195
-    return $this->allowedStringValues;
2195
+	return $this->allowedStringValues;
2196 2196
   }
2197 2197
   public function setAppliesTo($appliesTo)
2198 2198
   {
2199
-    $this->appliesTo = $appliesTo;
2199
+	$this->appliesTo = $appliesTo;
2200 2200
   }
2201 2201
   public function getAppliesTo()
2202 2202
   {
2203
-    return $this->appliesTo;
2203
+	return $this->appliesTo;
2204 2204
   }
2205 2205
   public function setKind($kind)
2206 2206
   {
2207
-    $this->kind = $kind;
2207
+	$this->kind = $kind;
2208 2208
   }
2209 2209
   public function getKind()
2210 2210
   {
2211
-    return $this->kind;
2211
+	return $this->kind;
2212 2212
   }
2213 2213
   public function setMaxValue($maxValue)
2214 2214
   {
2215
-    $this->maxValue = $maxValue;
2215
+	$this->maxValue = $maxValue;
2216 2216
   }
2217 2217
   public function getMaxValue()
2218 2218
   {
2219
-    return $this->maxValue;
2219
+	return $this->maxValue;
2220 2220
   }
2221 2221
   public function setMinValue($minValue)
2222 2222
   {
2223
-    $this->minValue = $minValue;
2223
+	$this->minValue = $minValue;
2224 2224
   }
2225 2225
   public function getMinValue()
2226 2226
   {
2227
-    return $this->minValue;
2227
+	return $this->minValue;
2228 2228
   }
2229 2229
   public function setName($name)
2230 2230
   {
2231
-    $this->name = $name;
2231
+	$this->name = $name;
2232 2232
   }
2233 2233
   public function getName()
2234 2234
   {
2235
-    return $this->name;
2235
+	return $this->name;
2236 2236
   }
2237 2237
   public function setType($type)
2238 2238
   {
2239
-    $this->type = $type;
2239
+	$this->type = $type;
2240 2240
   }
2241 2241
   public function getType()
2242 2242
   {
2243
-    return $this->type;
2243
+	return $this->type;
2244 2244
   }
2245 2245
 }
2246 2246
 
@@ -2256,19 +2256,19 @@  discard block
 block discarded – undo
2256 2256
 
2257 2257
   public function setItems($items)
2258 2258
   {
2259
-    $this->items = $items;
2259
+	$this->items = $items;
2260 2260
   }
2261 2261
   public function getItems()
2262 2262
   {
2263
-    return $this->items;
2263
+	return $this->items;
2264 2264
   }
2265 2265
   public function setKind($kind)
2266 2266
   {
2267
-    $this->kind = $kind;
2267
+	$this->kind = $kind;
2268 2268
   }
2269 2269
   public function getKind()
2270 2270
   {
2271
-    return $this->kind;
2271
+	return $this->kind;
2272 2272
   }
2273 2273
 }
2274 2274
 
@@ -2286,43 +2286,43 @@  discard block
 block discarded – undo
2286 2286
 
2287 2287
   public function setCsvImportOptions(Google_Service_SQLAdmin_ImportContextCsvImportOptions $csvImportOptions)
2288 2288
   {
2289
-    $this->csvImportOptions = $csvImportOptions;
2289
+	$this->csvImportOptions = $csvImportOptions;
2290 2290
   }
2291 2291
   public function getCsvImportOptions()
2292 2292
   {
2293
-    return $this->csvImportOptions;
2293
+	return $this->csvImportOptions;
2294 2294
   }
2295 2295
   public function setDatabase($database)
2296 2296
   {
2297
-    $this->database = $database;
2297
+	$this->database = $database;
2298 2298
   }
2299 2299
   public function getDatabase()
2300 2300
   {
2301
-    return $this->database;
2301
+	return $this->database;
2302 2302
   }
2303 2303
   public function setFileType($fileType)
2304 2304
   {
2305
-    $this->fileType = $fileType;
2305
+	$this->fileType = $fileType;
2306 2306
   }
2307 2307
   public function getFileType()
2308 2308
   {
2309
-    return $this->fileType;
2309
+	return $this->fileType;
2310 2310
   }
2311 2311
   public function setKind($kind)
2312 2312
   {
2313
-    $this->kind = $kind;
2313
+	$this->kind = $kind;
2314 2314
   }
2315 2315
   public function getKind()
2316 2316
   {
2317
-    return $this->kind;
2317
+	return $this->kind;
2318 2318
   }
2319 2319
   public function setUri($uri)
2320 2320
   {
2321
-    $this->uri = $uri;
2321
+	$this->uri = $uri;
2322 2322
   }
2323 2323
   public function getUri()
2324 2324
   {
2325
-    return $this->uri;
2325
+	return $this->uri;
2326 2326
   }
2327 2327
 }
2328 2328
 
@@ -2337,19 +2337,19 @@  discard block
 block discarded – undo
2337 2337
 
2338 2338
   public function setColumns($columns)
2339 2339
   {
2340
-    $this->columns = $columns;
2340
+	$this->columns = $columns;
2341 2341
   }
2342 2342
   public function getColumns()
2343 2343
   {
2344
-    return $this->columns;
2344
+	return $this->columns;
2345 2345
   }
2346 2346
   public function setTable($table)
2347 2347
   {
2348
-    $this->table = $table;
2348
+	$this->table = $table;
2349 2349
   }
2350 2350
   public function getTable()
2351 2351
   {
2352
-    return $this->table;
2352
+	return $this->table;
2353 2353
   }
2354 2354
 }
2355 2355
 
@@ -2363,11 +2363,11 @@  discard block
 block discarded – undo
2363 2363
 
2364 2364
   public function setCloneContext(Google_Service_SQLAdmin_CloneContext $cloneContext)
2365 2365
   {
2366
-    $this->cloneContext = $cloneContext;
2366
+	$this->cloneContext = $cloneContext;
2367 2367
   }
2368 2368
   public function getCloneContext()
2369 2369
   {
2370
-    return $this->cloneContext;
2370
+	return $this->cloneContext;
2371 2371
   }
2372 2372
 }
2373 2373
 
@@ -2381,11 +2381,11 @@  discard block
 block discarded – undo
2381 2381
 
2382 2382
   public function setExportContext(Google_Service_SQLAdmin_ExportContext $exportContext)
2383 2383
   {
2384
-    $this->exportContext = $exportContext;
2384
+	$this->exportContext = $exportContext;
2385 2385
   }
2386 2386
   public function getExportContext()
2387 2387
   {
2388
-    return $this->exportContext;
2388
+	return $this->exportContext;
2389 2389
   }
2390 2390
 }
2391 2391
 
@@ -2399,11 +2399,11 @@  discard block
 block discarded – undo
2399 2399
 
2400 2400
   public function setImportContext(Google_Service_SQLAdmin_ImportContext $importContext)
2401 2401
   {
2402
-    $this->importContext = $importContext;
2402
+	$this->importContext = $importContext;
2403 2403
   }
2404 2404
   public function getImportContext()
2405 2405
   {
2406
-    return $this->importContext;
2406
+	return $this->importContext;
2407 2407
   }
2408 2408
 }
2409 2409
 
@@ -2420,27 +2420,27 @@  discard block
 block discarded – undo
2420 2420
 
2421 2421
   public function setItems($items)
2422 2422
   {
2423
-    $this->items = $items;
2423
+	$this->items = $items;
2424 2424
   }
2425 2425
   public function getItems()
2426 2426
   {
2427
-    return $this->items;
2427
+	return $this->items;
2428 2428
   }
2429 2429
   public function setKind($kind)
2430 2430
   {
2431
-    $this->kind = $kind;
2431
+	$this->kind = $kind;
2432 2432
   }
2433 2433
   public function getKind()
2434 2434
   {
2435
-    return $this->kind;
2435
+	return $this->kind;
2436 2436
   }
2437 2437
   public function setNextPageToken($nextPageToken)
2438 2438
   {
2439
-    $this->nextPageToken = $nextPageToken;
2439
+	$this->nextPageToken = $nextPageToken;
2440 2440
   }
2441 2441
   public function getNextPageToken()
2442 2442
   {
2443
-    return $this->nextPageToken;
2443
+	return $this->nextPageToken;
2444 2444
   }
2445 2445
 }
2446 2446
 
@@ -2454,11 +2454,11 @@  discard block
 block discarded – undo
2454 2454
 
2455 2455
   public function setRestoreBackupContext(Google_Service_SQLAdmin_RestoreBackupContext $restoreBackupContext)
2456 2456
   {
2457
-    $this->restoreBackupContext = $restoreBackupContext;
2457
+	$this->restoreBackupContext = $restoreBackupContext;
2458 2458
   }
2459 2459
   public function getRestoreBackupContext()
2460 2460
   {
2461
-    return $this->restoreBackupContext;
2461
+	return $this->restoreBackupContext;
2462 2462
   }
2463 2463
 }
2464 2464
 
@@ -2475,27 +2475,27 @@  discard block
 block discarded – undo
2475 2475
 
2476 2476
   public function setAuthorizedNetworks($authorizedNetworks)
2477 2477
   {
2478
-    $this->authorizedNetworks = $authorizedNetworks;
2478
+	$this->authorizedNetworks = $authorizedNetworks;
2479 2479
   }
2480 2480
   public function getAuthorizedNetworks()
2481 2481
   {
2482
-    return $this->authorizedNetworks;
2482
+	return $this->authorizedNetworks;
2483 2483
   }
2484 2484
   public function setIpv4Enabled($ipv4Enabled)
2485 2485
   {
2486
-    $this->ipv4Enabled = $ipv4Enabled;
2486
+	$this->ipv4Enabled = $ipv4Enabled;
2487 2487
   }
2488 2488
   public function getIpv4Enabled()
2489 2489
   {
2490
-    return $this->ipv4Enabled;
2490
+	return $this->ipv4Enabled;
2491 2491
   }
2492 2492
   public function setRequireSsl($requireSsl)
2493 2493
   {
2494
-    $this->requireSsl = $requireSsl;
2494
+	$this->requireSsl = $requireSsl;
2495 2495
   }
2496 2496
   public function getRequireSsl()
2497 2497
   {
2498
-    return $this->requireSsl;
2498
+	return $this->requireSsl;
2499 2499
   }
2500 2500
 }
2501 2501
 
@@ -2509,19 +2509,19 @@  discard block
 block discarded – undo
2509 2509
 
2510 2510
   public function setIpAddress($ipAddress)
2511 2511
   {
2512
-    $this->ipAddress = $ipAddress;
2512
+	$this->ipAddress = $ipAddress;
2513 2513
   }
2514 2514
   public function getIpAddress()
2515 2515
   {
2516
-    return $this->ipAddress;
2516
+	return $this->ipAddress;
2517 2517
   }
2518 2518
   public function setTimeToRetire($timeToRetire)
2519 2519
   {
2520
-    $this->timeToRetire = $timeToRetire;
2520
+	$this->timeToRetire = $timeToRetire;
2521 2521
   }
2522 2522
   public function getTimeToRetire()
2523 2523
   {
2524
-    return $this->timeToRetire;
2524
+	return $this->timeToRetire;
2525 2525
   }
2526 2526
 }
2527 2527
 
@@ -2536,27 +2536,27 @@  discard block
 block discarded – undo
2536 2536
 
2537 2537
   public function setFollowGaeApplication($followGaeApplication)
2538 2538
   {
2539
-    $this->followGaeApplication = $followGaeApplication;
2539
+	$this->followGaeApplication = $followGaeApplication;
2540 2540
   }
2541 2541
   public function getFollowGaeApplication()
2542 2542
   {
2543
-    return $this->followGaeApplication;
2543
+	return $this->followGaeApplication;
2544 2544
   }
2545 2545
   public function setKind($kind)
2546 2546
   {
2547
-    $this->kind = $kind;
2547
+	$this->kind = $kind;
2548 2548
   }
2549 2549
   public function getKind()
2550 2550
   {
2551
-    return $this->kind;
2551
+	return $this->kind;
2552 2552
   }
2553 2553
   public function setZone($zone)
2554 2554
   {
2555
-    $this->zone = $zone;
2555
+	$this->zone = $zone;
2556 2556
   }
2557 2557
   public function getZone()
2558 2558
   {
2559
-    return $this->zone;
2559
+	return $this->zone;
2560 2560
   }
2561 2561
 }
2562 2562
 
@@ -2579,91 +2579,91 @@  discard block
 block discarded – undo
2579 2579
 
2580 2580
   public function setCaCertificate($caCertificate)
2581 2581
   {
2582
-    $this->caCertificate = $caCertificate;
2582
+	$this->caCertificate = $caCertificate;
2583 2583
   }
2584 2584
   public function getCaCertificate()
2585 2585
   {
2586
-    return $this->caCertificate;
2586
+	return $this->caCertificate;
2587 2587
   }
2588 2588
   public function setClientCertificate($clientCertificate)
2589 2589
   {
2590
-    $this->clientCertificate = $clientCertificate;
2590
+	$this->clientCertificate = $clientCertificate;
2591 2591
   }
2592 2592
   public function getClientCertificate()
2593 2593
   {
2594
-    return $this->clientCertificate;
2594
+	return $this->clientCertificate;
2595 2595
   }
2596 2596
   public function setClientKey($clientKey)
2597 2597
   {
2598
-    $this->clientKey = $clientKey;
2598
+	$this->clientKey = $clientKey;
2599 2599
   }
2600 2600
   public function getClientKey()
2601 2601
   {
2602
-    return $this->clientKey;
2602
+	return $this->clientKey;
2603 2603
   }
2604 2604
   public function setConnectRetryInterval($connectRetryInterval)
2605 2605
   {
2606
-    $this->connectRetryInterval = $connectRetryInterval;
2606
+	$this->connectRetryInterval = $connectRetryInterval;
2607 2607
   }
2608 2608
   public function getConnectRetryInterval()
2609 2609
   {
2610
-    return $this->connectRetryInterval;
2610
+	return $this->connectRetryInterval;
2611 2611
   }
2612 2612
   public function setDumpFilePath($dumpFilePath)
2613 2613
   {
2614
-    $this->dumpFilePath = $dumpFilePath;
2614
+	$this->dumpFilePath = $dumpFilePath;
2615 2615
   }
2616 2616
   public function getDumpFilePath()
2617 2617
   {
2618
-    return $this->dumpFilePath;
2618
+	return $this->dumpFilePath;
2619 2619
   }
2620 2620
   public function setKind($kind)
2621 2621
   {
2622
-    $this->kind = $kind;
2622
+	$this->kind = $kind;
2623 2623
   }
2624 2624
   public function getKind()
2625 2625
   {
2626
-    return $this->kind;
2626
+	return $this->kind;
2627 2627
   }
2628 2628
   public function setMasterHeartbeatPeriod($masterHeartbeatPeriod)
2629 2629
   {
2630
-    $this->masterHeartbeatPeriod = $masterHeartbeatPeriod;
2630
+	$this->masterHeartbeatPeriod = $masterHeartbeatPeriod;
2631 2631
   }
2632 2632
   public function getMasterHeartbeatPeriod()
2633 2633
   {
2634
-    return $this->masterHeartbeatPeriod;
2634
+	return $this->masterHeartbeatPeriod;
2635 2635
   }
2636 2636
   public function setPassword($password)
2637 2637
   {
2638
-    $this->password = $password;
2638
+	$this->password = $password;
2639 2639
   }
2640 2640
   public function getPassword()
2641 2641
   {
2642
-    return $this->password;
2642
+	return $this->password;
2643 2643
   }
2644 2644
   public function setSslCipher($sslCipher)
2645 2645
   {
2646
-    $this->sslCipher = $sslCipher;
2646
+	$this->sslCipher = $sslCipher;
2647 2647
   }
2648 2648
   public function getSslCipher()
2649 2649
   {
2650
-    return $this->sslCipher;
2650
+	return $this->sslCipher;
2651 2651
   }
2652 2652
   public function setUsername($username)
2653 2653
   {
2654
-    $this->username = $username;
2654
+	$this->username = $username;
2655 2655
   }
2656 2656
   public function getUsername()
2657 2657
   {
2658
-    return $this->username;
2658
+	return $this->username;
2659 2659
   }
2660 2660
   public function setVerifyServerCertificate($verifyServerCertificate)
2661 2661
   {
2662
-    $this->verifyServerCertificate = $verifyServerCertificate;
2662
+	$this->verifyServerCertificate = $verifyServerCertificate;
2663 2663
   }
2664 2664
   public function getVerifyServerCertificate()
2665 2665
   {
2666
-    return $this->verifyServerCertificate;
2666
+	return $this->verifyServerCertificate;
2667 2667
   }
2668 2668
 }
2669 2669
 
@@ -2677,19 +2677,19 @@  discard block
 block discarded – undo
2677 2677
 
2678 2678
   public function setHostPort($hostPort)
2679 2679
   {
2680
-    $this->hostPort = $hostPort;
2680
+	$this->hostPort = $hostPort;
2681 2681
   }
2682 2682
   public function getHostPort()
2683 2683
   {
2684
-    return $this->hostPort;
2684
+	return $this->hostPort;
2685 2685
   }
2686 2686
   public function setKind($kind)
2687 2687
   {
2688
-    $this->kind = $kind;
2688
+	$this->kind = $kind;
2689 2689
   }
2690 2690
   public function getKind()
2691 2691
   {
2692
-    return $this->kind;
2692
+	return $this->kind;
2693 2693
   }
2694 2694
 }
2695 2695
 
@@ -2719,123 +2719,123 @@  discard block
 block discarded – undo
2719 2719
 
2720 2720
   public function setEndTime($endTime)
2721 2721
   {
2722
-    $this->endTime = $endTime;
2722
+	$this->endTime = $endTime;
2723 2723
   }
2724 2724
   public function getEndTime()
2725 2725
   {
2726
-    return $this->endTime;
2726
+	return $this->endTime;
2727 2727
   }
2728 2728
   public function setError(Google_Service_SQLAdmin_OperationErrors $error)
2729 2729
   {
2730
-    $this->error = $error;
2730
+	$this->error = $error;
2731 2731
   }
2732 2732
   public function getError()
2733 2733
   {
2734
-    return $this->error;
2734
+	return $this->error;
2735 2735
   }
2736 2736
   public function setExportContext(Google_Service_SQLAdmin_ExportContext $exportContext)
2737 2737
   {
2738
-    $this->exportContext = $exportContext;
2738
+	$this->exportContext = $exportContext;
2739 2739
   }
2740 2740
   public function getExportContext()
2741 2741
   {
2742
-    return $this->exportContext;
2742
+	return $this->exportContext;
2743 2743
   }
2744 2744
   public function setImportContext(Google_Service_SQLAdmin_ImportContext $importContext)
2745 2745
   {
2746
-    $this->importContext = $importContext;
2746
+	$this->importContext = $importContext;
2747 2747
   }
2748 2748
   public function getImportContext()
2749 2749
   {
2750
-    return $this->importContext;
2750
+	return $this->importContext;
2751 2751
   }
2752 2752
   public function setInsertTime($insertTime)
2753 2753
   {
2754
-    $this->insertTime = $insertTime;
2754
+	$this->insertTime = $insertTime;
2755 2755
   }
2756 2756
   public function getInsertTime()
2757 2757
   {
2758
-    return $this->insertTime;
2758
+	return $this->insertTime;
2759 2759
   }
2760 2760
   public function setKind($kind)
2761 2761
   {
2762
-    $this->kind = $kind;
2762
+	$this->kind = $kind;
2763 2763
   }
2764 2764
   public function getKind()
2765 2765
   {
2766
-    return $this->kind;
2766
+	return $this->kind;
2767 2767
   }
2768 2768
   public function setName($name)
2769 2769
   {
2770
-    $this->name = $name;
2770
+	$this->name = $name;
2771 2771
   }
2772 2772
   public function getName()
2773 2773
   {
2774
-    return $this->name;
2774
+	return $this->name;
2775 2775
   }
2776 2776
   public function setOperationType($operationType)
2777 2777
   {
2778
-    $this->operationType = $operationType;
2778
+	$this->operationType = $operationType;
2779 2779
   }
2780 2780
   public function getOperationType()
2781 2781
   {
2782
-    return $this->operationType;
2782
+	return $this->operationType;
2783 2783
   }
2784 2784
   public function setSelfLink($selfLink)
2785 2785
   {
2786
-    $this->selfLink = $selfLink;
2786
+	$this->selfLink = $selfLink;
2787 2787
   }
2788 2788
   public function getSelfLink()
2789 2789
   {
2790
-    return $this->selfLink;
2790
+	return $this->selfLink;
2791 2791
   }
2792 2792
   public function setStartTime($startTime)
2793 2793
   {
2794
-    $this->startTime = $startTime;
2794
+	$this->startTime = $startTime;
2795 2795
   }
2796 2796
   public function getStartTime()
2797 2797
   {
2798
-    return $this->startTime;
2798
+	return $this->startTime;
2799 2799
   }
2800 2800
   public function setStatus($status)
2801 2801
   {
2802
-    $this->status = $status;
2802
+	$this->status = $status;
2803 2803
   }
2804 2804
   public function getStatus()
2805 2805
   {
2806
-    return $this->status;
2806
+	return $this->status;
2807 2807
   }
2808 2808
   public function setTargetId($targetId)
2809 2809
   {
2810
-    $this->targetId = $targetId;
2810
+	$this->targetId = $targetId;
2811 2811
   }
2812 2812
   public function getTargetId()
2813 2813
   {
2814
-    return $this->targetId;
2814
+	return $this->targetId;
2815 2815
   }
2816 2816
   public function setTargetLink($targetLink)
2817 2817
   {
2818
-    $this->targetLink = $targetLink;
2818
+	$this->targetLink = $targetLink;
2819 2819
   }
2820 2820
   public function getTargetLink()
2821 2821
   {
2822
-    return $this->targetLink;
2822
+	return $this->targetLink;
2823 2823
   }
2824 2824
   public function setTargetProject($targetProject)
2825 2825
   {
2826
-    $this->targetProject = $targetProject;
2826
+	$this->targetProject = $targetProject;
2827 2827
   }
2828 2828
   public function getTargetProject()
2829 2829
   {
2830
-    return $this->targetProject;
2830
+	return $this->targetProject;
2831 2831
   }
2832 2832
   public function setUser($user)
2833 2833
   {
2834
-    $this->user = $user;
2834
+	$this->user = $user;
2835 2835
   }
2836 2836
   public function getUser()
2837 2837
   {
2838
-    return $this->user;
2838
+	return $this->user;
2839 2839
   }
2840 2840
 }
2841 2841
 
@@ -2850,27 +2850,27 @@  discard block
 block discarded – undo
2850 2850
 
2851 2851
   public function setCode($code)
2852 2852
   {
2853
-    $this->code = $code;
2853
+	$this->code = $code;
2854 2854
   }
2855 2855
   public function getCode()
2856 2856
   {
2857
-    return $this->code;
2857
+	return $this->code;
2858 2858
   }
2859 2859
   public function setKind($kind)
2860 2860
   {
2861
-    $this->kind = $kind;
2861
+	$this->kind = $kind;
2862 2862
   }
2863 2863
   public function getKind()
2864 2864
   {
2865
-    return $this->kind;
2865
+	return $this->kind;
2866 2866
   }
2867 2867
   public function setMessage($message)
2868 2868
   {
2869
-    $this->message = $message;
2869
+	$this->message = $message;
2870 2870
   }
2871 2871
   public function getMessage()
2872 2872
   {
2873
-    return $this->message;
2873
+	return $this->message;
2874 2874
   }
2875 2875
 }
2876 2876
 
@@ -2886,19 +2886,19 @@  discard block
 block discarded – undo
2886 2886
 
2887 2887
   public function setErrors($errors)
2888 2888
   {
2889
-    $this->errors = $errors;
2889
+	$this->errors = $errors;
2890 2890
   }
2891 2891
   public function getErrors()
2892 2892
   {
2893
-    return $this->errors;
2893
+	return $this->errors;
2894 2894
   }
2895 2895
   public function setKind($kind)
2896 2896
   {
2897
-    $this->kind = $kind;
2897
+	$this->kind = $kind;
2898 2898
   }
2899 2899
   public function getKind()
2900 2900
   {
2901
-    return $this->kind;
2901
+	return $this->kind;
2902 2902
   }
2903 2903
 }
2904 2904
 
@@ -2915,27 +2915,27 @@  discard block
 block discarded – undo
2915 2915
 
2916 2916
   public function setItems($items)
2917 2917
   {
2918
-    $this->items = $items;
2918
+	$this->items = $items;
2919 2919
   }
2920 2920
   public function getItems()
2921 2921
   {
2922
-    return $this->items;
2922
+	return $this->items;
2923 2923
   }
2924 2924
   public function setKind($kind)
2925 2925
   {
2926
-    $this->kind = $kind;
2926
+	$this->kind = $kind;
2927 2927
   }
2928 2928
   public function getKind()
2929 2929
   {
2930
-    return $this->kind;
2930
+	return $this->kind;
2931 2931
   }
2932 2932
   public function setNextPageToken($nextPageToken)
2933 2933
   {
2934
-    $this->nextPageToken = $nextPageToken;
2934
+	$this->nextPageToken = $nextPageToken;
2935 2935
   }
2936 2936
   public function getNextPageToken()
2937 2937
   {
2938
-    return $this->nextPageToken;
2938
+	return $this->nextPageToken;
2939 2939
   }
2940 2940
 }
2941 2941
 
@@ -2950,19 +2950,19 @@  discard block
 block discarded – undo
2950 2950
 
2951 2951
   public function setKind($kind)
2952 2952
   {
2953
-    $this->kind = $kind;
2953
+	$this->kind = $kind;
2954 2954
   }
2955 2955
   public function getKind()
2956 2956
   {
2957
-    return $this->kind;
2957
+	return $this->kind;
2958 2958
   }
2959 2959
   public function setMysqlReplicaConfiguration(Google_Service_SQLAdmin_MySqlReplicaConfiguration $mysqlReplicaConfiguration)
2960 2960
   {
2961
-    $this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration;
2961
+	$this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration;
2962 2962
   }
2963 2963
   public function getMysqlReplicaConfiguration()
2964 2964
   {
2965
-    return $this->mysqlReplicaConfiguration;
2965
+	return $this->mysqlReplicaConfiguration;
2966 2966
   }
2967 2967
 }
2968 2968
 
@@ -2977,27 +2977,27 @@  discard block
 block discarded – undo
2977 2977
 
2978 2978
   public function setBackupRunId($backupRunId)
2979 2979
   {
2980
-    $this->backupRunId = $backupRunId;
2980
+	$this->backupRunId = $backupRunId;
2981 2981
   }
2982 2982
   public function getBackupRunId()
2983 2983
   {
2984
-    return $this->backupRunId;
2984
+	return $this->backupRunId;
2985 2985
   }
2986 2986
   public function setInstanceId($instanceId)
2987 2987
   {
2988
-    $this->instanceId = $instanceId;
2988
+	$this->instanceId = $instanceId;
2989 2989
   }
2990 2990
   public function getInstanceId()
2991 2991
   {
2992
-    return $this->instanceId;
2992
+	return $this->instanceId;
2993 2993
   }
2994 2994
   public function setKind($kind)
2995 2995
   {
2996
-    $this->kind = $kind;
2996
+	$this->kind = $kind;
2997 2997
   }
2998 2998
   public function getKind()
2999 2999
   {
3000
-    return $this->kind;
3000
+	return $this->kind;
3001 3001
   }
3002 3002
 }
3003 3003
 
@@ -3027,107 +3027,107 @@  discard block
 block discarded – undo
3027 3027
 
3028 3028
   public function setActivationPolicy($activationPolicy)
3029 3029
   {
3030
-    $this->activationPolicy = $activationPolicy;
3030
+	$this->activationPolicy = $activationPolicy;
3031 3031
   }
3032 3032
   public function getActivationPolicy()
3033 3033
   {
3034
-    return $this->activationPolicy;
3034
+	return $this->activationPolicy;
3035 3035
   }
3036 3036
   public function setAuthorizedGaeApplications($authorizedGaeApplications)
3037 3037
   {
3038
-    $this->authorizedGaeApplications = $authorizedGaeApplications;
3038
+	$this->authorizedGaeApplications = $authorizedGaeApplications;
3039 3039
   }
3040 3040
   public function getAuthorizedGaeApplications()
3041 3041
   {
3042
-    return $this->authorizedGaeApplications;
3042
+	return $this->authorizedGaeApplications;
3043 3043
   }
3044 3044
   public function setBackupConfiguration(Google_Service_SQLAdmin_BackupConfiguration $backupConfiguration)
3045 3045
   {
3046
-    $this->backupConfiguration = $backupConfiguration;
3046
+	$this->backupConfiguration = $backupConfiguration;
3047 3047
   }
3048 3048
   public function getBackupConfiguration()
3049 3049
   {
3050
-    return $this->backupConfiguration;
3050
+	return $this->backupConfiguration;
3051 3051
   }
3052 3052
   public function setCrashSafeReplicationEnabled($crashSafeReplicationEnabled)
3053 3053
   {
3054
-    $this->crashSafeReplicationEnabled = $crashSafeReplicationEnabled;
3054
+	$this->crashSafeReplicationEnabled = $crashSafeReplicationEnabled;
3055 3055
   }
3056 3056
   public function getCrashSafeReplicationEnabled()
3057 3057
   {
3058
-    return $this->crashSafeReplicationEnabled;
3058
+	return $this->crashSafeReplicationEnabled;
3059 3059
   }
3060 3060
   public function setDatabaseFlags($databaseFlags)
3061 3061
   {
3062
-    $this->databaseFlags = $databaseFlags;
3062
+	$this->databaseFlags = $databaseFlags;
3063 3063
   }
3064 3064
   public function getDatabaseFlags()
3065 3065
   {
3066
-    return $this->databaseFlags;
3066
+	return $this->databaseFlags;
3067 3067
   }
3068 3068
   public function setDatabaseReplicationEnabled($databaseReplicationEnabled)
3069 3069
   {
3070
-    $this->databaseReplicationEnabled = $databaseReplicationEnabled;
3070
+	$this->databaseReplicationEnabled = $databaseReplicationEnabled;
3071 3071
   }
3072 3072
   public function getDatabaseReplicationEnabled()
3073 3073
   {
3074
-    return $this->databaseReplicationEnabled;
3074
+	return $this->databaseReplicationEnabled;
3075 3075
   }
3076 3076
   public function setIpConfiguration(Google_Service_SQLAdmin_IpConfiguration $ipConfiguration)
3077 3077
   {
3078
-    $this->ipConfiguration = $ipConfiguration;
3078
+	$this->ipConfiguration = $ipConfiguration;
3079 3079
   }
3080 3080
   public function getIpConfiguration()
3081 3081
   {
3082
-    return $this->ipConfiguration;
3082
+	return $this->ipConfiguration;
3083 3083
   }
3084 3084
   public function setKind($kind)
3085 3085
   {
3086
-    $this->kind = $kind;
3086
+	$this->kind = $kind;
3087 3087
   }
3088 3088
   public function getKind()
3089 3089
   {
3090
-    return $this->kind;
3090
+	return $this->kind;
3091 3091
   }
3092 3092
   public function setLocationPreference(Google_Service_SQLAdmin_LocationPreference $locationPreference)
3093 3093
   {
3094
-    $this->locationPreference = $locationPreference;
3094
+	$this->locationPreference = $locationPreference;
3095 3095
   }
3096 3096
   public function getLocationPreference()
3097 3097
   {
3098
-    return $this->locationPreference;
3098
+	return $this->locationPreference;
3099 3099
   }
3100 3100
   public function setPricingPlan($pricingPlan)
3101 3101
   {
3102
-    $this->pricingPlan = $pricingPlan;
3102
+	$this->pricingPlan = $pricingPlan;
3103 3103
   }
3104 3104
   public function getPricingPlan()
3105 3105
   {
3106
-    return $this->pricingPlan;
3106
+	return $this->pricingPlan;
3107 3107
   }
3108 3108
   public function setReplicationType($replicationType)
3109 3109
   {
3110
-    $this->replicationType = $replicationType;
3110
+	$this->replicationType = $replicationType;
3111 3111
   }
3112 3112
   public function getReplicationType()
3113 3113
   {
3114
-    return $this->replicationType;
3114
+	return $this->replicationType;
3115 3115
   }
3116 3116
   public function setSettingsVersion($settingsVersion)
3117 3117
   {
3118
-    $this->settingsVersion = $settingsVersion;
3118
+	$this->settingsVersion = $settingsVersion;
3119 3119
   }
3120 3120
   public function getSettingsVersion()
3121 3121
   {
3122
-    return $this->settingsVersion;
3122
+	return $this->settingsVersion;
3123 3123
   }
3124 3124
   public function setTier($tier)
3125 3125
   {
3126
-    $this->tier = $tier;
3126
+	$this->tier = $tier;
3127 3127
   }
3128 3128
   public function getTier()
3129 3129
   {
3130
-    return $this->tier;
3130
+	return $this->tier;
3131 3131
   }
3132 3132
 }
3133 3133
 
@@ -3148,75 +3148,75 @@  discard block
 block discarded – undo
3148 3148
 
3149 3149
   public function setCert($cert)
3150 3150
   {
3151
-    $this->cert = $cert;
3151
+	$this->cert = $cert;
3152 3152
   }
3153 3153
   public function getCert()
3154 3154
   {
3155
-    return $this->cert;
3155
+	return $this->cert;
3156 3156
   }
3157 3157
   public function setCertSerialNumber($certSerialNumber)
3158 3158
   {
3159
-    $this->certSerialNumber = $certSerialNumber;
3159
+	$this->certSerialNumber = $certSerialNumber;
3160 3160
   }
3161 3161
   public function getCertSerialNumber()
3162 3162
   {
3163
-    return $this->certSerialNumber;
3163
+	return $this->certSerialNumber;
3164 3164
   }
3165 3165
   public function setCommonName($commonName)
3166 3166
   {
3167
-    $this->commonName = $commonName;
3167
+	$this->commonName = $commonName;
3168 3168
   }
3169 3169
   public function getCommonName()
3170 3170
   {
3171
-    return $this->commonName;
3171
+	return $this->commonName;
3172 3172
   }
3173 3173
   public function setCreateTime($createTime)
3174 3174
   {
3175
-    $this->createTime = $createTime;
3175
+	$this->createTime = $createTime;
3176 3176
   }
3177 3177
   public function getCreateTime()
3178 3178
   {
3179
-    return $this->createTime;
3179
+	return $this->createTime;
3180 3180
   }
3181 3181
   public function setExpirationTime($expirationTime)
3182 3182
   {
3183
-    $this->expirationTime = $expirationTime;
3183
+	$this->expirationTime = $expirationTime;
3184 3184
   }
3185 3185
   public function getExpirationTime()
3186 3186
   {
3187
-    return $this->expirationTime;
3187
+	return $this->expirationTime;
3188 3188
   }
3189 3189
   public function setInstance($instance)
3190 3190
   {
3191
-    $this->instance = $instance;
3191
+	$this->instance = $instance;
3192 3192
   }
3193 3193
   public function getInstance()
3194 3194
   {
3195
-    return $this->instance;
3195
+	return $this->instance;
3196 3196
   }
3197 3197
   public function setKind($kind)
3198 3198
   {
3199
-    $this->kind = $kind;
3199
+	$this->kind = $kind;
3200 3200
   }
3201 3201
   public function getKind()
3202 3202
   {
3203
-    return $this->kind;
3203
+	return $this->kind;
3204 3204
   }
3205 3205
   public function setSelfLink($selfLink)
3206 3206
   {
3207
-    $this->selfLink = $selfLink;
3207
+	$this->selfLink = $selfLink;
3208 3208
   }
3209 3209
   public function getSelfLink()
3210 3210
   {
3211
-    return $this->selfLink;
3211
+	return $this->selfLink;
3212 3212
   }
3213 3213
   public function setSha1Fingerprint($sha1Fingerprint)
3214 3214
   {
3215
-    $this->sha1Fingerprint = $sha1Fingerprint;
3215
+	$this->sha1Fingerprint = $sha1Fingerprint;
3216 3216
   }
3217 3217
   public function getSha1Fingerprint()
3218 3218
   {
3219
-    return $this->sha1Fingerprint;
3219
+	return $this->sha1Fingerprint;
3220 3220
   }
3221 3221
 }
3222 3222
 
@@ -3231,19 +3231,19 @@  discard block
 block discarded – undo
3231 3231
 
3232 3232
   public function setCertInfo(Google_Service_SQLAdmin_SslCert $certInfo)
3233 3233
   {
3234
-    $this->certInfo = $certInfo;
3234
+	$this->certInfo = $certInfo;
3235 3235
   }
3236 3236
   public function getCertInfo()
3237 3237
   {
3238
-    return $this->certInfo;
3238
+	return $this->certInfo;
3239 3239
   }
3240 3240
   public function setCertPrivateKey($certPrivateKey)
3241 3241
   {
3242
-    $this->certPrivateKey = $certPrivateKey;
3242
+	$this->certPrivateKey = $certPrivateKey;
3243 3243
   }
3244 3244
   public function getCertPrivateKey()
3245 3245
   {
3246
-    return $this->certPrivateKey;
3246
+	return $this->certPrivateKey;
3247 3247
   }
3248 3248
 }
3249 3249
 
@@ -3256,11 +3256,11 @@  discard block
 block discarded – undo
3256 3256
 
3257 3257
   public function setCommonName($commonName)
3258 3258
   {
3259
-    $this->commonName = $commonName;
3259
+	$this->commonName = $commonName;
3260 3260
   }
3261 3261
   public function getCommonName()
3262 3262
   {
3263
-    return $this->commonName;
3263
+	return $this->commonName;
3264 3264
   }
3265 3265
 }
3266 3266
 
@@ -3277,27 +3277,27 @@  discard block
 block discarded – undo
3277 3277
 
3278 3278
   public function setClientCert(Google_Service_SQLAdmin_SslCertDetail $clientCert)
3279 3279
   {
3280
-    $this->clientCert = $clientCert;
3280
+	$this->clientCert = $clientCert;
3281 3281
   }
3282 3282
   public function getClientCert()
3283 3283
   {
3284
-    return $this->clientCert;
3284
+	return $this->clientCert;
3285 3285
   }
3286 3286
   public function setKind($kind)
3287 3287
   {
3288
-    $this->kind = $kind;
3288
+	$this->kind = $kind;
3289 3289
   }
3290 3290
   public function getKind()
3291 3291
   {
3292
-    return $this->kind;
3292
+	return $this->kind;
3293 3293
   }
3294 3294
   public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert)
3295 3295
   {
3296
-    $this->serverCaCert = $serverCaCert;
3296
+	$this->serverCaCert = $serverCaCert;
3297 3297
   }
3298 3298
   public function getServerCaCert()
3299 3299
   {
3300
-    return $this->serverCaCert;
3300
+	return $this->serverCaCert;
3301 3301
   }
3302 3302
 }
3303 3303
 
@@ -3313,19 +3313,19 @@  discard block
 block discarded – undo
3313 3313
 
3314 3314
   public function setItems($items)
3315 3315
   {
3316
-    $this->items = $items;
3316
+	$this->items = $items;
3317 3317
   }
3318 3318
   public function getItems()
3319 3319
   {
3320
-    return $this->items;
3320
+	return $this->items;
3321 3321
   }
3322 3322
   public function setKind($kind)
3323 3323
   {
3324
-    $this->kind = $kind;
3324
+	$this->kind = $kind;
3325 3325
   }
3326 3326
   public function getKind()
3327 3327
   {
3328
-    return $this->kind;
3328
+	return $this->kind;
3329 3329
   }
3330 3330
 }
3331 3331
 
@@ -3333,8 +3333,8 @@  discard block
 block discarded – undo
3333 3333
 {
3334 3334
   protected $collection_key = 'region';
3335 3335
   protected $internal_gapi_mappings = array(
3336
-        "diskQuota" => "DiskQuota",
3337
-        "rAM" => "RAM",
3336
+		"diskQuota" => "DiskQuota",
3337
+		"rAM" => "RAM",
3338 3338
   );
3339 3339
   public $diskQuota;
3340 3340
   public $rAM;
@@ -3345,43 +3345,43 @@  discard block
 block discarded – undo
3345 3345
 
3346 3346
   public function setDiskQuota($diskQuota)
3347 3347
   {
3348
-    $this->diskQuota = $diskQuota;
3348
+	$this->diskQuota = $diskQuota;
3349 3349
   }
3350 3350
   public function getDiskQuota()
3351 3351
   {
3352
-    return $this->diskQuota;
3352
+	return $this->diskQuota;
3353 3353
   }
3354 3354
   public function setRAM($rAM)
3355 3355
   {
3356
-    $this->rAM = $rAM;
3356
+	$this->rAM = $rAM;
3357 3357
   }
3358 3358
   public function getRAM()
3359 3359
   {
3360
-    return $this->rAM;
3360
+	return $this->rAM;
3361 3361
   }
3362 3362
   public function setKind($kind)
3363 3363
   {
3364
-    $this->kind = $kind;
3364
+	$this->kind = $kind;
3365 3365
   }
3366 3366
   public function getKind()
3367 3367
   {
3368
-    return $this->kind;
3368
+	return $this->kind;
3369 3369
   }
3370 3370
   public function setRegion($region)
3371 3371
   {
3372
-    $this->region = $region;
3372
+	$this->region = $region;
3373 3373
   }
3374 3374
   public function getRegion()
3375 3375
   {
3376
-    return $this->region;
3376
+	return $this->region;
3377 3377
   }
3378 3378
   public function setTier($tier)
3379 3379
   {
3380
-    $this->tier = $tier;
3380
+	$this->tier = $tier;
3381 3381
   }
3382 3382
   public function getTier()
3383 3383
   {
3384
-    return $this->tier;
3384
+	return $this->tier;
3385 3385
   }
3386 3386
 }
3387 3387
 
@@ -3397,19 +3397,19 @@  discard block
 block discarded – undo
3397 3397
 
3398 3398
   public function setItems($items)
3399 3399
   {
3400
-    $this->items = $items;
3400
+	$this->items = $items;
3401 3401
   }
3402 3402
   public function getItems()
3403 3403
   {
3404
-    return $this->items;
3404
+	return $this->items;
3405 3405
   }
3406 3406
   public function setKind($kind)
3407 3407
   {
3408
-    $this->kind = $kind;
3408
+	$this->kind = $kind;
3409 3409
   }
3410 3410
   public function getKind()
3411 3411
   {
3412
-    return $this->kind;
3412
+	return $this->kind;
3413 3413
   }
3414 3414
 }
3415 3415
 
@@ -3428,59 +3428,59 @@  discard block
 block discarded – undo
3428 3428
 
3429 3429
   public function setEtag($etag)
3430 3430
   {
3431
-    $this->etag = $etag;
3431
+	$this->etag = $etag;
3432 3432
   }
3433 3433
   public function getEtag()
3434 3434
   {
3435
-    return $this->etag;
3435
+	return $this->etag;
3436 3436
   }
3437 3437
   public function setHost($host)
3438 3438
   {
3439
-    $this->host = $host;
3439
+	$this->host = $host;
3440 3440
   }
3441 3441
   public function getHost()
3442 3442
   {
3443
-    return $this->host;
3443
+	return $this->host;
3444 3444
   }
3445 3445
   public function setInstance($instance)
3446 3446
   {
3447
-    $this->instance = $instance;
3447
+	$this->instance = $instance;
3448 3448
   }
3449 3449
   public function getInstance()
3450 3450
   {
3451
-    return $this->instance;
3451
+	return $this->instance;
3452 3452
   }
3453 3453
   public function setKind($kind)
3454 3454
   {
3455
-    $this->kind = $kind;
3455
+	$this->kind = $kind;
3456 3456
   }
3457 3457
   public function getKind()
3458 3458
   {
3459
-    return $this->kind;
3459
+	return $this->kind;
3460 3460
   }
3461 3461
   public function setName($name)
3462 3462
   {
3463
-    $this->name = $name;
3463
+	$this->name = $name;
3464 3464
   }
3465 3465
   public function getName()
3466 3466
   {
3467
-    return $this->name;
3467
+	return $this->name;
3468 3468
   }
3469 3469
   public function setPassword($password)
3470 3470
   {
3471
-    $this->password = $password;
3471
+	$this->password = $password;
3472 3472
   }
3473 3473
   public function getPassword()
3474 3474
   {
3475
-    return $this->password;
3475
+	return $this->password;
3476 3476
   }
3477 3477
   public function setProject($project)
3478 3478
   {
3479
-    $this->project = $project;
3479
+	$this->project = $project;
3480 3480
   }
3481 3481
   public function getProject()
3482 3482
   {
3483
-    return $this->project;
3483
+	return $this->project;
3484 3484
   }
3485 3485
 }
3486 3486
 
@@ -3497,26 +3497,26 @@  discard block
 block discarded – undo
3497 3497
 
3498 3498
   public function setItems($items)
3499 3499
   {
3500
-    $this->items = $items;
3500
+	$this->items = $items;
3501 3501
   }
3502 3502
   public function getItems()
3503 3503
   {
3504
-    return $this->items;
3504
+	return $this->items;
3505 3505
   }
3506 3506
   public function setKind($kind)
3507 3507
   {
3508
-    $this->kind = $kind;
3508
+	$this->kind = $kind;
3509 3509
   }
3510 3510
   public function getKind()
3511 3511
   {
3512
-    return $this->kind;
3512
+	return $this->kind;
3513 3513
   }
3514 3514
   public function setNextPageToken($nextPageToken)
3515 3515
   {
3516
-    $this->nextPageToken = $nextPageToken;
3516
+	$this->nextPageToken = $nextPageToken;
3517 3517
   }
3518 3518
   public function getNextPageToken()
3519 3519
   {
3520
-    return $this->nextPageToken;
3520
+	return $this->nextPageToken;
3521 3521
   }
3522 3522
 }
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                   'required' => true,
87 87
                 ),
88 88
               ),
89
-            ),'list' => array(
89
+            ), 'list' => array(
90 90
               'path' => 'projects/{project}/instances/{instance}/backupRuns',
91 91
               'httpMethod' => 'GET',
92 92
               'parameters' => array(
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                   'required' => true,
140 140
                 ),
141 141
               ),
142
-            ),'get' => array(
142
+            ), 'get' => array(
143 143
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144 144
               'httpMethod' => 'GET',
145 145
               'parameters' => array(
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                   'required' => true,
160 160
                 ),
161 161
               ),
162
-            ),'insert' => array(
162
+            ), 'insert' => array(
163 163
               'path' => 'projects/{project}/instances/{instance}/databases',
164 164
               'httpMethod' => 'POST',
165 165
               'parameters' => array(
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
                   'required' => true,
175 175
                 ),
176 176
               ),
177
-            ),'list' => array(
177
+            ), 'list' => array(
178 178
               'path' => 'projects/{project}/instances/{instance}/databases',
179 179
               'httpMethod' => 'GET',
180 180
               'parameters' => array(
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                   'required' => true,
190 190
                 ),
191 191
               ),
192
-            ),'patch' => array(
192
+            ), 'patch' => array(
193 193
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194 194
               'httpMethod' => 'PATCH',
195 195
               'parameters' => array(
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
                   'required' => true,
210 210
                 ),
211 211
               ),
212
-            ),'update' => array(
212
+            ), 'update' => array(
213 213
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214 214
               'httpMethod' => 'PUT',
215 215
               'parameters' => array(
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
                   'required' => true,
269 269
                 ),
270 270
               ),
271
-            ),'delete' => array(
271
+            ), 'delete' => array(
272 272
               'path' => 'projects/{project}/instances/{instance}',
273 273
               'httpMethod' => 'DELETE',
274 274
               'parameters' => array(
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
                   'required' => true,
284 284
                 ),
285 285
               ),
286
-            ),'export' => array(
286
+            ), 'export' => array(
287 287
               'path' => 'projects/{project}/instances/{instance}/export',
288 288
               'httpMethod' => 'POST',
289 289
               'parameters' => array(
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                   'required' => true,
299 299
                 ),
300 300
               ),
301
-            ),'get' => array(
301
+            ), 'get' => array(
302 302
               'path' => 'projects/{project}/instances/{instance}',
303 303
               'httpMethod' => 'GET',
304 304
               'parameters' => array(
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
                   'required' => true,
314 314
                 ),
315 315
               ),
316
-            ),'import' => array(
316
+            ), 'import' => array(
317 317
               'path' => 'projects/{project}/instances/{instance}/import',
318 318
               'httpMethod' => 'POST',
319 319
               'parameters' => array(
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
                   'required' => true,
329 329
                 ),
330 330
               ),
331
-            ),'insert' => array(
331
+            ), 'insert' => array(
332 332
               'path' => 'projects/{project}/instances',
333 333
               'httpMethod' => 'POST',
334 334
               'parameters' => array(
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
                   'required' => true,
339 339
                 ),
340 340
               ),
341
-            ),'list' => array(
341
+            ), 'list' => array(
342 342
               'path' => 'projects/{project}/instances',
343 343
               'httpMethod' => 'GET',
344 344
               'parameters' => array(
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
                   'type' => 'integer',
357 357
                 ),
358 358
               ),
359
-            ),'patch' => array(
359
+            ), 'patch' => array(
360 360
               'path' => 'projects/{project}/instances/{instance}',
361 361
               'httpMethod' => 'PATCH',
362 362
               'parameters' => array(
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
                   'required' => true,
372 372
                 ),
373 373
               ),
374
-            ),'promoteReplica' => array(
374
+            ), 'promoteReplica' => array(
375 375
               'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376 376
               'httpMethod' => 'POST',
377 377
               'parameters' => array(
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
                   'required' => true,
387 387
                 ),
388 388
               ),
389
-            ),'resetSslConfig' => array(
389
+            ), 'resetSslConfig' => array(
390 390
               'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391 391
               'httpMethod' => 'POST',
392 392
               'parameters' => array(
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
                   'required' => true,
402 402
                 ),
403 403
               ),
404
-            ),'restart' => array(
404
+            ), 'restart' => array(
405 405
               'path' => 'projects/{project}/instances/{instance}/restart',
406 406
               'httpMethod' => 'POST',
407 407
               'parameters' => array(
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
                   'required' => true,
417 417
                 ),
418 418
               ),
419
-            ),'restoreBackup' => array(
419
+            ), 'restoreBackup' => array(
420 420
               'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421 421
               'httpMethod' => 'POST',
422 422
               'parameters' => array(
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
                   'required' => true,
432 432
                 ),
433 433
               ),
434
-            ),'startReplica' => array(
434
+            ), 'startReplica' => array(
435 435
               'path' => 'projects/{project}/instances/{instance}/startReplica',
436 436
               'httpMethod' => 'POST',
437 437
               'parameters' => array(
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
                   'required' => true,
447 447
                 ),
448 448
               ),
449
-            ),'stopReplica' => array(
449
+            ), 'stopReplica' => array(
450 450
               'path' => 'projects/{project}/instances/{instance}/stopReplica',
451 451
               'httpMethod' => 'POST',
452 452
               'parameters' => array(
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
                   'required' => true,
462 462
                 ),
463 463
               ),
464
-            ),'update' => array(
464
+            ), 'update' => array(
465 465
               'path' => 'projects/{project}/instances/{instance}',
466 466
               'httpMethod' => 'PUT',
467 467
               'parameters' => array(
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
                   'required' => true,
502 502
                 ),
503 503
               ),
504
-            ),'list' => array(
504
+            ), 'list' => array(
505 505
               'path' => 'projects/{project}/operations',
506 506
               'httpMethod' => 'GET',
507 507
               'parameters' => array(
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
                   'required' => true,
555 555
                 ),
556 556
               ),
557
-            ),'get' => array(
557
+            ), 'get' => array(
558 558
               'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559 559
               'httpMethod' => 'GET',
560 560
               'parameters' => array(
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
                   'required' => true,
575 575
                 ),
576 576
               ),
577
-            ),'insert' => array(
577
+            ), 'insert' => array(
578 578
               'path' => 'projects/{project}/instances/{instance}/sslCerts',
579 579
               'httpMethod' => 'POST',
580 580
               'parameters' => array(
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
                   'required' => true,
590 590
                 ),
591 591
               ),
592
-            ),'list' => array(
592
+            ), 'list' => array(
593 593
               'path' => 'projects/{project}/instances/{instance}/sslCerts',
594 594
               'httpMethod' => 'GET',
595 595
               'parameters' => array(
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
                   'required' => true,
660 660
                 ),
661 661
               ),
662
-            ),'insert' => array(
662
+            ), 'insert' => array(
663 663
               'path' => 'projects/{project}/instances/{instance}/users',
664 664
               'httpMethod' => 'POST',
665 665
               'parameters' => array(
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
                   'required' => true,
675 675
                 ),
676 676
               ),
677
-            ),'list' => array(
677
+            ), 'list' => array(
678 678
               'path' => 'projects/{project}/instances/{instance}/users',
679 679
               'httpMethod' => 'GET',
680 680
               'parameters' => array(
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
                   'required' => true,
690 690
                 ),
691 691
               ),
692
-            ),'update' => array(
692
+            ), 'update' => array(
693 693
               'path' => 'projects/{project}/instances/{instance}/users',
694 694
               'httpMethod' => 'PUT',
695 695
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Storage.php 3 patches
Doc Comments   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1076,7 +1076,7 @@  discard block
 block discarded – undo
1076 1076
    * (bucketAccessControls.insert)
1077 1077
    *
1078 1078
    * @param string $bucket Name of a bucket.
1079
-   * @param Google_BucketAccessControl $postBody
1079
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1080 1080
    * @param array $optParams Optional parameters.
1081 1081
    * @return Google_Service_Storage_BucketAccessControl
1082 1082
    */
@@ -1110,7 +1110,7 @@  discard block
 block discarded – undo
1110 1110
    * @param string $entity The entity holding the permission. Can be user-userId,
1111 1111
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1112 1112
    * allAuthenticatedUsers.
1113
-   * @param Google_BucketAccessControl $postBody
1113
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1114 1114
    * @param array $optParams Optional parameters.
1115 1115
    * @return Google_Service_Storage_BucketAccessControl
1116 1116
    */
@@ -1128,7 +1128,7 @@  discard block
 block discarded – undo
1128 1128
    * @param string $entity The entity holding the permission. Can be user-userId,
1129 1129
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1130 1130
    * allAuthenticatedUsers.
1131
-   * @param Google_BucketAccessControl $postBody
1131
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1132 1132
    * @param array $optParams Optional parameters.
1133 1133
    * @return Google_Service_Storage_BucketAccessControl
1134 1134
    */
@@ -1195,7 +1195,7 @@  discard block
 block discarded – undo
1195 1195
    * Creates a new bucket. (buckets.insert)
1196 1196
    *
1197 1197
    * @param string $project A valid API project identifier.
1198
-   * @param Google_Bucket $postBody
1198
+   * @param Google_Service_Storage_Bucket $postBody
1199 1199
    * @param array $optParams Optional parameters.
1200 1200
    *
1201 1201
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1239,7 +1239,7 @@  discard block
 block discarded – undo
1239 1239
    * Updates a bucket. This method supports patch semantics. (buckets.patch)
1240 1240
    *
1241 1241
    * @param string $bucket Name of a bucket.
1242
-   * @param Google_Bucket $postBody
1242
+   * @param Google_Service_Storage_Bucket $postBody
1243 1243
    * @param array $optParams Optional parameters.
1244 1244
    *
1245 1245
    * @opt_param string projection Set of properties to return. Defaults to full.
@@ -1266,7 +1266,7 @@  discard block
 block discarded – undo
1266 1266
    * Updates a bucket. (buckets.update)
1267 1267
    *
1268 1268
    * @param string $bucket Name of a bucket.
1269
-   * @param Google_Bucket $postBody
1269
+   * @param Google_Service_Storage_Bucket $postBody
1270 1270
    * @param array $optParams Optional parameters.
1271 1271
    *
1272 1272
    * @opt_param string projection Set of properties to return. Defaults to full.
@@ -1304,7 +1304,7 @@  discard block
 block discarded – undo
1304 1304
   /**
1305 1305
    * Stop watching resources through this channel (channels.stop)
1306 1306
    *
1307
-   * @param Google_Channel $postBody
1307
+   * @param Google_Service_Storage_Channel $postBody
1308 1308
    * @param array $optParams Optional parameters.
1309 1309
    */
1310 1310
   public function stop(Google_Service_Storage_Channel $postBody, $optParams = array())
@@ -1366,7 +1366,7 @@  discard block
 block discarded – undo
1366 1366
    * (defaultObjectAccessControls.insert)
1367 1367
    *
1368 1368
    * @param string $bucket Name of a bucket.
1369
-   * @param Google_ObjectAccessControl $postBody
1369
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1370 1370
    * @param array $optParams Optional parameters.
1371 1371
    * @return Google_Service_Storage_ObjectAccessControl
1372 1372
    */
@@ -1406,7 +1406,7 @@  discard block
 block discarded – undo
1406 1406
    * @param string $entity The entity holding the permission. Can be user-userId,
1407 1407
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1408 1408
    * allAuthenticatedUsers.
1409
-   * @param Google_ObjectAccessControl $postBody
1409
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1410 1410
    * @param array $optParams Optional parameters.
1411 1411
    * @return Google_Service_Storage_ObjectAccessControl
1412 1412
    */
@@ -1425,7 +1425,7 @@  discard block
 block discarded – undo
1425 1425
    * @param string $entity The entity holding the permission. Can be user-userId,
1426 1426
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1427 1427
    * allAuthenticatedUsers.
1428
-   * @param Google_ObjectAccessControl $postBody
1428
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1429 1429
    * @param array $optParams Optional parameters.
1430 1430
    * @return Google_Service_Storage_ObjectAccessControl
1431 1431
    */
@@ -1497,7 +1497,7 @@  discard block
 block discarded – undo
1497 1497
    *
1498 1498
    * @param string $bucket Name of a bucket.
1499 1499
    * @param string $object Name of the object.
1500
-   * @param Google_ObjectAccessControl $postBody
1500
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1501 1501
    * @param array $optParams Optional parameters.
1502 1502
    *
1503 1503
    * @opt_param string generation If present, selects a specific revision of this
@@ -1539,7 +1539,7 @@  discard block
 block discarded – undo
1539 1539
    * @param string $entity The entity holding the permission. Can be user-userId,
1540 1540
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1541 1541
    * allAuthenticatedUsers.
1542
-   * @param Google_ObjectAccessControl $postBody
1542
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1543 1543
    * @param array $optParams Optional parameters.
1544 1544
    *
1545 1545
    * @opt_param string generation If present, selects a specific revision of this
@@ -1561,7 +1561,7 @@  discard block
 block discarded – undo
1561 1561
    * @param string $entity The entity holding the permission. Can be user-userId,
1562 1562
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1563 1563
    * allAuthenticatedUsers.
1564
-   * @param Google_ObjectAccessControl $postBody
1564
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1565 1565
    * @param array $optParams Optional parameters.
1566 1566
    *
1567 1567
    * @opt_param string generation If present, selects a specific revision of this
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
    * @param string $destinationBucket Name of the bucket in which to store the new
1595 1595
    * object.
1596 1596
    * @param string $destinationObject Name of the new object.
1597
-   * @param Google_ComposeRequest $postBody
1597
+   * @param Google_Service_Storage_ComposeRequest $postBody
1598 1598
    * @param array $optParams Optional parameters.
1599 1599
    *
1600 1600
    * @opt_param string ifGenerationMatch Makes the operation conditional on
@@ -1624,7 +1624,7 @@  discard block
 block discarded – undo
1624 1624
    * @param string $destinationObject Name of the new object. Required when the
1625 1625
    * object metadata is not otherwise provided. Overrides the object metadata's
1626 1626
    * name value, if any.
1627
-   * @param Google_StorageObject $postBody
1627
+   * @param Google_Service_Storage_StorageObject $postBody
1628 1628
    * @param array $optParams Optional parameters.
1629 1629
    *
1630 1630
    * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional
@@ -1723,7 +1723,7 @@  discard block
 block discarded – undo
1723 1723
    *
1724 1724
    * @param string $bucket Name of the bucket in which to store the new object.
1725 1725
    * Overrides the provided object metadata's bucket value, if any.
1726
-   * @param Google_StorageObject $postBody
1726
+   * @param Google_Service_Storage_StorageObject $postBody
1727 1727
    * @param array $optParams Optional parameters.
1728 1728
    *
1729 1729
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1792,7 +1792,7 @@  discard block
 block discarded – undo
1792 1792
    *
1793 1793
    * @param string $bucket Name of the bucket in which the object resides.
1794 1794
    * @param string $object Name of the object.
1795
-   * @param Google_StorageObject $postBody
1795
+   * @param Google_Service_Storage_StorageObject $postBody
1796 1796
    * @param array $optParams Optional parameters.
1797 1797
    *
1798 1798
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1829,7 +1829,7 @@  discard block
 block discarded – undo
1829 1829
    * @param string $destinationObject Name of the new object. Required when the
1830 1830
    * object metadata is not otherwise provided. Overrides the object metadata's
1831 1831
    * name value, if any.
1832
-   * @param Google_StorageObject $postBody
1832
+   * @param Google_Service_Storage_StorageObject $postBody
1833 1833
    * @param array $optParams Optional parameters.
1834 1834
    *
1835 1835
    * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional
@@ -1886,7 +1886,7 @@  discard block
 block discarded – undo
1886 1886
    *
1887 1887
    * @param string $bucket Name of the bucket in which the object resides.
1888 1888
    * @param string $object Name of the object.
1889
-   * @param Google_StorageObject $postBody
1889
+   * @param Google_Service_Storage_StorageObject $postBody
1890 1890
    * @param array $optParams Optional parameters.
1891 1891
    *
1892 1892
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1915,7 +1915,7 @@  discard block
 block discarded – undo
1915 1915
    * Watch for changes on all objects in a bucket. (objects.watchAll)
1916 1916
    *
1917 1917
    * @param string $bucket Name of the bucket in which to look for objects.
1918
-   * @param Google_Channel $postBody
1918
+   * @param Google_Service_Storage_Channel $postBody
1919 1919
    * @param array $optParams Optional parameters.
1920 1920
    *
1921 1921
    * @opt_param string projection Set of properties to return. Defaults to noAcl.
Please login to merge, or discard this patch.
Indentation   +1322 added lines, -1322 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/TagManager.php 3 patches
Doc Comments   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1006,7 +1006,7 @@  discard block
 block discarded – undo
1006 1006
    * Updates a GTM Account. (accounts.update)
1007 1007
    *
1008 1008
    * @param string $accountId The GTM Account ID.
1009
-   * @param Google_Account $postBody
1009
+   * @param Google_Service_TagManager_Account $postBody
1010 1010
    * @param array $optParams Optional parameters.
1011 1011
    *
1012 1012
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1036,7 +1036,7 @@  discard block
 block discarded – undo
1036 1036
    * Creates a Container. (containers.create)
1037 1037
    *
1038 1038
    * @param string $accountId The GTM Account ID.
1039
-   * @param Google_Container $postBody
1039
+   * @param Google_Service_TagManager_Container $postBody
1040 1040
    * @param array $optParams Optional parameters.
1041 1041
    * @return Google_Service_TagManager_Container
1042 1042
    */
@@ -1096,7 +1096,7 @@  discard block
 block discarded – undo
1096 1096
    *
1097 1097
    * @param string $accountId The GTM Account ID.
1098 1098
    * @param string $containerId The GTM Container ID.
1099
-   * @param Google_Container $postBody
1099
+   * @param Google_Service_TagManager_Container $postBody
1100 1100
    * @param array $optParams Optional parameters.
1101 1101
    *
1102 1102
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1127,7 +1127,7 @@  discard block
 block discarded – undo
1127 1127
    *
1128 1128
    * @param string $accountId The GTM Account ID.
1129 1129
    * @param string $containerId The GTM Container ID.
1130
-   * @param Google_Macro $postBody
1130
+   * @param Google_Service_TagManager_Macro $postBody
1131 1131
    * @param array $optParams Optional parameters.
1132 1132
    * @return Google_Service_TagManager_Macro
1133 1133
    */
@@ -1190,7 +1190,7 @@  discard block
 block discarded – undo
1190 1190
    * @param string $accountId The GTM Account ID.
1191 1191
    * @param string $containerId The GTM Container ID.
1192 1192
    * @param string $macroId The GTM Macro ID.
1193
-   * @param Google_Macro $postBody
1193
+   * @param Google_Service_TagManager_Macro $postBody
1194 1194
    * @param array $optParams Optional parameters.
1195 1195
    *
1196 1196
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1220,7 +1220,7 @@  discard block
 block discarded – undo
1220 1220
    *
1221 1221
    * @param string $accountId The GTM Account ID.
1222 1222
    * @param string $containerId The GTM Container ID.
1223
-   * @param Google_Rule $postBody
1223
+   * @param Google_Service_TagManager_Rule $postBody
1224 1224
    * @param array $optParams Optional parameters.
1225 1225
    * @return Google_Service_TagManager_Rule
1226 1226
    */
@@ -1283,7 +1283,7 @@  discard block
 block discarded – undo
1283 1283
    * @param string $accountId The GTM Account ID.
1284 1284
    * @param string $containerId The GTM Container ID.
1285 1285
    * @param string $ruleId The GTM Rule ID.
1286
-   * @param Google_Rule $postBody
1286
+   * @param Google_Service_TagManager_Rule $postBody
1287 1287
    * @param array $optParams Optional parameters.
1288 1288
    *
1289 1289
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1313,7 +1313,7 @@  discard block
 block discarded – undo
1313 1313
    *
1314 1314
    * @param string $accountId The GTM Account ID.
1315 1315
    * @param string $containerId The GTM Container ID.
1316
-   * @param Google_Tag $postBody
1316
+   * @param Google_Service_TagManager_Tag $postBody
1317 1317
    * @param array $optParams Optional parameters.
1318 1318
    * @return Google_Service_TagManager_Tag
1319 1319
    */
@@ -1376,7 +1376,7 @@  discard block
 block discarded – undo
1376 1376
    * @param string $accountId The GTM Account ID.
1377 1377
    * @param string $containerId The GTM Container ID.
1378 1378
    * @param string $tagId The GTM Tag ID.
1379
-   * @param Google_Tag $postBody
1379
+   * @param Google_Service_TagManager_Tag $postBody
1380 1380
    * @param array $optParams Optional parameters.
1381 1381
    *
1382 1382
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1406,7 +1406,7 @@  discard block
 block discarded – undo
1406 1406
    *
1407 1407
    * @param string $accountId The GTM Account ID.
1408 1408
    * @param string $containerId The GTM Container ID.
1409
-   * @param Google_Trigger $postBody
1409
+   * @param Google_Service_TagManager_Trigger $postBody
1410 1410
    * @param array $optParams Optional parameters.
1411 1411
    * @return Google_Service_TagManager_Trigger
1412 1412
    */
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
    * @param string $accountId The GTM Account ID.
1471 1471
    * @param string $containerId The GTM Container ID.
1472 1472
    * @param string $triggerId The GTM Trigger ID.
1473
-   * @param Google_Trigger $postBody
1473
+   * @param Google_Service_TagManager_Trigger $postBody
1474 1474
    * @param array $optParams Optional parameters.
1475 1475
    *
1476 1476
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1500,7 +1500,7 @@  discard block
 block discarded – undo
1500 1500
    *
1501 1501
    * @param string $accountId The GTM Account ID.
1502 1502
    * @param string $containerId The GTM Container ID.
1503
-   * @param Google_Variable $postBody
1503
+   * @param Google_Service_TagManager_Variable $postBody
1504 1504
    * @param array $optParams Optional parameters.
1505 1505
    * @return Google_Service_TagManager_Variable
1506 1506
    */
@@ -1564,7 +1564,7 @@  discard block
 block discarded – undo
1564 1564
    * @param string $accountId The GTM Account ID.
1565 1565
    * @param string $containerId The GTM Container ID.
1566 1566
    * @param string $variableId The GTM Variable ID.
1567
-   * @param Google_Variable $postBody
1567
+   * @param Google_Service_TagManager_Variable $postBody
1568 1568
    * @param array $optParams Optional parameters.
1569 1569
    *
1570 1570
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
    *
1595 1595
    * @param string $accountId The GTM Account ID.
1596 1596
    * @param string $containerId The GTM Container ID.
1597
-   * @param Google_CreateContainerVersionRequestVersionOptions $postBody
1597
+   * @param Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody
1598 1598
    * @param array $optParams Optional parameters.
1599 1599
    * @return Google_Service_TagManager_CreateContainerVersionResponse
1600 1600
    */
@@ -1715,7 +1715,7 @@  discard block
 block discarded – undo
1715 1715
    * @param string $accountId The GTM Account ID.
1716 1716
    * @param string $containerId The GTM Container ID.
1717 1717
    * @param string $containerVersionId The GTM Container Version ID.
1718
-   * @param Google_ContainerVersion $postBody
1718
+   * @param Google_Service_TagManager_ContainerVersion $postBody
1719 1719
    * @param array $optParams Optional parameters.
1720 1720
    *
1721 1721
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1744,7 +1744,7 @@  discard block
 block discarded – undo
1744 1744
    * Creates a user's Account & Container Permissions. (permissions.create)
1745 1745
    *
1746 1746
    * @param string $accountId The GTM Account ID.
1747
-   * @param Google_UserAccess $postBody
1747
+   * @param Google_Service_TagManager_UserAccess $postBody
1748 1748
    * @param array $optParams Optional parameters.
1749 1749
    * @return Google_Service_TagManager_UserAccess
1750 1750
    */
@@ -1807,7 +1807,7 @@  discard block
 block discarded – undo
1807 1807
    *
1808 1808
    * @param string $accountId The GTM Account ID.
1809 1809
    * @param string $permissionId The GTM User ID.
1810
-   * @param Google_UserAccess $postBody
1810
+   * @param Google_Service_TagManager_UserAccess $postBody
1811 1811
    * @param array $optParams Optional parameters.
1812 1812
    * @return Google_Service_TagManager_UserAccess
1813 1813
    */
Please login to merge, or discard this patch.
Indentation   +1305 added lines, -1305 removed lines patch added patch discarded remove patch
@@ -32,25 +32,25 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Delete your Google Tag Manager containers. */
34 34
   const TAGMANAGER_DELETE_CONTAINERS =
35
-      "https://www.googleapis.com/auth/tagmanager.delete.containers";
35
+	  "https://www.googleapis.com/auth/tagmanager.delete.containers";
36 36
   /** Manage your Google Tag Manager containers. */
37 37
   const TAGMANAGER_EDIT_CONTAINERS =
38
-      "https://www.googleapis.com/auth/tagmanager.edit.containers";
38
+	  "https://www.googleapis.com/auth/tagmanager.edit.containers";
39 39
   /** Manage your Google Tag Manager container versions. */
40 40
   const TAGMANAGER_EDIT_CONTAINERVERSIONS =
41
-      "https://www.googleapis.com/auth/tagmanager.edit.containerversions";
41
+	  "https://www.googleapis.com/auth/tagmanager.edit.containerversions";
42 42
   /** Manage your Google Tag Manager accounts. */
43 43
   const TAGMANAGER_MANAGE_ACCOUNTS =
44
-      "https://www.googleapis.com/auth/tagmanager.manage.accounts";
44
+	  "https://www.googleapis.com/auth/tagmanager.manage.accounts";
45 45
   /** Manage user permissions of your Google Tag Manager data. */
46 46
   const TAGMANAGER_MANAGE_USERS =
47
-      "https://www.googleapis.com/auth/tagmanager.manage.users";
47
+	  "https://www.googleapis.com/auth/tagmanager.manage.users";
48 48
   /** Publish your Google Tag Manager containers. */
49 49
   const TAGMANAGER_PUBLISH =
50
-      "https://www.googleapis.com/auth/tagmanager.publish";
50
+	  "https://www.googleapis.com/auth/tagmanager.publish";
51 51
   /** View your Google Tag Manager containers. */
52 52
   const TAGMANAGER_READONLY =
53
-      "https://www.googleapis.com/auth/tagmanager.readonly";
53
+	  "https://www.googleapis.com/auth/tagmanager.readonly";
54 54
 
55 55
   public $accounts;
56 56
   public $accounts_containers;
@@ -70,896 +70,896 @@  discard block
 block discarded – undo
70 70
    */
71 71
   public function __construct(Google_Client $client)
72 72
   {
73
-    parent::__construct($client);
74
-    $this->rootUrl = 'https://www.googleapis.com/';
75
-    $this->servicePath = 'tagmanager/v1/';
76
-    $this->version = 'v1';
77
-    $this->serviceName = 'tagmanager';
78
-
79
-    $this->accounts = new Google_Service_TagManager_Accounts_Resource(
80
-        $this,
81
-        $this->serviceName,
82
-        'accounts',
83
-        array(
84
-          'methods' => array(
85
-            'get' => array(
86
-              'path' => 'accounts/{accountId}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'accountId' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-              ),
95
-            ),'list' => array(
96
-              'path' => 'accounts',
97
-              'httpMethod' => 'GET',
98
-              'parameters' => array(),
99
-            ),'update' => array(
100
-              'path' => 'accounts/{accountId}',
101
-              'httpMethod' => 'PUT',
102
-              'parameters' => array(
103
-                'accountId' => array(
104
-                  'location' => 'path',
105
-                  'type' => 'string',
106
-                  'required' => true,
107
-                ),
108
-                'fingerprint' => array(
109
-                  'location' => 'query',
110
-                  'type' => 'string',
111
-                ),
112
-              ),
113
-            ),
114
-          )
115
-        )
116
-    );
117
-    $this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource(
118
-        $this,
119
-        $this->serviceName,
120
-        'containers',
121
-        array(
122
-          'methods' => array(
123
-            'create' => array(
124
-              'path' => 'accounts/{accountId}/containers',
125
-              'httpMethod' => 'POST',
126
-              'parameters' => array(
127
-                'accountId' => array(
128
-                  'location' => 'path',
129
-                  'type' => 'string',
130
-                  'required' => true,
131
-                ),
132
-              ),
133
-            ),'delete' => array(
134
-              'path' => 'accounts/{accountId}/containers/{containerId}',
135
-              'httpMethod' => 'DELETE',
136
-              'parameters' => array(
137
-                'accountId' => array(
138
-                  'location' => 'path',
139
-                  'type' => 'string',
140
-                  'required' => true,
141
-                ),
142
-                'containerId' => array(
143
-                  'location' => 'path',
144
-                  'type' => 'string',
145
-                  'required' => true,
146
-                ),
147
-              ),
148
-            ),'get' => array(
149
-              'path' => 'accounts/{accountId}/containers/{containerId}',
150
-              'httpMethod' => 'GET',
151
-              'parameters' => array(
152
-                'accountId' => array(
153
-                  'location' => 'path',
154
-                  'type' => 'string',
155
-                  'required' => true,
156
-                ),
157
-                'containerId' => array(
158
-                  'location' => 'path',
159
-                  'type' => 'string',
160
-                  'required' => true,
161
-                ),
162
-              ),
163
-            ),'list' => array(
164
-              'path' => 'accounts/{accountId}/containers',
165
-              'httpMethod' => 'GET',
166
-              'parameters' => array(
167
-                'accountId' => array(
168
-                  'location' => 'path',
169
-                  'type' => 'string',
170
-                  'required' => true,
171
-                ),
172
-              ),
173
-            ),'update' => array(
174
-              'path' => 'accounts/{accountId}/containers/{containerId}',
175
-              'httpMethod' => 'PUT',
176
-              'parameters' => array(
177
-                'accountId' => array(
178
-                  'location' => 'path',
179
-                  'type' => 'string',
180
-                  'required' => true,
181
-                ),
182
-                'containerId' => array(
183
-                  'location' => 'path',
184
-                  'type' => 'string',
185
-                  'required' => true,
186
-                ),
187
-                'fingerprint' => array(
188
-                  'location' => 'query',
189
-                  'type' => 'string',
190
-                ),
191
-              ),
192
-            ),
193
-          )
194
-        )
195
-    );
196
-    $this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource(
197
-        $this,
198
-        $this->serviceName,
199
-        'macros',
200
-        array(
201
-          'methods' => array(
202
-            'create' => array(
203
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros',
204
-              'httpMethod' => 'POST',
205
-              'parameters' => array(
206
-                'accountId' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-                'containerId' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-              ),
217
-            ),'delete' => array(
218
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219
-              'httpMethod' => 'DELETE',
220
-              'parameters' => array(
221
-                'accountId' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'containerId' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'macroId' => array(
232
-                  'location' => 'path',
233
-                  'type' => 'string',
234
-                  'required' => true,
235
-                ),
236
-              ),
237
-            ),'get' => array(
238
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239
-              'httpMethod' => 'GET',
240
-              'parameters' => array(
241
-                'accountId' => array(
242
-                  'location' => 'path',
243
-                  'type' => 'string',
244
-                  'required' => true,
245
-                ),
246
-                'containerId' => array(
247
-                  'location' => 'path',
248
-                  'type' => 'string',
249
-                  'required' => true,
250
-                ),
251
-                'macroId' => array(
252
-                  'location' => 'path',
253
-                  'type' => 'string',
254
-                  'required' => true,
255
-                ),
256
-              ),
257
-            ),'list' => array(
258
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259
-              'httpMethod' => 'GET',
260
-              'parameters' => array(
261
-                'accountId' => array(
262
-                  'location' => 'path',
263
-                  'type' => 'string',
264
-                  'required' => true,
265
-                ),
266
-                'containerId' => array(
267
-                  'location' => 'path',
268
-                  'type' => 'string',
269
-                  'required' => true,
270
-                ),
271
-              ),
272
-            ),'update' => array(
273
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274
-              'httpMethod' => 'PUT',
275
-              'parameters' => array(
276
-                'accountId' => array(
277
-                  'location' => 'path',
278
-                  'type' => 'string',
279
-                  'required' => true,
280
-                ),
281
-                'containerId' => array(
282
-                  'location' => 'path',
283
-                  'type' => 'string',
284
-                  'required' => true,
285
-                ),
286
-                'macroId' => array(
287
-                  'location' => 'path',
288
-                  'type' => 'string',
289
-                  'required' => true,
290
-                ),
291
-                'fingerprint' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'string',
294
-                ),
295
-              ),
296
-            ),
297
-          )
298
-        )
299
-    );
300
-    $this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource(
301
-        $this,
302
-        $this->serviceName,
303
-        'rules',
304
-        array(
305
-          'methods' => array(
306
-            'create' => array(
307
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules',
308
-              'httpMethod' => 'POST',
309
-              'parameters' => array(
310
-                'accountId' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-                'containerId' => array(
316
-                  'location' => 'path',
317
-                  'type' => 'string',
318
-                  'required' => true,
319
-                ),
320
-              ),
321
-            ),'delete' => array(
322
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323
-              'httpMethod' => 'DELETE',
324
-              'parameters' => array(
325
-                'accountId' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-                'containerId' => array(
331
-                  'location' => 'path',
332
-                  'type' => 'string',
333
-                  'required' => true,
334
-                ),
335
-                'ruleId' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-              ),
341
-            ),'get' => array(
342
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343
-              'httpMethod' => 'GET',
344
-              'parameters' => array(
345
-                'accountId' => array(
346
-                  'location' => 'path',
347
-                  'type' => 'string',
348
-                  'required' => true,
349
-                ),
350
-                'containerId' => array(
351
-                  'location' => 'path',
352
-                  'type' => 'string',
353
-                  'required' => true,
354
-                ),
355
-                'ruleId' => array(
356
-                  'location' => 'path',
357
-                  'type' => 'string',
358
-                  'required' => true,
359
-                ),
360
-              ),
361
-            ),'list' => array(
362
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363
-              'httpMethod' => 'GET',
364
-              'parameters' => array(
365
-                'accountId' => array(
366
-                  'location' => 'path',
367
-                  'type' => 'string',
368
-                  'required' => true,
369
-                ),
370
-                'containerId' => array(
371
-                  'location' => 'path',
372
-                  'type' => 'string',
373
-                  'required' => true,
374
-                ),
375
-              ),
376
-            ),'update' => array(
377
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378
-              'httpMethod' => 'PUT',
379
-              'parameters' => array(
380
-                'accountId' => array(
381
-                  'location' => 'path',
382
-                  'type' => 'string',
383
-                  'required' => true,
384
-                ),
385
-                'containerId' => array(
386
-                  'location' => 'path',
387
-                  'type' => 'string',
388
-                  'required' => true,
389
-                ),
390
-                'ruleId' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'fingerprint' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'string',
398
-                ),
399
-              ),
400
-            ),
401
-          )
402
-        )
403
-    );
404
-    $this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource(
405
-        $this,
406
-        $this->serviceName,
407
-        'tags',
408
-        array(
409
-          'methods' => array(
410
-            'create' => array(
411
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags',
412
-              'httpMethod' => 'POST',
413
-              'parameters' => array(
414
-                'accountId' => array(
415
-                  'location' => 'path',
416
-                  'type' => 'string',
417
-                  'required' => true,
418
-                ),
419
-                'containerId' => array(
420
-                  'location' => 'path',
421
-                  'type' => 'string',
422
-                  'required' => true,
423
-                ),
424
-              ),
425
-            ),'delete' => array(
426
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427
-              'httpMethod' => 'DELETE',
428
-              'parameters' => array(
429
-                'accountId' => array(
430
-                  'location' => 'path',
431
-                  'type' => 'string',
432
-                  'required' => true,
433
-                ),
434
-                'containerId' => array(
435
-                  'location' => 'path',
436
-                  'type' => 'string',
437
-                  'required' => true,
438
-                ),
439
-                'tagId' => array(
440
-                  'location' => 'path',
441
-                  'type' => 'string',
442
-                  'required' => true,
443
-                ),
444
-              ),
445
-            ),'get' => array(
446
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447
-              'httpMethod' => 'GET',
448
-              'parameters' => array(
449
-                'accountId' => array(
450
-                  'location' => 'path',
451
-                  'type' => 'string',
452
-                  'required' => true,
453
-                ),
454
-                'containerId' => array(
455
-                  'location' => 'path',
456
-                  'type' => 'string',
457
-                  'required' => true,
458
-                ),
459
-                'tagId' => array(
460
-                  'location' => 'path',
461
-                  'type' => 'string',
462
-                  'required' => true,
463
-                ),
464
-              ),
465
-            ),'list' => array(
466
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467
-              'httpMethod' => 'GET',
468
-              'parameters' => array(
469
-                'accountId' => array(
470
-                  'location' => 'path',
471
-                  'type' => 'string',
472
-                  'required' => true,
473
-                ),
474
-                'containerId' => array(
475
-                  'location' => 'path',
476
-                  'type' => 'string',
477
-                  'required' => true,
478
-                ),
479
-              ),
480
-            ),'update' => array(
481
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482
-              'httpMethod' => 'PUT',
483
-              'parameters' => array(
484
-                'accountId' => array(
485
-                  'location' => 'path',
486
-                  'type' => 'string',
487
-                  'required' => true,
488
-                ),
489
-                'containerId' => array(
490
-                  'location' => 'path',
491
-                  'type' => 'string',
492
-                  'required' => true,
493
-                ),
494
-                'tagId' => array(
495
-                  'location' => 'path',
496
-                  'type' => 'string',
497
-                  'required' => true,
498
-                ),
499
-                'fingerprint' => array(
500
-                  'location' => 'query',
501
-                  'type' => 'string',
502
-                ),
503
-              ),
504
-            ),
505
-          )
506
-        )
507
-    );
508
-    $this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource(
509
-        $this,
510
-        $this->serviceName,
511
-        'triggers',
512
-        array(
513
-          'methods' => array(
514
-            'create' => array(
515
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
516
-              'httpMethod' => 'POST',
517
-              'parameters' => array(
518
-                'accountId' => array(
519
-                  'location' => 'path',
520
-                  'type' => 'string',
521
-                  'required' => true,
522
-                ),
523
-                'containerId' => array(
524
-                  'location' => 'path',
525
-                  'type' => 'string',
526
-                  'required' => true,
527
-                ),
528
-              ),
529
-            ),'delete' => array(
530
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531
-              'httpMethod' => 'DELETE',
532
-              'parameters' => array(
533
-                'accountId' => array(
534
-                  'location' => 'path',
535
-                  'type' => 'string',
536
-                  'required' => true,
537
-                ),
538
-                'containerId' => array(
539
-                  'location' => 'path',
540
-                  'type' => 'string',
541
-                  'required' => true,
542
-                ),
543
-                'triggerId' => array(
544
-                  'location' => 'path',
545
-                  'type' => 'string',
546
-                  'required' => true,
547
-                ),
548
-              ),
549
-            ),'get' => array(
550
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551
-              'httpMethod' => 'GET',
552
-              'parameters' => array(
553
-                'accountId' => array(
554
-                  'location' => 'path',
555
-                  'type' => 'string',
556
-                  'required' => true,
557
-                ),
558
-                'containerId' => array(
559
-                  'location' => 'path',
560
-                  'type' => 'string',
561
-                  'required' => true,
562
-                ),
563
-                'triggerId' => array(
564
-                  'location' => 'path',
565
-                  'type' => 'string',
566
-                  'required' => true,
567
-                ),
568
-              ),
569
-            ),'list' => array(
570
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571
-              'httpMethod' => 'GET',
572
-              'parameters' => array(
573
-                'accountId' => array(
574
-                  'location' => 'path',
575
-                  'type' => 'string',
576
-                  'required' => true,
577
-                ),
578
-                'containerId' => array(
579
-                  'location' => 'path',
580
-                  'type' => 'string',
581
-                  'required' => true,
582
-                ),
583
-              ),
584
-            ),'update' => array(
585
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586
-              'httpMethod' => 'PUT',
587
-              'parameters' => array(
588
-                'accountId' => array(
589
-                  'location' => 'path',
590
-                  'type' => 'string',
591
-                  'required' => true,
592
-                ),
593
-                'containerId' => array(
594
-                  'location' => 'path',
595
-                  'type' => 'string',
596
-                  'required' => true,
597
-                ),
598
-                'triggerId' => array(
599
-                  'location' => 'path',
600
-                  'type' => 'string',
601
-                  'required' => true,
602
-                ),
603
-                'fingerprint' => array(
604
-                  'location' => 'query',
605
-                  'type' => 'string',
606
-                ),
607
-              ),
608
-            ),
609
-          )
610
-        )
611
-    );
612
-    $this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource(
613
-        $this,
614
-        $this->serviceName,
615
-        'variables',
616
-        array(
617
-          'methods' => array(
618
-            'create' => array(
619
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables',
620
-              'httpMethod' => 'POST',
621
-              'parameters' => array(
622
-                'accountId' => array(
623
-                  'location' => 'path',
624
-                  'type' => 'string',
625
-                  'required' => true,
626
-                ),
627
-                'containerId' => array(
628
-                  'location' => 'path',
629
-                  'type' => 'string',
630
-                  'required' => true,
631
-                ),
632
-              ),
633
-            ),'delete' => array(
634
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635
-              'httpMethod' => 'DELETE',
636
-              'parameters' => array(
637
-                'accountId' => array(
638
-                  'location' => 'path',
639
-                  'type' => 'string',
640
-                  'required' => true,
641
-                ),
642
-                'containerId' => array(
643
-                  'location' => 'path',
644
-                  'type' => 'string',
645
-                  'required' => true,
646
-                ),
647
-                'variableId' => array(
648
-                  'location' => 'path',
649
-                  'type' => 'string',
650
-                  'required' => true,
651
-                ),
652
-              ),
653
-            ),'get' => array(
654
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655
-              'httpMethod' => 'GET',
656
-              'parameters' => array(
657
-                'accountId' => array(
658
-                  'location' => 'path',
659
-                  'type' => 'string',
660
-                  'required' => true,
661
-                ),
662
-                'containerId' => array(
663
-                  'location' => 'path',
664
-                  'type' => 'string',
665
-                  'required' => true,
666
-                ),
667
-                'variableId' => array(
668
-                  'location' => 'path',
669
-                  'type' => 'string',
670
-                  'required' => true,
671
-                ),
672
-              ),
673
-            ),'list' => array(
674
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables',
675
-              'httpMethod' => 'GET',
676
-              'parameters' => array(
677
-                'accountId' => array(
678
-                  'location' => 'path',
679
-                  'type' => 'string',
680
-                  'required' => true,
681
-                ),
682
-                'containerId' => array(
683
-                  'location' => 'path',
684
-                  'type' => 'string',
685
-                  'required' => true,
686
-                ),
687
-              ),
688
-            ),'update' => array(
689
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690
-              'httpMethod' => 'PUT',
691
-              'parameters' => array(
692
-                'accountId' => array(
693
-                  'location' => 'path',
694
-                  'type' => 'string',
695
-                  'required' => true,
696
-                ),
697
-                'containerId' => array(
698
-                  'location' => 'path',
699
-                  'type' => 'string',
700
-                  'required' => true,
701
-                ),
702
-                'variableId' => array(
703
-                  'location' => 'path',
704
-                  'type' => 'string',
705
-                  'required' => true,
706
-                ),
707
-                'fingerprint' => array(
708
-                  'location' => 'query',
709
-                  'type' => 'string',
710
-                ),
711
-              ),
712
-            ),
713
-          )
714
-        )
715
-    );
716
-    $this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource(
717
-        $this,
718
-        $this->serviceName,
719
-        'versions',
720
-        array(
721
-          'methods' => array(
722
-            'create' => array(
723
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions',
724
-              'httpMethod' => 'POST',
725
-              'parameters' => array(
726
-                'accountId' => array(
727
-                  'location' => 'path',
728
-                  'type' => 'string',
729
-                  'required' => true,
730
-                ),
731
-                'containerId' => array(
732
-                  'location' => 'path',
733
-                  'type' => 'string',
734
-                  'required' => true,
735
-                ),
736
-              ),
737
-            ),'delete' => array(
738
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739
-              'httpMethod' => 'DELETE',
740
-              'parameters' => array(
741
-                'accountId' => array(
742
-                  'location' => 'path',
743
-                  'type' => 'string',
744
-                  'required' => true,
745
-                ),
746
-                'containerId' => array(
747
-                  'location' => 'path',
748
-                  'type' => 'string',
749
-                  'required' => true,
750
-                ),
751
-                'containerVersionId' => array(
752
-                  'location' => 'path',
753
-                  'type' => 'string',
754
-                  'required' => true,
755
-                ),
756
-              ),
757
-            ),'get' => array(
758
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759
-              'httpMethod' => 'GET',
760
-              'parameters' => array(
761
-                'accountId' => array(
762
-                  'location' => 'path',
763
-                  'type' => 'string',
764
-                  'required' => true,
765
-                ),
766
-                'containerId' => array(
767
-                  'location' => 'path',
768
-                  'type' => 'string',
769
-                  'required' => true,
770
-                ),
771
-                'containerVersionId' => array(
772
-                  'location' => 'path',
773
-                  'type' => 'string',
774
-                  'required' => true,
775
-                ),
776
-              ),
777
-            ),'list' => array(
778
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779
-              'httpMethod' => 'GET',
780
-              'parameters' => array(
781
-                'accountId' => array(
782
-                  'location' => 'path',
783
-                  'type' => 'string',
784
-                  'required' => true,
785
-                ),
786
-                'containerId' => array(
787
-                  'location' => 'path',
788
-                  'type' => 'string',
789
-                  'required' => true,
790
-                ),
791
-                'headers' => array(
792
-                  'location' => 'query',
793
-                  'type' => 'boolean',
794
-                ),
795
-              ),
796
-            ),'publish' => array(
797
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798
-              'httpMethod' => 'POST',
799
-              'parameters' => array(
800
-                'accountId' => array(
801
-                  'location' => 'path',
802
-                  'type' => 'string',
803
-                  'required' => true,
804
-                ),
805
-                'containerId' => array(
806
-                  'location' => 'path',
807
-                  'type' => 'string',
808
-                  'required' => true,
809
-                ),
810
-                'containerVersionId' => array(
811
-                  'location' => 'path',
812
-                  'type' => 'string',
813
-                  'required' => true,
814
-                ),
815
-                'fingerprint' => array(
816
-                  'location' => 'query',
817
-                  'type' => 'string',
818
-                ),
819
-              ),
820
-            ),'restore' => array(
821
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822
-              'httpMethod' => 'POST',
823
-              'parameters' => array(
824
-                'accountId' => array(
825
-                  'location' => 'path',
826
-                  'type' => 'string',
827
-                  'required' => true,
828
-                ),
829
-                'containerId' => array(
830
-                  'location' => 'path',
831
-                  'type' => 'string',
832
-                  'required' => true,
833
-                ),
834
-                'containerVersionId' => array(
835
-                  'location' => 'path',
836
-                  'type' => 'string',
837
-                  'required' => true,
838
-                ),
839
-              ),
840
-            ),'undelete' => array(
841
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842
-              'httpMethod' => 'POST',
843
-              'parameters' => array(
844
-                'accountId' => array(
845
-                  'location' => 'path',
846
-                  'type' => 'string',
847
-                  'required' => true,
848
-                ),
849
-                'containerId' => array(
850
-                  'location' => 'path',
851
-                  'type' => 'string',
852
-                  'required' => true,
853
-                ),
854
-                'containerVersionId' => array(
855
-                  'location' => 'path',
856
-                  'type' => 'string',
857
-                  'required' => true,
858
-                ),
859
-              ),
860
-            ),'update' => array(
861
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862
-              'httpMethod' => 'PUT',
863
-              'parameters' => array(
864
-                'accountId' => array(
865
-                  'location' => 'path',
866
-                  'type' => 'string',
867
-                  'required' => true,
868
-                ),
869
-                'containerId' => array(
870
-                  'location' => 'path',
871
-                  'type' => 'string',
872
-                  'required' => true,
873
-                ),
874
-                'containerVersionId' => array(
875
-                  'location' => 'path',
876
-                  'type' => 'string',
877
-                  'required' => true,
878
-                ),
879
-                'fingerprint' => array(
880
-                  'location' => 'query',
881
-                  'type' => 'string',
882
-                ),
883
-              ),
884
-            ),
885
-          )
886
-        )
887
-    );
888
-    $this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource(
889
-        $this,
890
-        $this->serviceName,
891
-        'permissions',
892
-        array(
893
-          'methods' => array(
894
-            'create' => array(
895
-              'path' => 'accounts/{accountId}/permissions',
896
-              'httpMethod' => 'POST',
897
-              'parameters' => array(
898
-                'accountId' => array(
899
-                  'location' => 'path',
900
-                  'type' => 'string',
901
-                  'required' => true,
902
-                ),
903
-              ),
904
-            ),'delete' => array(
905
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
906
-              'httpMethod' => 'DELETE',
907
-              'parameters' => array(
908
-                'accountId' => array(
909
-                  'location' => 'path',
910
-                  'type' => 'string',
911
-                  'required' => true,
912
-                ),
913
-                'permissionId' => array(
914
-                  'location' => 'path',
915
-                  'type' => 'string',
916
-                  'required' => true,
917
-                ),
918
-              ),
919
-            ),'get' => array(
920
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
921
-              'httpMethod' => 'GET',
922
-              'parameters' => array(
923
-                'accountId' => array(
924
-                  'location' => 'path',
925
-                  'type' => 'string',
926
-                  'required' => true,
927
-                ),
928
-                'permissionId' => array(
929
-                  'location' => 'path',
930
-                  'type' => 'string',
931
-                  'required' => true,
932
-                ),
933
-              ),
934
-            ),'list' => array(
935
-              'path' => 'accounts/{accountId}/permissions',
936
-              'httpMethod' => 'GET',
937
-              'parameters' => array(
938
-                'accountId' => array(
939
-                  'location' => 'path',
940
-                  'type' => 'string',
941
-                  'required' => true,
942
-                ),
943
-              ),
944
-            ),'update' => array(
945
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
946
-              'httpMethod' => 'PUT',
947
-              'parameters' => array(
948
-                'accountId' => array(
949
-                  'location' => 'path',
950
-                  'type' => 'string',
951
-                  'required' => true,
952
-                ),
953
-                'permissionId' => array(
954
-                  'location' => 'path',
955
-                  'type' => 'string',
956
-                  'required' => true,
957
-                ),
958
-              ),
959
-            ),
960
-          )
961
-        )
962
-    );
73
+	parent::__construct($client);
74
+	$this->rootUrl = 'https://www.googleapis.com/';
75
+	$this->servicePath = 'tagmanager/v1/';
76
+	$this->version = 'v1';
77
+	$this->serviceName = 'tagmanager';
78
+
79
+	$this->accounts = new Google_Service_TagManager_Accounts_Resource(
80
+		$this,
81
+		$this->serviceName,
82
+		'accounts',
83
+		array(
84
+		  'methods' => array(
85
+			'get' => array(
86
+			  'path' => 'accounts/{accountId}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'accountId' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+			  ),
95
+			),'list' => array(
96
+			  'path' => 'accounts',
97
+			  'httpMethod' => 'GET',
98
+			  'parameters' => array(),
99
+			),'update' => array(
100
+			  'path' => 'accounts/{accountId}',
101
+			  'httpMethod' => 'PUT',
102
+			  'parameters' => array(
103
+				'accountId' => array(
104
+				  'location' => 'path',
105
+				  'type' => 'string',
106
+				  'required' => true,
107
+				),
108
+				'fingerprint' => array(
109
+				  'location' => 'query',
110
+				  'type' => 'string',
111
+				),
112
+			  ),
113
+			),
114
+		  )
115
+		)
116
+	);
117
+	$this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource(
118
+		$this,
119
+		$this->serviceName,
120
+		'containers',
121
+		array(
122
+		  'methods' => array(
123
+			'create' => array(
124
+			  'path' => 'accounts/{accountId}/containers',
125
+			  'httpMethod' => 'POST',
126
+			  'parameters' => array(
127
+				'accountId' => array(
128
+				  'location' => 'path',
129
+				  'type' => 'string',
130
+				  'required' => true,
131
+				),
132
+			  ),
133
+			),'delete' => array(
134
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
135
+			  'httpMethod' => 'DELETE',
136
+			  'parameters' => array(
137
+				'accountId' => array(
138
+				  'location' => 'path',
139
+				  'type' => 'string',
140
+				  'required' => true,
141
+				),
142
+				'containerId' => array(
143
+				  'location' => 'path',
144
+				  'type' => 'string',
145
+				  'required' => true,
146
+				),
147
+			  ),
148
+			),'get' => array(
149
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
150
+			  'httpMethod' => 'GET',
151
+			  'parameters' => array(
152
+				'accountId' => array(
153
+				  'location' => 'path',
154
+				  'type' => 'string',
155
+				  'required' => true,
156
+				),
157
+				'containerId' => array(
158
+				  'location' => 'path',
159
+				  'type' => 'string',
160
+				  'required' => true,
161
+				),
162
+			  ),
163
+			),'list' => array(
164
+			  'path' => 'accounts/{accountId}/containers',
165
+			  'httpMethod' => 'GET',
166
+			  'parameters' => array(
167
+				'accountId' => array(
168
+				  'location' => 'path',
169
+				  'type' => 'string',
170
+				  'required' => true,
171
+				),
172
+			  ),
173
+			),'update' => array(
174
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
175
+			  'httpMethod' => 'PUT',
176
+			  'parameters' => array(
177
+				'accountId' => array(
178
+				  'location' => 'path',
179
+				  'type' => 'string',
180
+				  'required' => true,
181
+				),
182
+				'containerId' => array(
183
+				  'location' => 'path',
184
+				  'type' => 'string',
185
+				  'required' => true,
186
+				),
187
+				'fingerprint' => array(
188
+				  'location' => 'query',
189
+				  'type' => 'string',
190
+				),
191
+			  ),
192
+			),
193
+		  )
194
+		)
195
+	);
196
+	$this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource(
197
+		$this,
198
+		$this->serviceName,
199
+		'macros',
200
+		array(
201
+		  'methods' => array(
202
+			'create' => array(
203
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros',
204
+			  'httpMethod' => 'POST',
205
+			  'parameters' => array(
206
+				'accountId' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+				'containerId' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+			  ),
217
+			),'delete' => array(
218
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219
+			  'httpMethod' => 'DELETE',
220
+			  'parameters' => array(
221
+				'accountId' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'containerId' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'macroId' => array(
232
+				  'location' => 'path',
233
+				  'type' => 'string',
234
+				  'required' => true,
235
+				),
236
+			  ),
237
+			),'get' => array(
238
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239
+			  'httpMethod' => 'GET',
240
+			  'parameters' => array(
241
+				'accountId' => array(
242
+				  'location' => 'path',
243
+				  'type' => 'string',
244
+				  'required' => true,
245
+				),
246
+				'containerId' => array(
247
+				  'location' => 'path',
248
+				  'type' => 'string',
249
+				  'required' => true,
250
+				),
251
+				'macroId' => array(
252
+				  'location' => 'path',
253
+				  'type' => 'string',
254
+				  'required' => true,
255
+				),
256
+			  ),
257
+			),'list' => array(
258
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259
+			  'httpMethod' => 'GET',
260
+			  'parameters' => array(
261
+				'accountId' => array(
262
+				  'location' => 'path',
263
+				  'type' => 'string',
264
+				  'required' => true,
265
+				),
266
+				'containerId' => array(
267
+				  'location' => 'path',
268
+				  'type' => 'string',
269
+				  'required' => true,
270
+				),
271
+			  ),
272
+			),'update' => array(
273
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274
+			  'httpMethod' => 'PUT',
275
+			  'parameters' => array(
276
+				'accountId' => array(
277
+				  'location' => 'path',
278
+				  'type' => 'string',
279
+				  'required' => true,
280
+				),
281
+				'containerId' => array(
282
+				  'location' => 'path',
283
+				  'type' => 'string',
284
+				  'required' => true,
285
+				),
286
+				'macroId' => array(
287
+				  'location' => 'path',
288
+				  'type' => 'string',
289
+				  'required' => true,
290
+				),
291
+				'fingerprint' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'string',
294
+				),
295
+			  ),
296
+			),
297
+		  )
298
+		)
299
+	);
300
+	$this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource(
301
+		$this,
302
+		$this->serviceName,
303
+		'rules',
304
+		array(
305
+		  'methods' => array(
306
+			'create' => array(
307
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules',
308
+			  'httpMethod' => 'POST',
309
+			  'parameters' => array(
310
+				'accountId' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+				'containerId' => array(
316
+				  'location' => 'path',
317
+				  'type' => 'string',
318
+				  'required' => true,
319
+				),
320
+			  ),
321
+			),'delete' => array(
322
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323
+			  'httpMethod' => 'DELETE',
324
+			  'parameters' => array(
325
+				'accountId' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+				'containerId' => array(
331
+				  'location' => 'path',
332
+				  'type' => 'string',
333
+				  'required' => true,
334
+				),
335
+				'ruleId' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+			  ),
341
+			),'get' => array(
342
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343
+			  'httpMethod' => 'GET',
344
+			  'parameters' => array(
345
+				'accountId' => array(
346
+				  'location' => 'path',
347
+				  'type' => 'string',
348
+				  'required' => true,
349
+				),
350
+				'containerId' => array(
351
+				  'location' => 'path',
352
+				  'type' => 'string',
353
+				  'required' => true,
354
+				),
355
+				'ruleId' => array(
356
+				  'location' => 'path',
357
+				  'type' => 'string',
358
+				  'required' => true,
359
+				),
360
+			  ),
361
+			),'list' => array(
362
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363
+			  'httpMethod' => 'GET',
364
+			  'parameters' => array(
365
+				'accountId' => array(
366
+				  'location' => 'path',
367
+				  'type' => 'string',
368
+				  'required' => true,
369
+				),
370
+				'containerId' => array(
371
+				  'location' => 'path',
372
+				  'type' => 'string',
373
+				  'required' => true,
374
+				),
375
+			  ),
376
+			),'update' => array(
377
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378
+			  'httpMethod' => 'PUT',
379
+			  'parameters' => array(
380
+				'accountId' => array(
381
+				  'location' => 'path',
382
+				  'type' => 'string',
383
+				  'required' => true,
384
+				),
385
+				'containerId' => array(
386
+				  'location' => 'path',
387
+				  'type' => 'string',
388
+				  'required' => true,
389
+				),
390
+				'ruleId' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'fingerprint' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'string',
398
+				),
399
+			  ),
400
+			),
401
+		  )
402
+		)
403
+	);
404
+	$this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource(
405
+		$this,
406
+		$this->serviceName,
407
+		'tags',
408
+		array(
409
+		  'methods' => array(
410
+			'create' => array(
411
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags',
412
+			  'httpMethod' => 'POST',
413
+			  'parameters' => array(
414
+				'accountId' => array(
415
+				  'location' => 'path',
416
+				  'type' => 'string',
417
+				  'required' => true,
418
+				),
419
+				'containerId' => array(
420
+				  'location' => 'path',
421
+				  'type' => 'string',
422
+				  'required' => true,
423
+				),
424
+			  ),
425
+			),'delete' => array(
426
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427
+			  'httpMethod' => 'DELETE',
428
+			  'parameters' => array(
429
+				'accountId' => array(
430
+				  'location' => 'path',
431
+				  'type' => 'string',
432
+				  'required' => true,
433
+				),
434
+				'containerId' => array(
435
+				  'location' => 'path',
436
+				  'type' => 'string',
437
+				  'required' => true,
438
+				),
439
+				'tagId' => array(
440
+				  'location' => 'path',
441
+				  'type' => 'string',
442
+				  'required' => true,
443
+				),
444
+			  ),
445
+			),'get' => array(
446
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447
+			  'httpMethod' => 'GET',
448
+			  'parameters' => array(
449
+				'accountId' => array(
450
+				  'location' => 'path',
451
+				  'type' => 'string',
452
+				  'required' => true,
453
+				),
454
+				'containerId' => array(
455
+				  'location' => 'path',
456
+				  'type' => 'string',
457
+				  'required' => true,
458
+				),
459
+				'tagId' => array(
460
+				  'location' => 'path',
461
+				  'type' => 'string',
462
+				  'required' => true,
463
+				),
464
+			  ),
465
+			),'list' => array(
466
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467
+			  'httpMethod' => 'GET',
468
+			  'parameters' => array(
469
+				'accountId' => array(
470
+				  'location' => 'path',
471
+				  'type' => 'string',
472
+				  'required' => true,
473
+				),
474
+				'containerId' => array(
475
+				  'location' => 'path',
476
+				  'type' => 'string',
477
+				  'required' => true,
478
+				),
479
+			  ),
480
+			),'update' => array(
481
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482
+			  'httpMethod' => 'PUT',
483
+			  'parameters' => array(
484
+				'accountId' => array(
485
+				  'location' => 'path',
486
+				  'type' => 'string',
487
+				  'required' => true,
488
+				),
489
+				'containerId' => array(
490
+				  'location' => 'path',
491
+				  'type' => 'string',
492
+				  'required' => true,
493
+				),
494
+				'tagId' => array(
495
+				  'location' => 'path',
496
+				  'type' => 'string',
497
+				  'required' => true,
498
+				),
499
+				'fingerprint' => array(
500
+				  'location' => 'query',
501
+				  'type' => 'string',
502
+				),
503
+			  ),
504
+			),
505
+		  )
506
+		)
507
+	);
508
+	$this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource(
509
+		$this,
510
+		$this->serviceName,
511
+		'triggers',
512
+		array(
513
+		  'methods' => array(
514
+			'create' => array(
515
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
516
+			  'httpMethod' => 'POST',
517
+			  'parameters' => array(
518
+				'accountId' => array(
519
+				  'location' => 'path',
520
+				  'type' => 'string',
521
+				  'required' => true,
522
+				),
523
+				'containerId' => array(
524
+				  'location' => 'path',
525
+				  'type' => 'string',
526
+				  'required' => true,
527
+				),
528
+			  ),
529
+			),'delete' => array(
530
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531
+			  'httpMethod' => 'DELETE',
532
+			  'parameters' => array(
533
+				'accountId' => array(
534
+				  'location' => 'path',
535
+				  'type' => 'string',
536
+				  'required' => true,
537
+				),
538
+				'containerId' => array(
539
+				  'location' => 'path',
540
+				  'type' => 'string',
541
+				  'required' => true,
542
+				),
543
+				'triggerId' => array(
544
+				  'location' => 'path',
545
+				  'type' => 'string',
546
+				  'required' => true,
547
+				),
548
+			  ),
549
+			),'get' => array(
550
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551
+			  'httpMethod' => 'GET',
552
+			  'parameters' => array(
553
+				'accountId' => array(
554
+				  'location' => 'path',
555
+				  'type' => 'string',
556
+				  'required' => true,
557
+				),
558
+				'containerId' => array(
559
+				  'location' => 'path',
560
+				  'type' => 'string',
561
+				  'required' => true,
562
+				),
563
+				'triggerId' => array(
564
+				  'location' => 'path',
565
+				  'type' => 'string',
566
+				  'required' => true,
567
+				),
568
+			  ),
569
+			),'list' => array(
570
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571
+			  'httpMethod' => 'GET',
572
+			  'parameters' => array(
573
+				'accountId' => array(
574
+				  'location' => 'path',
575
+				  'type' => 'string',
576
+				  'required' => true,
577
+				),
578
+				'containerId' => array(
579
+				  'location' => 'path',
580
+				  'type' => 'string',
581
+				  'required' => true,
582
+				),
583
+			  ),
584
+			),'update' => array(
585
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586
+			  'httpMethod' => 'PUT',
587
+			  'parameters' => array(
588
+				'accountId' => array(
589
+				  'location' => 'path',
590
+				  'type' => 'string',
591
+				  'required' => true,
592
+				),
593
+				'containerId' => array(
594
+				  'location' => 'path',
595
+				  'type' => 'string',
596
+				  'required' => true,
597
+				),
598
+				'triggerId' => array(
599
+				  'location' => 'path',
600
+				  'type' => 'string',
601
+				  'required' => true,
602
+				),
603
+				'fingerprint' => array(
604
+				  'location' => 'query',
605
+				  'type' => 'string',
606
+				),
607
+			  ),
608
+			),
609
+		  )
610
+		)
611
+	);
612
+	$this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource(
613
+		$this,
614
+		$this->serviceName,
615
+		'variables',
616
+		array(
617
+		  'methods' => array(
618
+			'create' => array(
619
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables',
620
+			  'httpMethod' => 'POST',
621
+			  'parameters' => array(
622
+				'accountId' => array(
623
+				  'location' => 'path',
624
+				  'type' => 'string',
625
+				  'required' => true,
626
+				),
627
+				'containerId' => array(
628
+				  'location' => 'path',
629
+				  'type' => 'string',
630
+				  'required' => true,
631
+				),
632
+			  ),
633
+			),'delete' => array(
634
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635
+			  'httpMethod' => 'DELETE',
636
+			  'parameters' => array(
637
+				'accountId' => array(
638
+				  'location' => 'path',
639
+				  'type' => 'string',
640
+				  'required' => true,
641
+				),
642
+				'containerId' => array(
643
+				  'location' => 'path',
644
+				  'type' => 'string',
645
+				  'required' => true,
646
+				),
647
+				'variableId' => array(
648
+				  'location' => 'path',
649
+				  'type' => 'string',
650
+				  'required' => true,
651
+				),
652
+			  ),
653
+			),'get' => array(
654
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655
+			  'httpMethod' => 'GET',
656
+			  'parameters' => array(
657
+				'accountId' => array(
658
+				  'location' => 'path',
659
+				  'type' => 'string',
660
+				  'required' => true,
661
+				),
662
+				'containerId' => array(
663
+				  'location' => 'path',
664
+				  'type' => 'string',
665
+				  'required' => true,
666
+				),
667
+				'variableId' => array(
668
+				  'location' => 'path',
669
+				  'type' => 'string',
670
+				  'required' => true,
671
+				),
672
+			  ),
673
+			),'list' => array(
674
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables',
675
+			  'httpMethod' => 'GET',
676
+			  'parameters' => array(
677
+				'accountId' => array(
678
+				  'location' => 'path',
679
+				  'type' => 'string',
680
+				  'required' => true,
681
+				),
682
+				'containerId' => array(
683
+				  'location' => 'path',
684
+				  'type' => 'string',
685
+				  'required' => true,
686
+				),
687
+			  ),
688
+			),'update' => array(
689
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690
+			  'httpMethod' => 'PUT',
691
+			  'parameters' => array(
692
+				'accountId' => array(
693
+				  'location' => 'path',
694
+				  'type' => 'string',
695
+				  'required' => true,
696
+				),
697
+				'containerId' => array(
698
+				  'location' => 'path',
699
+				  'type' => 'string',
700
+				  'required' => true,
701
+				),
702
+				'variableId' => array(
703
+				  'location' => 'path',
704
+				  'type' => 'string',
705
+				  'required' => true,
706
+				),
707
+				'fingerprint' => array(
708
+				  'location' => 'query',
709
+				  'type' => 'string',
710
+				),
711
+			  ),
712
+			),
713
+		  )
714
+		)
715
+	);
716
+	$this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource(
717
+		$this,
718
+		$this->serviceName,
719
+		'versions',
720
+		array(
721
+		  'methods' => array(
722
+			'create' => array(
723
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions',
724
+			  'httpMethod' => 'POST',
725
+			  'parameters' => array(
726
+				'accountId' => array(
727
+				  'location' => 'path',
728
+				  'type' => 'string',
729
+				  'required' => true,
730
+				),
731
+				'containerId' => array(
732
+				  'location' => 'path',
733
+				  'type' => 'string',
734
+				  'required' => true,
735
+				),
736
+			  ),
737
+			),'delete' => array(
738
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739
+			  'httpMethod' => 'DELETE',
740
+			  'parameters' => array(
741
+				'accountId' => array(
742
+				  'location' => 'path',
743
+				  'type' => 'string',
744
+				  'required' => true,
745
+				),
746
+				'containerId' => array(
747
+				  'location' => 'path',
748
+				  'type' => 'string',
749
+				  'required' => true,
750
+				),
751
+				'containerVersionId' => array(
752
+				  'location' => 'path',
753
+				  'type' => 'string',
754
+				  'required' => true,
755
+				),
756
+			  ),
757
+			),'get' => array(
758
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759
+			  'httpMethod' => 'GET',
760
+			  'parameters' => array(
761
+				'accountId' => array(
762
+				  'location' => 'path',
763
+				  'type' => 'string',
764
+				  'required' => true,
765
+				),
766
+				'containerId' => array(
767
+				  'location' => 'path',
768
+				  'type' => 'string',
769
+				  'required' => true,
770
+				),
771
+				'containerVersionId' => array(
772
+				  'location' => 'path',
773
+				  'type' => 'string',
774
+				  'required' => true,
775
+				),
776
+			  ),
777
+			),'list' => array(
778
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779
+			  'httpMethod' => 'GET',
780
+			  'parameters' => array(
781
+				'accountId' => array(
782
+				  'location' => 'path',
783
+				  'type' => 'string',
784
+				  'required' => true,
785
+				),
786
+				'containerId' => array(
787
+				  'location' => 'path',
788
+				  'type' => 'string',
789
+				  'required' => true,
790
+				),
791
+				'headers' => array(
792
+				  'location' => 'query',
793
+				  'type' => 'boolean',
794
+				),
795
+			  ),
796
+			),'publish' => array(
797
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798
+			  'httpMethod' => 'POST',
799
+			  'parameters' => array(
800
+				'accountId' => array(
801
+				  'location' => 'path',
802
+				  'type' => 'string',
803
+				  'required' => true,
804
+				),
805
+				'containerId' => array(
806
+				  'location' => 'path',
807
+				  'type' => 'string',
808
+				  'required' => true,
809
+				),
810
+				'containerVersionId' => array(
811
+				  'location' => 'path',
812
+				  'type' => 'string',
813
+				  'required' => true,
814
+				),
815
+				'fingerprint' => array(
816
+				  'location' => 'query',
817
+				  'type' => 'string',
818
+				),
819
+			  ),
820
+			),'restore' => array(
821
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822
+			  'httpMethod' => 'POST',
823
+			  'parameters' => array(
824
+				'accountId' => array(
825
+				  'location' => 'path',
826
+				  'type' => 'string',
827
+				  'required' => true,
828
+				),
829
+				'containerId' => array(
830
+				  'location' => 'path',
831
+				  'type' => 'string',
832
+				  'required' => true,
833
+				),
834
+				'containerVersionId' => array(
835
+				  'location' => 'path',
836
+				  'type' => 'string',
837
+				  'required' => true,
838
+				),
839
+			  ),
840
+			),'undelete' => array(
841
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842
+			  'httpMethod' => 'POST',
843
+			  'parameters' => array(
844
+				'accountId' => array(
845
+				  'location' => 'path',
846
+				  'type' => 'string',
847
+				  'required' => true,
848
+				),
849
+				'containerId' => array(
850
+				  'location' => 'path',
851
+				  'type' => 'string',
852
+				  'required' => true,
853
+				),
854
+				'containerVersionId' => array(
855
+				  'location' => 'path',
856
+				  'type' => 'string',
857
+				  'required' => true,
858
+				),
859
+			  ),
860
+			),'update' => array(
861
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862
+			  'httpMethod' => 'PUT',
863
+			  'parameters' => array(
864
+				'accountId' => array(
865
+				  'location' => 'path',
866
+				  'type' => 'string',
867
+				  'required' => true,
868
+				),
869
+				'containerId' => array(
870
+				  'location' => 'path',
871
+				  'type' => 'string',
872
+				  'required' => true,
873
+				),
874
+				'containerVersionId' => array(
875
+				  'location' => 'path',
876
+				  'type' => 'string',
877
+				  'required' => true,
878
+				),
879
+				'fingerprint' => array(
880
+				  'location' => 'query',
881
+				  'type' => 'string',
882
+				),
883
+			  ),
884
+			),
885
+		  )
886
+		)
887
+	);
888
+	$this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource(
889
+		$this,
890
+		$this->serviceName,
891
+		'permissions',
892
+		array(
893
+		  'methods' => array(
894
+			'create' => array(
895
+			  'path' => 'accounts/{accountId}/permissions',
896
+			  'httpMethod' => 'POST',
897
+			  'parameters' => array(
898
+				'accountId' => array(
899
+				  'location' => 'path',
900
+				  'type' => 'string',
901
+				  'required' => true,
902
+				),
903
+			  ),
904
+			),'delete' => array(
905
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
906
+			  'httpMethod' => 'DELETE',
907
+			  'parameters' => array(
908
+				'accountId' => array(
909
+				  'location' => 'path',
910
+				  'type' => 'string',
911
+				  'required' => true,
912
+				),
913
+				'permissionId' => array(
914
+				  'location' => 'path',
915
+				  'type' => 'string',
916
+				  'required' => true,
917
+				),
918
+			  ),
919
+			),'get' => array(
920
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
921
+			  'httpMethod' => 'GET',
922
+			  'parameters' => array(
923
+				'accountId' => array(
924
+				  'location' => 'path',
925
+				  'type' => 'string',
926
+				  'required' => true,
927
+				),
928
+				'permissionId' => array(
929
+				  'location' => 'path',
930
+				  'type' => 'string',
931
+				  'required' => true,
932
+				),
933
+			  ),
934
+			),'list' => array(
935
+			  'path' => 'accounts/{accountId}/permissions',
936
+			  'httpMethod' => 'GET',
937
+			  'parameters' => array(
938
+				'accountId' => array(
939
+				  'location' => 'path',
940
+				  'type' => 'string',
941
+				  'required' => true,
942
+				),
943
+			  ),
944
+			),'update' => array(
945
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
946
+			  'httpMethod' => 'PUT',
947
+			  'parameters' => array(
948
+				'accountId' => array(
949
+				  'location' => 'path',
950
+				  'type' => 'string',
951
+				  'required' => true,
952
+				),
953
+				'permissionId' => array(
954
+				  'location' => 'path',
955
+				  'type' => 'string',
956
+				  'required' => true,
957
+				),
958
+			  ),
959
+			),
960
+		  )
961
+		)
962
+	);
963 963
   }
964 964
 }
965 965
 
@@ -984,9 +984,9 @@  discard block
 block discarded – undo
984 984
    */
985 985
   public function get($accountId, $optParams = array())
986 986
   {
987
-    $params = array('accountId' => $accountId);
988
-    $params = array_merge($params, $optParams);
989
-    return $this->call('get', array($params), "Google_Service_TagManager_Account");
987
+	$params = array('accountId' => $accountId);
988
+	$params = array_merge($params, $optParams);
989
+	return $this->call('get', array($params), "Google_Service_TagManager_Account");
990 990
   }
991 991
 
992 992
   /**
@@ -997,9 +997,9 @@  discard block
 block discarded – undo
997 997
    */
998 998
   public function listAccounts($optParams = array())
999 999
   {
1000
-    $params = array();
1001
-    $params = array_merge($params, $optParams);
1002
-    return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse");
1000
+	$params = array();
1001
+	$params = array_merge($params, $optParams);
1002
+	return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse");
1003 1003
   }
1004 1004
 
1005 1005
   /**
@@ -1015,9 +1015,9 @@  discard block
 block discarded – undo
1015 1015
    */
1016 1016
   public function update($accountId, Google_Service_TagManager_Account $postBody, $optParams = array())
1017 1017
   {
1018
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1019
-    $params = array_merge($params, $optParams);
1020
-    return $this->call('update', array($params), "Google_Service_TagManager_Account");
1018
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1019
+	$params = array_merge($params, $optParams);
1020
+	return $this->call('update', array($params), "Google_Service_TagManager_Account");
1021 1021
   }
1022 1022
 }
1023 1023
 
@@ -1042,9 +1042,9 @@  discard block
 block discarded – undo
1042 1042
    */
1043 1043
   public function create($accountId, Google_Service_TagManager_Container $postBody, $optParams = array())
1044 1044
   {
1045
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1046
-    $params = array_merge($params, $optParams);
1047
-    return $this->call('create', array($params), "Google_Service_TagManager_Container");
1045
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1046
+	$params = array_merge($params, $optParams);
1047
+	return $this->call('create', array($params), "Google_Service_TagManager_Container");
1048 1048
   }
1049 1049
 
1050 1050
   /**
@@ -1056,9 +1056,9 @@  discard block
 block discarded – undo
1056 1056
    */
1057 1057
   public function delete($accountId, $containerId, $optParams = array())
1058 1058
   {
1059
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1060
-    $params = array_merge($params, $optParams);
1061
-    return $this->call('delete', array($params));
1059
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1060
+	$params = array_merge($params, $optParams);
1061
+	return $this->call('delete', array($params));
1062 1062
   }
1063 1063
 
1064 1064
   /**
@@ -1071,9 +1071,9 @@  discard block
 block discarded – undo
1071 1071
    */
1072 1072
   public function get($accountId, $containerId, $optParams = array())
1073 1073
   {
1074
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1075
-    $params = array_merge($params, $optParams);
1076
-    return $this->call('get', array($params), "Google_Service_TagManager_Container");
1074
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1075
+	$params = array_merge($params, $optParams);
1076
+	return $this->call('get', array($params), "Google_Service_TagManager_Container");
1077 1077
   }
1078 1078
 
1079 1079
   /**
@@ -1086,9 +1086,9 @@  discard block
 block discarded – undo
1086 1086
    */
1087 1087
   public function listAccountsContainers($accountId, $optParams = array())
1088 1088
   {
1089
-    $params = array('accountId' => $accountId);
1090
-    $params = array_merge($params, $optParams);
1091
-    return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse");
1089
+	$params = array('accountId' => $accountId);
1090
+	$params = array_merge($params, $optParams);
1091
+	return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse");
1092 1092
   }
1093 1093
 
1094 1094
   /**
@@ -1105,9 +1105,9 @@  discard block
 block discarded – undo
1105 1105
    */
1106 1106
   public function update($accountId, $containerId, Google_Service_TagManager_Container $postBody, $optParams = array())
1107 1107
   {
1108
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1109
-    $params = array_merge($params, $optParams);
1110
-    return $this->call('update', array($params), "Google_Service_TagManager_Container");
1108
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1109
+	$params = array_merge($params, $optParams);
1110
+	return $this->call('update', array($params), "Google_Service_TagManager_Container");
1111 1111
   }
1112 1112
 }
1113 1113
 
@@ -1133,9 +1133,9 @@  discard block
 block discarded – undo
1133 1133
    */
1134 1134
   public function create($accountId, $containerId, Google_Service_TagManager_Macro $postBody, $optParams = array())
1135 1135
   {
1136
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1137
-    $params = array_merge($params, $optParams);
1138
-    return $this->call('create', array($params), "Google_Service_TagManager_Macro");
1136
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1137
+	$params = array_merge($params, $optParams);
1138
+	return $this->call('create', array($params), "Google_Service_TagManager_Macro");
1139 1139
   }
1140 1140
 
1141 1141
   /**
@@ -1148,9 +1148,9 @@  discard block
 block discarded – undo
1148 1148
    */
1149 1149
   public function delete($accountId, $containerId, $macroId, $optParams = array())
1150 1150
   {
1151
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1152
-    $params = array_merge($params, $optParams);
1153
-    return $this->call('delete', array($params));
1151
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1152
+	$params = array_merge($params, $optParams);
1153
+	return $this->call('delete', array($params));
1154 1154
   }
1155 1155
 
1156 1156
   /**
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
    */
1165 1165
   public function get($accountId, $containerId, $macroId, $optParams = array())
1166 1166
   {
1167
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1168
-    $params = array_merge($params, $optParams);
1169
-    return $this->call('get', array($params), "Google_Service_TagManager_Macro");
1167
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1168
+	$params = array_merge($params, $optParams);
1169
+	return $this->call('get', array($params), "Google_Service_TagManager_Macro");
1170 1170
   }
1171 1171
 
1172 1172
   /**
@@ -1179,9 +1179,9 @@  discard block
 block discarded – undo
1179 1179
    */
1180 1180
   public function listAccountsContainersMacros($accountId, $containerId, $optParams = array())
1181 1181
   {
1182
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1183
-    $params = array_merge($params, $optParams);
1184
-    return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse");
1182
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1183
+	$params = array_merge($params, $optParams);
1184
+	return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse");
1185 1185
   }
1186 1186
 
1187 1187
   /**
@@ -1199,9 +1199,9 @@  discard block
 block discarded – undo
1199 1199
    */
1200 1200
   public function update($accountId, $containerId, $macroId, Google_Service_TagManager_Macro $postBody, $optParams = array())
1201 1201
   {
1202
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody);
1203
-    $params = array_merge($params, $optParams);
1204
-    return $this->call('update', array($params), "Google_Service_TagManager_Macro");
1202
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody);
1203
+	$params = array_merge($params, $optParams);
1204
+	return $this->call('update', array($params), "Google_Service_TagManager_Macro");
1205 1205
   }
1206 1206
 }
1207 1207
 /**
@@ -1226,9 +1226,9 @@  discard block
 block discarded – undo
1226 1226
    */
1227 1227
   public function create($accountId, $containerId, Google_Service_TagManager_Rule $postBody, $optParams = array())
1228 1228
   {
1229
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1230
-    $params = array_merge($params, $optParams);
1231
-    return $this->call('create', array($params), "Google_Service_TagManager_Rule");
1229
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1230
+	$params = array_merge($params, $optParams);
1231
+	return $this->call('create', array($params), "Google_Service_TagManager_Rule");
1232 1232
   }
1233 1233
 
1234 1234
   /**
@@ -1241,9 +1241,9 @@  discard block
 block discarded – undo
1241 1241
    */
1242 1242
   public function delete($accountId, $containerId, $ruleId, $optParams = array())
1243 1243
   {
1244
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1245
-    $params = array_merge($params, $optParams);
1246
-    return $this->call('delete', array($params));
1244
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1245
+	$params = array_merge($params, $optParams);
1246
+	return $this->call('delete', array($params));
1247 1247
   }
1248 1248
 
1249 1249
   /**
@@ -1257,9 +1257,9 @@  discard block
 block discarded – undo
1257 1257
    */
1258 1258
   public function get($accountId, $containerId, $ruleId, $optParams = array())
1259 1259
   {
1260
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1261
-    $params = array_merge($params, $optParams);
1262
-    return $this->call('get', array($params), "Google_Service_TagManager_Rule");
1260
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1261
+	$params = array_merge($params, $optParams);
1262
+	return $this->call('get', array($params), "Google_Service_TagManager_Rule");
1263 1263
   }
1264 1264
 
1265 1265
   /**
@@ -1272,9 +1272,9 @@  discard block
 block discarded – undo
1272 1272
    */
1273 1273
   public function listAccountsContainersRules($accountId, $containerId, $optParams = array())
1274 1274
   {
1275
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1276
-    $params = array_merge($params, $optParams);
1277
-    return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse");
1275
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1276
+	$params = array_merge($params, $optParams);
1277
+	return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse");
1278 1278
   }
1279 1279
 
1280 1280
   /**
@@ -1292,9 +1292,9 @@  discard block
 block discarded – undo
1292 1292
    */
1293 1293
   public function update($accountId, $containerId, $ruleId, Google_Service_TagManager_Rule $postBody, $optParams = array())
1294 1294
   {
1295
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody);
1296
-    $params = array_merge($params, $optParams);
1297
-    return $this->call('update', array($params), "Google_Service_TagManager_Rule");
1295
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody);
1296
+	$params = array_merge($params, $optParams);
1297
+	return $this->call('update', array($params), "Google_Service_TagManager_Rule");
1298 1298
   }
1299 1299
 }
1300 1300
 /**
@@ -1319,9 +1319,9 @@  discard block
 block discarded – undo
1319 1319
    */
1320 1320
   public function create($accountId, $containerId, Google_Service_TagManager_Tag $postBody, $optParams = array())
1321 1321
   {
1322
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1323
-    $params = array_merge($params, $optParams);
1324
-    return $this->call('create', array($params), "Google_Service_TagManager_Tag");
1322
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1323
+	$params = array_merge($params, $optParams);
1324
+	return $this->call('create', array($params), "Google_Service_TagManager_Tag");
1325 1325
   }
1326 1326
 
1327 1327
   /**
@@ -1334,9 +1334,9 @@  discard block
 block discarded – undo
1334 1334
    */
1335 1335
   public function delete($accountId, $containerId, $tagId, $optParams = array())
1336 1336
   {
1337
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1338
-    $params = array_merge($params, $optParams);
1339
-    return $this->call('delete', array($params));
1337
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1338
+	$params = array_merge($params, $optParams);
1339
+	return $this->call('delete', array($params));
1340 1340
   }
1341 1341
 
1342 1342
   /**
@@ -1350,9 +1350,9 @@  discard block
 block discarded – undo
1350 1350
    */
1351 1351
   public function get($accountId, $containerId, $tagId, $optParams = array())
1352 1352
   {
1353
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1354
-    $params = array_merge($params, $optParams);
1355
-    return $this->call('get', array($params), "Google_Service_TagManager_Tag");
1353
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1354
+	$params = array_merge($params, $optParams);
1355
+	return $this->call('get', array($params), "Google_Service_TagManager_Tag");
1356 1356
   }
1357 1357
 
1358 1358
   /**
@@ -1365,9 +1365,9 @@  discard block
 block discarded – undo
1365 1365
    */
1366 1366
   public function listAccountsContainersTags($accountId, $containerId, $optParams = array())
1367 1367
   {
1368
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1369
-    $params = array_merge($params, $optParams);
1370
-    return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse");
1368
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1369
+	$params = array_merge($params, $optParams);
1370
+	return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse");
1371 1371
   }
1372 1372
 
1373 1373
   /**
@@ -1385,9 +1385,9 @@  discard block
 block discarded – undo
1385 1385
    */
1386 1386
   public function update($accountId, $containerId, $tagId, Google_Service_TagManager_Tag $postBody, $optParams = array())
1387 1387
   {
1388
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody);
1389
-    $params = array_merge($params, $optParams);
1390
-    return $this->call('update', array($params), "Google_Service_TagManager_Tag");
1388
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody);
1389
+	$params = array_merge($params, $optParams);
1390
+	return $this->call('update', array($params), "Google_Service_TagManager_Tag");
1391 1391
   }
1392 1392
 }
1393 1393
 /**
@@ -1412,9 +1412,9 @@  discard block
 block discarded – undo
1412 1412
    */
1413 1413
   public function create($accountId, $containerId, Google_Service_TagManager_Trigger $postBody, $optParams = array())
1414 1414
   {
1415
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1416
-    $params = array_merge($params, $optParams);
1417
-    return $this->call('create', array($params), "Google_Service_TagManager_Trigger");
1415
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1416
+	$params = array_merge($params, $optParams);
1417
+	return $this->call('create', array($params), "Google_Service_TagManager_Trigger");
1418 1418
   }
1419 1419
 
1420 1420
   /**
@@ -1427,9 +1427,9 @@  discard block
 block discarded – undo
1427 1427
    */
1428 1428
   public function delete($accountId, $containerId, $triggerId, $optParams = array())
1429 1429
   {
1430
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1431
-    $params = array_merge($params, $optParams);
1432
-    return $this->call('delete', array($params));
1430
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1431
+	$params = array_merge($params, $optParams);
1432
+	return $this->call('delete', array($params));
1433 1433
   }
1434 1434
 
1435 1435
   /**
@@ -1443,9 +1443,9 @@  discard block
 block discarded – undo
1443 1443
    */
1444 1444
   public function get($accountId, $containerId, $triggerId, $optParams = array())
1445 1445
   {
1446
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1447
-    $params = array_merge($params, $optParams);
1448
-    return $this->call('get', array($params), "Google_Service_TagManager_Trigger");
1446
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1447
+	$params = array_merge($params, $optParams);
1448
+	return $this->call('get', array($params), "Google_Service_TagManager_Trigger");
1449 1449
   }
1450 1450
 
1451 1451
   /**
@@ -1459,9 +1459,9 @@  discard block
 block discarded – undo
1459 1459
    */
1460 1460
   public function listAccountsContainersTriggers($accountId, $containerId, $optParams = array())
1461 1461
   {
1462
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1463
-    $params = array_merge($params, $optParams);
1464
-    return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse");
1462
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1463
+	$params = array_merge($params, $optParams);
1464
+	return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse");
1465 1465
   }
1466 1466
 
1467 1467
   /**
@@ -1479,9 +1479,9 @@  discard block
 block discarded – undo
1479 1479
    */
1480 1480
   public function update($accountId, $containerId, $triggerId, Google_Service_TagManager_Trigger $postBody, $optParams = array())
1481 1481
   {
1482
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody);
1483
-    $params = array_merge($params, $optParams);
1484
-    return $this->call('update', array($params), "Google_Service_TagManager_Trigger");
1482
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody);
1483
+	$params = array_merge($params, $optParams);
1484
+	return $this->call('update', array($params), "Google_Service_TagManager_Trigger");
1485 1485
   }
1486 1486
 }
1487 1487
 /**
@@ -1506,9 +1506,9 @@  discard block
 block discarded – undo
1506 1506
    */
1507 1507
   public function create($accountId, $containerId, Google_Service_TagManager_Variable $postBody, $optParams = array())
1508 1508
   {
1509
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1510
-    $params = array_merge($params, $optParams);
1511
-    return $this->call('create', array($params), "Google_Service_TagManager_Variable");
1509
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1510
+	$params = array_merge($params, $optParams);
1511
+	return $this->call('create', array($params), "Google_Service_TagManager_Variable");
1512 1512
   }
1513 1513
 
1514 1514
   /**
@@ -1521,9 +1521,9 @@  discard block
 block discarded – undo
1521 1521
    */
1522 1522
   public function delete($accountId, $containerId, $variableId, $optParams = array())
1523 1523
   {
1524
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1525
-    $params = array_merge($params, $optParams);
1526
-    return $this->call('delete', array($params));
1524
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1525
+	$params = array_merge($params, $optParams);
1526
+	return $this->call('delete', array($params));
1527 1527
   }
1528 1528
 
1529 1529
   /**
@@ -1537,9 +1537,9 @@  discard block
 block discarded – undo
1537 1537
    */
1538 1538
   public function get($accountId, $containerId, $variableId, $optParams = array())
1539 1539
   {
1540
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1541
-    $params = array_merge($params, $optParams);
1542
-    return $this->call('get', array($params), "Google_Service_TagManager_Variable");
1540
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1541
+	$params = array_merge($params, $optParams);
1542
+	return $this->call('get', array($params), "Google_Service_TagManager_Variable");
1543 1543
   }
1544 1544
 
1545 1545
   /**
@@ -1553,9 +1553,9 @@  discard block
 block discarded – undo
1553 1553
    */
1554 1554
   public function listAccountsContainersVariables($accountId, $containerId, $optParams = array())
1555 1555
   {
1556
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1557
-    $params = array_merge($params, $optParams);
1558
-    return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse");
1556
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1557
+	$params = array_merge($params, $optParams);
1558
+	return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse");
1559 1559
   }
1560 1560
 
1561 1561
   /**
@@ -1573,9 +1573,9 @@  discard block
 block discarded – undo
1573 1573
    */
1574 1574
   public function update($accountId, $containerId, $variableId, Google_Service_TagManager_Variable $postBody, $optParams = array())
1575 1575
   {
1576
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody);
1577
-    $params = array_merge($params, $optParams);
1578
-    return $this->call('update', array($params), "Google_Service_TagManager_Variable");
1576
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody);
1577
+	$params = array_merge($params, $optParams);
1578
+	return $this->call('update', array($params), "Google_Service_TagManager_Variable");
1579 1579
   }
1580 1580
 }
1581 1581
 /**
@@ -1600,9 +1600,9 @@  discard block
 block discarded – undo
1600 1600
    */
1601 1601
   public function create($accountId, $containerId, Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody, $optParams = array())
1602 1602
   {
1603
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1604
-    $params = array_merge($params, $optParams);
1605
-    return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse");
1603
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1604
+	$params = array_merge($params, $optParams);
1605
+	return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse");
1606 1606
   }
1607 1607
 
1608 1608
   /**
@@ -1615,9 +1615,9 @@  discard block
 block discarded – undo
1615 1615
    */
1616 1616
   public function delete($accountId, $containerId, $containerVersionId, $optParams = array())
1617 1617
   {
1618
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1619
-    $params = array_merge($params, $optParams);
1620
-    return $this->call('delete', array($params));
1618
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1619
+	$params = array_merge($params, $optParams);
1620
+	return $this->call('delete', array($params));
1621 1621
   }
1622 1622
 
1623 1623
   /**
@@ -1632,9 +1632,9 @@  discard block
 block discarded – undo
1632 1632
    */
1633 1633
   public function get($accountId, $containerId, $containerVersionId, $optParams = array())
1634 1634
   {
1635
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1636
-    $params = array_merge($params, $optParams);
1637
-    return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion");
1635
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1636
+	$params = array_merge($params, $optParams);
1637
+	return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion");
1638 1638
   }
1639 1639
 
1640 1640
   /**
@@ -1650,9 +1650,9 @@  discard block
 block discarded – undo
1650 1650
    */
1651 1651
   public function listAccountsContainersVersions($accountId, $containerId, $optParams = array())
1652 1652
   {
1653
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1654
-    $params = array_merge($params, $optParams);
1655
-    return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse");
1653
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1654
+	$params = array_merge($params, $optParams);
1655
+	return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse");
1656 1656
   }
1657 1657
 
1658 1658
   /**
@@ -1669,9 +1669,9 @@  discard block
 block discarded – undo
1669 1669
    */
1670 1670
   public function publish($accountId, $containerId, $containerVersionId, $optParams = array())
1671 1671
   {
1672
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1673
-    $params = array_merge($params, $optParams);
1674
-    return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse");
1672
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1673
+	$params = array_merge($params, $optParams);
1674
+	return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse");
1675 1675
   }
1676 1676
 
1677 1677
   /**
@@ -1688,9 +1688,9 @@  discard block
 block discarded – undo
1688 1688
    */
1689 1689
   public function restore($accountId, $containerId, $containerVersionId, $optParams = array())
1690 1690
   {
1691
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1692
-    $params = array_merge($params, $optParams);
1693
-    return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion");
1691
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1692
+	$params = array_merge($params, $optParams);
1693
+	return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion");
1694 1694
   }
1695 1695
 
1696 1696
   /**
@@ -1704,9 +1704,9 @@  discard block
 block discarded – undo
1704 1704
    */
1705 1705
   public function undelete($accountId, $containerId, $containerVersionId, $optParams = array())
1706 1706
   {
1707
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1708
-    $params = array_merge($params, $optParams);
1709
-    return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion");
1707
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1708
+	$params = array_merge($params, $optParams);
1709
+	return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion");
1710 1710
   }
1711 1711
 
1712 1712
   /**
@@ -1724,9 +1724,9 @@  discard block
 block discarded – undo
1724 1724
    */
1725 1725
   public function update($accountId, $containerId, $containerVersionId, Google_Service_TagManager_ContainerVersion $postBody, $optParams = array())
1726 1726
   {
1727
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody);
1728
-    $params = array_merge($params, $optParams);
1729
-    return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion");
1727
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody);
1728
+	$params = array_merge($params, $optParams);
1729
+	return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion");
1730 1730
   }
1731 1731
 }
1732 1732
 /**
@@ -1750,9 +1750,9 @@  discard block
 block discarded – undo
1750 1750
    */
1751 1751
   public function create($accountId, Google_Service_TagManager_UserAccess $postBody, $optParams = array())
1752 1752
   {
1753
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1754
-    $params = array_merge($params, $optParams);
1755
-    return $this->call('create', array($params), "Google_Service_TagManager_UserAccess");
1753
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1754
+	$params = array_merge($params, $optParams);
1755
+	return $this->call('create', array($params), "Google_Service_TagManager_UserAccess");
1756 1756
   }
1757 1757
 
1758 1758
   /**
@@ -1765,9 +1765,9 @@  discard block
 block discarded – undo
1765 1765
    */
1766 1766
   public function delete($accountId, $permissionId, $optParams = array())
1767 1767
   {
1768
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1769
-    $params = array_merge($params, $optParams);
1770
-    return $this->call('delete', array($params));
1768
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1769
+	$params = array_merge($params, $optParams);
1770
+	return $this->call('delete', array($params));
1771 1771
   }
1772 1772
 
1773 1773
   /**
@@ -1780,9 +1780,9 @@  discard block
 block discarded – undo
1780 1780
    */
1781 1781
   public function get($accountId, $permissionId, $optParams = array())
1782 1782
   {
1783
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1784
-    $params = array_merge($params, $optParams);
1785
-    return $this->call('get', array($params), "Google_Service_TagManager_UserAccess");
1783
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1784
+	$params = array_merge($params, $optParams);
1785
+	return $this->call('get', array($params), "Google_Service_TagManager_UserAccess");
1786 1786
   }
1787 1787
 
1788 1788
   /**
@@ -1797,9 +1797,9 @@  discard block
 block discarded – undo
1797 1797
    */
1798 1798
   public function listAccountsPermissions($accountId, $optParams = array())
1799 1799
   {
1800
-    $params = array('accountId' => $accountId);
1801
-    $params = array_merge($params, $optParams);
1802
-    return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse");
1800
+	$params = array('accountId' => $accountId);
1801
+	$params = array_merge($params, $optParams);
1802
+	return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse");
1803 1803
   }
1804 1804
 
1805 1805
   /**
@@ -1813,9 +1813,9 @@  discard block
 block discarded – undo
1813 1813
    */
1814 1814
   public function update($accountId, $permissionId, Google_Service_TagManager_UserAccess $postBody, $optParams = array())
1815 1815
   {
1816
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody);
1817
-    $params = array_merge($params, $optParams);
1818
-    return $this->call('update', array($params), "Google_Service_TagManager_UserAccess");
1816
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody);
1817
+	$params = array_merge($params, $optParams);
1818
+	return $this->call('update', array($params), "Google_Service_TagManager_UserAccess");
1819 1819
   }
1820 1820
 }
1821 1821
 
@@ -1834,35 +1834,35 @@  discard block
 block discarded – undo
1834 1834
 
1835 1835
   public function setAccountId($accountId)
1836 1836
   {
1837
-    $this->accountId = $accountId;
1837
+	$this->accountId = $accountId;
1838 1838
   }
1839 1839
   public function getAccountId()
1840 1840
   {
1841
-    return $this->accountId;
1841
+	return $this->accountId;
1842 1842
   }
1843 1843
   public function setFingerprint($fingerprint)
1844 1844
   {
1845
-    $this->fingerprint = $fingerprint;
1845
+	$this->fingerprint = $fingerprint;
1846 1846
   }
1847 1847
   public function getFingerprint()
1848 1848
   {
1849
-    return $this->fingerprint;
1849
+	return $this->fingerprint;
1850 1850
   }
1851 1851
   public function setName($name)
1852 1852
   {
1853
-    $this->name = $name;
1853
+	$this->name = $name;
1854 1854
   }
1855 1855
   public function getName()
1856 1856
   {
1857
-    return $this->name;
1857
+	return $this->name;
1858 1858
   }
1859 1859
   public function setShareData($shareData)
1860 1860
   {
1861
-    $this->shareData = $shareData;
1861
+	$this->shareData = $shareData;
1862 1862
   }
1863 1863
   public function getShareData()
1864 1864
   {
1865
-    return $this->shareData;
1865
+	return $this->shareData;
1866 1866
   }
1867 1867
 }
1868 1868
 
@@ -1876,11 +1876,11 @@  discard block
 block discarded – undo
1876 1876
 
1877 1877
   public function setPermission($permission)
1878 1878
   {
1879
-    $this->permission = $permission;
1879
+	$this->permission = $permission;
1880 1880
   }
1881 1881
   public function getPermission()
1882 1882
   {
1883
-    return $this->permission;
1883
+	return $this->permission;
1884 1884
   }
1885 1885
 }
1886 1886
 
@@ -1896,19 +1896,19 @@  discard block
 block discarded – undo
1896 1896
 
1897 1897
   public function setParameter($parameter)
1898 1898
   {
1899
-    $this->parameter = $parameter;
1899
+	$this->parameter = $parameter;
1900 1900
   }
1901 1901
   public function getParameter()
1902 1902
   {
1903
-    return $this->parameter;
1903
+	return $this->parameter;
1904 1904
   }
1905 1905
   public function setType($type)
1906 1906
   {
1907
-    $this->type = $type;
1907
+	$this->type = $type;
1908 1908
   }
1909 1909
   public function getType()
1910 1910
   {
1911
-    return $this->type;
1911
+	return $this->type;
1912 1912
   }
1913 1913
 }
1914 1914
 
@@ -1932,91 +1932,91 @@  discard block
 block discarded – undo
1932 1932
 
1933 1933
   public function setAccountId($accountId)
1934 1934
   {
1935
-    $this->accountId = $accountId;
1935
+	$this->accountId = $accountId;
1936 1936
   }
1937 1937
   public function getAccountId()
1938 1938
   {
1939
-    return $this->accountId;
1939
+	return $this->accountId;
1940 1940
   }
1941 1941
   public function setContainerId($containerId)
1942 1942
   {
1943
-    $this->containerId = $containerId;
1943
+	$this->containerId = $containerId;
1944 1944
   }
1945 1945
   public function getContainerId()
1946 1946
   {
1947
-    return $this->containerId;
1947
+	return $this->containerId;
1948 1948
   }
1949 1949
   public function setDomainName($domainName)
1950 1950
   {
1951
-    $this->domainName = $domainName;
1951
+	$this->domainName = $domainName;
1952 1952
   }
1953 1953
   public function getDomainName()
1954 1954
   {
1955
-    return $this->domainName;
1955
+	return $this->domainName;
1956 1956
   }
1957 1957
   public function setEnabledBuiltInVariable($enabledBuiltInVariable)
1958 1958
   {
1959
-    $this->enabledBuiltInVariable = $enabledBuiltInVariable;
1959
+	$this->enabledBuiltInVariable = $enabledBuiltInVariable;
1960 1960
   }
1961 1961
   public function getEnabledBuiltInVariable()
1962 1962
   {
1963
-    return $this->enabledBuiltInVariable;
1963
+	return $this->enabledBuiltInVariable;
1964 1964
   }
1965 1965
   public function setFingerprint($fingerprint)
1966 1966
   {
1967
-    $this->fingerprint = $fingerprint;
1967
+	$this->fingerprint = $fingerprint;
1968 1968
   }
1969 1969
   public function getFingerprint()
1970 1970
   {
1971
-    return $this->fingerprint;
1971
+	return $this->fingerprint;
1972 1972
   }
1973 1973
   public function setName($name)
1974 1974
   {
1975
-    $this->name = $name;
1975
+	$this->name = $name;
1976 1976
   }
1977 1977
   public function getName()
1978 1978
   {
1979
-    return $this->name;
1979
+	return $this->name;
1980 1980
   }
1981 1981
   public function setNotes($notes)
1982 1982
   {
1983
-    $this->notes = $notes;
1983
+	$this->notes = $notes;
1984 1984
   }
1985 1985
   public function getNotes()
1986 1986
   {
1987
-    return $this->notes;
1987
+	return $this->notes;
1988 1988
   }
1989 1989
   public function setPublicId($publicId)
1990 1990
   {
1991
-    $this->publicId = $publicId;
1991
+	$this->publicId = $publicId;
1992 1992
   }
1993 1993
   public function getPublicId()
1994 1994
   {
1995
-    return $this->publicId;
1995
+	return $this->publicId;
1996 1996
   }
1997 1997
   public function setTimeZoneCountryId($timeZoneCountryId)
1998 1998
   {
1999
-    $this->timeZoneCountryId = $timeZoneCountryId;
1999
+	$this->timeZoneCountryId = $timeZoneCountryId;
2000 2000
   }
2001 2001
   public function getTimeZoneCountryId()
2002 2002
   {
2003
-    return $this->timeZoneCountryId;
2003
+	return $this->timeZoneCountryId;
2004 2004
   }
2005 2005
   public function setTimeZoneId($timeZoneId)
2006 2006
   {
2007
-    $this->timeZoneId = $timeZoneId;
2007
+	$this->timeZoneId = $timeZoneId;
2008 2008
   }
2009 2009
   public function getTimeZoneId()
2010 2010
   {
2011
-    return $this->timeZoneId;
2011
+	return $this->timeZoneId;
2012 2012
   }
2013 2013
   public function setUsageContext($usageContext)
2014 2014
   {
2015
-    $this->usageContext = $usageContext;
2015
+	$this->usageContext = $usageContext;
2016 2016
   }
2017 2017
   public function getUsageContext()
2018 2018
   {
2019
-    return $this->usageContext;
2019
+	return $this->usageContext;
2020 2020
   }
2021 2021
 }
2022 2022
 
@@ -2031,19 +2031,19 @@  discard block
 block discarded – undo
2031 2031
 
2032 2032
   public function setContainerId($containerId)
2033 2033
   {
2034
-    $this->containerId = $containerId;
2034
+	$this->containerId = $containerId;
2035 2035
   }
2036 2036
   public function getContainerId()
2037 2037
   {
2038
-    return $this->containerId;
2038
+	return $this->containerId;
2039 2039
   }
2040 2040
   public function setPermission($permission)
2041 2041
   {
2042
-    $this->permission = $permission;
2042
+	$this->permission = $permission;
2043 2043
   }
2044 2044
   public function getPermission()
2045 2045
   {
2046
-    return $this->permission;
2046
+	return $this->permission;
2047 2047
   }
2048 2048
 }
2049 2049
 
@@ -2075,107 +2075,107 @@  discard block
 block discarded – undo
2075 2075
 
2076 2076
   public function setAccountId($accountId)
2077 2077
   {
2078
-    $this->accountId = $accountId;
2078
+	$this->accountId = $accountId;
2079 2079
   }
2080 2080
   public function getAccountId()
2081 2081
   {
2082
-    return $this->accountId;
2082
+	return $this->accountId;
2083 2083
   }
2084 2084
   public function setContainer(Google_Service_TagManager_Container $container)
2085 2085
   {
2086
-    $this->container = $container;
2086
+	$this->container = $container;
2087 2087
   }
2088 2088
   public function getContainer()
2089 2089
   {
2090
-    return $this->container;
2090
+	return $this->container;
2091 2091
   }
2092 2092
   public function setContainerId($containerId)
2093 2093
   {
2094
-    $this->containerId = $containerId;
2094
+	$this->containerId = $containerId;
2095 2095
   }
2096 2096
   public function getContainerId()
2097 2097
   {
2098
-    return $this->containerId;
2098
+	return $this->containerId;
2099 2099
   }
2100 2100
   public function setContainerVersionId($containerVersionId)
2101 2101
   {
2102
-    $this->containerVersionId = $containerVersionId;
2102
+	$this->containerVersionId = $containerVersionId;
2103 2103
   }
2104 2104
   public function getContainerVersionId()
2105 2105
   {
2106
-    return $this->containerVersionId;
2106
+	return $this->containerVersionId;
2107 2107
   }
2108 2108
   public function setDeleted($deleted)
2109 2109
   {
2110
-    $this->deleted = $deleted;
2110
+	$this->deleted = $deleted;
2111 2111
   }
2112 2112
   public function getDeleted()
2113 2113
   {
2114
-    return $this->deleted;
2114
+	return $this->deleted;
2115 2115
   }
2116 2116
   public function setFingerprint($fingerprint)
2117 2117
   {
2118
-    $this->fingerprint = $fingerprint;
2118
+	$this->fingerprint = $fingerprint;
2119 2119
   }
2120 2120
   public function getFingerprint()
2121 2121
   {
2122
-    return $this->fingerprint;
2122
+	return $this->fingerprint;
2123 2123
   }
2124 2124
   public function setMacro($macro)
2125 2125
   {
2126
-    $this->macro = $macro;
2126
+	$this->macro = $macro;
2127 2127
   }
2128 2128
   public function getMacro()
2129 2129
   {
2130
-    return $this->macro;
2130
+	return $this->macro;
2131 2131
   }
2132 2132
   public function setName($name)
2133 2133
   {
2134
-    $this->name = $name;
2134
+	$this->name = $name;
2135 2135
   }
2136 2136
   public function getName()
2137 2137
   {
2138
-    return $this->name;
2138
+	return $this->name;
2139 2139
   }
2140 2140
   public function setNotes($notes)
2141 2141
   {
2142
-    $this->notes = $notes;
2142
+	$this->notes = $notes;
2143 2143
   }
2144 2144
   public function getNotes()
2145 2145
   {
2146
-    return $this->notes;
2146
+	return $this->notes;
2147 2147
   }
2148 2148
   public function setRule($rule)
2149 2149
   {
2150
-    $this->rule = $rule;
2150
+	$this->rule = $rule;
2151 2151
   }
2152 2152
   public function getRule()
2153 2153
   {
2154
-    return $this->rule;
2154
+	return $this->rule;
2155 2155
   }
2156 2156
   public function setTag($tag)
2157 2157
   {
2158
-    $this->tag = $tag;
2158
+	$this->tag = $tag;
2159 2159
   }
2160 2160
   public function getTag()
2161 2161
   {
2162
-    return $this->tag;
2162
+	return $this->tag;
2163 2163
   }
2164 2164
   public function setTrigger($trigger)
2165 2165
   {
2166
-    $this->trigger = $trigger;
2166
+	$this->trigger = $trigger;
2167 2167
   }
2168 2168
   public function getTrigger()
2169 2169
   {
2170
-    return $this->trigger;
2170
+	return $this->trigger;
2171 2171
   }
2172 2172
   public function setVariable($variable)
2173 2173
   {
2174
-    $this->variable = $variable;
2174
+	$this->variable = $variable;
2175 2175
   }
2176 2176
   public function getVariable()
2177 2177
   {
2178
-    return $this->variable;
2178
+	return $this->variable;
2179 2179
   }
2180 2180
 }
2181 2181
 
@@ -2197,83 +2197,83 @@  discard block
 block discarded – undo
2197 2197
 
2198 2198
   public function setAccountId($accountId)
2199 2199
   {
2200
-    $this->accountId = $accountId;
2200
+	$this->accountId = $accountId;
2201 2201
   }
2202 2202
   public function getAccountId()
2203 2203
   {
2204
-    return $this->accountId;
2204
+	return $this->accountId;
2205 2205
   }
2206 2206
   public function setContainerId($containerId)
2207 2207
   {
2208
-    $this->containerId = $containerId;
2208
+	$this->containerId = $containerId;
2209 2209
   }
2210 2210
   public function getContainerId()
2211 2211
   {
2212
-    return $this->containerId;
2212
+	return $this->containerId;
2213 2213
   }
2214 2214
   public function setContainerVersionId($containerVersionId)
2215 2215
   {
2216
-    $this->containerVersionId = $containerVersionId;
2216
+	$this->containerVersionId = $containerVersionId;
2217 2217
   }
2218 2218
   public function getContainerVersionId()
2219 2219
   {
2220
-    return $this->containerVersionId;
2220
+	return $this->containerVersionId;
2221 2221
   }
2222 2222
   public function setDeleted($deleted)
2223 2223
   {
2224
-    $this->deleted = $deleted;
2224
+	$this->deleted = $deleted;
2225 2225
   }
2226 2226
   public function getDeleted()
2227 2227
   {
2228
-    return $this->deleted;
2228
+	return $this->deleted;
2229 2229
   }
2230 2230
   public function setName($name)
2231 2231
   {
2232
-    $this->name = $name;
2232
+	$this->name = $name;
2233 2233
   }
2234 2234
   public function getName()
2235 2235
   {
2236
-    return $this->name;
2236
+	return $this->name;
2237 2237
   }
2238 2238
   public function setNumMacros($numMacros)
2239 2239
   {
2240
-    $this->numMacros = $numMacros;
2240
+	$this->numMacros = $numMacros;
2241 2241
   }
2242 2242
   public function getNumMacros()
2243 2243
   {
2244
-    return $this->numMacros;
2244
+	return $this->numMacros;
2245 2245
   }
2246 2246
   public function setNumRules($numRules)
2247 2247
   {
2248
-    $this->numRules = $numRules;
2248
+	$this->numRules = $numRules;
2249 2249
   }
2250 2250
   public function getNumRules()
2251 2251
   {
2252
-    return $this->numRules;
2252
+	return $this->numRules;
2253 2253
   }
2254 2254
   public function setNumTags($numTags)
2255 2255
   {
2256
-    $this->numTags = $numTags;
2256
+	$this->numTags = $numTags;
2257 2257
   }
2258 2258
   public function getNumTags()
2259 2259
   {
2260
-    return $this->numTags;
2260
+	return $this->numTags;
2261 2261
   }
2262 2262
   public function setNumTriggers($numTriggers)
2263 2263
   {
2264
-    $this->numTriggers = $numTriggers;
2264
+	$this->numTriggers = $numTriggers;
2265 2265
   }
2266 2266
   public function getNumTriggers()
2267 2267
   {
2268
-    return $this->numTriggers;
2268
+	return $this->numTriggers;
2269 2269
   }
2270 2270
   public function setNumVariables($numVariables)
2271 2271
   {
2272
-    $this->numVariables = $numVariables;
2272
+	$this->numVariables = $numVariables;
2273 2273
   }
2274 2274
   public function getNumVariables()
2275 2275
   {
2276
-    return $this->numVariables;
2276
+	return $this->numVariables;
2277 2277
   }
2278 2278
 }
2279 2279
 
@@ -2288,27 +2288,27 @@  discard block
 block discarded – undo
2288 2288
 
2289 2289
   public function setName($name)
2290 2290
   {
2291
-    $this->name = $name;
2291
+	$this->name = $name;
2292 2292
   }
2293 2293
   public function getName()
2294 2294
   {
2295
-    return $this->name;
2295
+	return $this->name;
2296 2296
   }
2297 2297
   public function setNotes($notes)
2298 2298
   {
2299
-    $this->notes = $notes;
2299
+	$this->notes = $notes;
2300 2300
   }
2301 2301
   public function getNotes()
2302 2302
   {
2303
-    return $this->notes;
2303
+	return $this->notes;
2304 2304
   }
2305 2305
   public function setQuickPreview($quickPreview)
2306 2306
   {
2307
-    $this->quickPreview = $quickPreview;
2307
+	$this->quickPreview = $quickPreview;
2308 2308
   }
2309 2309
   public function getQuickPreview()
2310 2310
   {
2311
-    return $this->quickPreview;
2311
+	return $this->quickPreview;
2312 2312
   }
2313 2313
 }
2314 2314
 
@@ -2323,19 +2323,19 @@  discard block
 block discarded – undo
2323 2323
 
2324 2324
   public function setCompilerError($compilerError)
2325 2325
   {
2326
-    $this->compilerError = $compilerError;
2326
+	$this->compilerError = $compilerError;
2327 2327
   }
2328 2328
   public function getCompilerError()
2329 2329
   {
2330
-    return $this->compilerError;
2330
+	return $this->compilerError;
2331 2331
   }
2332 2332
   public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion)
2333 2333
   {
2334
-    $this->containerVersion = $containerVersion;
2334
+	$this->containerVersion = $containerVersion;
2335 2335
   }
2336 2336
   public function getContainerVersion()
2337 2337
   {
2338
-    return $this->containerVersion;
2338
+	return $this->containerVersion;
2339 2339
   }
2340 2340
 }
2341 2341
 
@@ -2350,11 +2350,11 @@  discard block
 block discarded – undo
2350 2350
 
2351 2351
   public function setUserAccess($userAccess)
2352 2352
   {
2353
-    $this->userAccess = $userAccess;
2353
+	$this->userAccess = $userAccess;
2354 2354
   }
2355 2355
   public function getUserAccess()
2356 2356
   {
2357
-    return $this->userAccess;
2357
+	return $this->userAccess;
2358 2358
   }
2359 2359
 }
2360 2360
 
@@ -2369,11 +2369,11 @@  discard block
 block discarded – undo
2369 2369
 
2370 2370
   public function setAccounts($accounts)
2371 2371
   {
2372
-    $this->accounts = $accounts;
2372
+	$this->accounts = $accounts;
2373 2373
   }
2374 2374
   public function getAccounts()
2375 2375
   {
2376
-    return $this->accounts;
2376
+	return $this->accounts;
2377 2377
   }
2378 2378
 }
2379 2379
 
@@ -2390,19 +2390,19 @@  discard block
 block discarded – undo
2390 2390
 
2391 2391
   public function setContainerVersion($containerVersion)
2392 2392
   {
2393
-    $this->containerVersion = $containerVersion;
2393
+	$this->containerVersion = $containerVersion;
2394 2394
   }
2395 2395
   public function getContainerVersion()
2396 2396
   {
2397
-    return $this->containerVersion;
2397
+	return $this->containerVersion;
2398 2398
   }
2399 2399
   public function setContainerVersionHeader($containerVersionHeader)
2400 2400
   {
2401
-    $this->containerVersionHeader = $containerVersionHeader;
2401
+	$this->containerVersionHeader = $containerVersionHeader;
2402 2402
   }
2403 2403
   public function getContainerVersionHeader()
2404 2404
   {
2405
-    return $this->containerVersionHeader;
2405
+	return $this->containerVersionHeader;
2406 2406
   }
2407 2407
 }
2408 2408
 
@@ -2417,11 +2417,11 @@  discard block
 block discarded – undo
2417 2417
 
2418 2418
   public function setContainers($containers)
2419 2419
   {
2420
-    $this->containers = $containers;
2420
+	$this->containers = $containers;
2421 2421
   }
2422 2422
   public function getContainers()
2423 2423
   {
2424
-    return $this->containers;
2424
+	return $this->containers;
2425 2425
   }
2426 2426
 }
2427 2427
 
@@ -2436,11 +2436,11 @@  discard block
 block discarded – undo
2436 2436
 
2437 2437
   public function setMacros($macros)
2438 2438
   {
2439
-    $this->macros = $macros;
2439
+	$this->macros = $macros;
2440 2440
   }
2441 2441
   public function getMacros()
2442 2442
   {
2443
-    return $this->macros;
2443
+	return $this->macros;
2444 2444
   }
2445 2445
 }
2446 2446
 
@@ -2455,11 +2455,11 @@  discard block
 block discarded – undo
2455 2455
 
2456 2456
   public function setRules($rules)
2457 2457
   {
2458
-    $this->rules = $rules;
2458
+	$this->rules = $rules;
2459 2459
   }
2460 2460
   public function getRules()
2461 2461
   {
2462
-    return $this->rules;
2462
+	return $this->rules;
2463 2463
   }
2464 2464
 }
2465 2465
 
@@ -2474,11 +2474,11 @@  discard block
 block discarded – undo
2474 2474
 
2475 2475
   public function setTags($tags)
2476 2476
   {
2477
-    $this->tags = $tags;
2477
+	$this->tags = $tags;
2478 2478
   }
2479 2479
   public function getTags()
2480 2480
   {
2481
-    return $this->tags;
2481
+	return $this->tags;
2482 2482
   }
2483 2483
 }
2484 2484
 
@@ -2493,11 +2493,11 @@  discard block
 block discarded – undo
2493 2493
 
2494 2494
   public function setTriggers($triggers)
2495 2495
   {
2496
-    $this->triggers = $triggers;
2496
+	$this->triggers = $triggers;
2497 2497
   }
2498 2498
   public function getTriggers()
2499 2499
   {
2500
-    return $this->triggers;
2500
+	return $this->triggers;
2501 2501
   }
2502 2502
 }
2503 2503
 
@@ -2512,11 +2512,11 @@  discard block
 block discarded – undo
2512 2512
 
2513 2513
   public function setVariables($variables)
2514 2514
   {
2515
-    $this->variables = $variables;
2515
+	$this->variables = $variables;
2516 2516
   }
2517 2517
   public function getVariables()
2518 2518
   {
2519
-    return $this->variables;
2519
+	return $this->variables;
2520 2520
   }
2521 2521
 }
2522 2522
 
@@ -2542,99 +2542,99 @@  discard block
 block discarded – undo
2542 2542
 
2543 2543
   public function setAccountId($accountId)
2544 2544
   {
2545
-    $this->accountId = $accountId;
2545
+	$this->accountId = $accountId;
2546 2546
   }
2547 2547
   public function getAccountId()
2548 2548
   {
2549
-    return $this->accountId;
2549
+	return $this->accountId;
2550 2550
   }
2551 2551
   public function setContainerId($containerId)
2552 2552
   {
2553
-    $this->containerId = $containerId;
2553
+	$this->containerId = $containerId;
2554 2554
   }
2555 2555
   public function getContainerId()
2556 2556
   {
2557
-    return $this->containerId;
2557
+	return $this->containerId;
2558 2558
   }
2559 2559
   public function setDisablingRuleId($disablingRuleId)
2560 2560
   {
2561
-    $this->disablingRuleId = $disablingRuleId;
2561
+	$this->disablingRuleId = $disablingRuleId;
2562 2562
   }
2563 2563
   public function getDisablingRuleId()
2564 2564
   {
2565
-    return $this->disablingRuleId;
2565
+	return $this->disablingRuleId;
2566 2566
   }
2567 2567
   public function setEnablingRuleId($enablingRuleId)
2568 2568
   {
2569
-    $this->enablingRuleId = $enablingRuleId;
2569
+	$this->enablingRuleId = $enablingRuleId;
2570 2570
   }
2571 2571
   public function getEnablingRuleId()
2572 2572
   {
2573
-    return $this->enablingRuleId;
2573
+	return $this->enablingRuleId;
2574 2574
   }
2575 2575
   public function setFingerprint($fingerprint)
2576 2576
   {
2577
-    $this->fingerprint = $fingerprint;
2577
+	$this->fingerprint = $fingerprint;
2578 2578
   }
2579 2579
   public function getFingerprint()
2580 2580
   {
2581
-    return $this->fingerprint;
2581
+	return $this->fingerprint;
2582 2582
   }
2583 2583
   public function setMacroId($macroId)
2584 2584
   {
2585
-    $this->macroId = $macroId;
2585
+	$this->macroId = $macroId;
2586 2586
   }
2587 2587
   public function getMacroId()
2588 2588
   {
2589
-    return $this->macroId;
2589
+	return $this->macroId;
2590 2590
   }
2591 2591
   public function setName($name)
2592 2592
   {
2593
-    $this->name = $name;
2593
+	$this->name = $name;
2594 2594
   }
2595 2595
   public function getName()
2596 2596
   {
2597
-    return $this->name;
2597
+	return $this->name;
2598 2598
   }
2599 2599
   public function setNotes($notes)
2600 2600
   {
2601
-    $this->notes = $notes;
2601
+	$this->notes = $notes;
2602 2602
   }
2603 2603
   public function getNotes()
2604 2604
   {
2605
-    return $this->notes;
2605
+	return $this->notes;
2606 2606
   }
2607 2607
   public function setParameter($parameter)
2608 2608
   {
2609
-    $this->parameter = $parameter;
2609
+	$this->parameter = $parameter;
2610 2610
   }
2611 2611
   public function getParameter()
2612 2612
   {
2613
-    return $this->parameter;
2613
+	return $this->parameter;
2614 2614
   }
2615 2615
   public function setScheduleEndMs($scheduleEndMs)
2616 2616
   {
2617
-    $this->scheduleEndMs = $scheduleEndMs;
2617
+	$this->scheduleEndMs = $scheduleEndMs;
2618 2618
   }
2619 2619
   public function getScheduleEndMs()
2620 2620
   {
2621
-    return $this->scheduleEndMs;
2621
+	return $this->scheduleEndMs;
2622 2622
   }
2623 2623
   public function setScheduleStartMs($scheduleStartMs)
2624 2624
   {
2625
-    $this->scheduleStartMs = $scheduleStartMs;
2625
+	$this->scheduleStartMs = $scheduleStartMs;
2626 2626
   }
2627 2627
   public function getScheduleStartMs()
2628 2628
   {
2629
-    return $this->scheduleStartMs;
2629
+	return $this->scheduleStartMs;
2630 2630
   }
2631 2631
   public function setType($type)
2632 2632
   {
2633
-    $this->type = $type;
2633
+	$this->type = $type;
2634 2634
   }
2635 2635
   public function getType()
2636 2636
   {
2637
-    return $this->type;
2637
+	return $this->type;
2638 2638
   }
2639 2639
 }
2640 2640
 
@@ -2654,43 +2654,43 @@  discard block
 block discarded – undo
2654 2654
 
2655 2655
   public function setKey($key)
2656 2656
   {
2657
-    $this->key = $key;
2657
+	$this->key = $key;
2658 2658
   }
2659 2659
   public function getKey()
2660 2660
   {
2661
-    return $this->key;
2661
+	return $this->key;
2662 2662
   }
2663 2663
   public function setList($list)
2664 2664
   {
2665
-    $this->list = $list;
2665
+	$this->list = $list;
2666 2666
   }
2667 2667
   public function getList()
2668 2668
   {
2669
-    return $this->list;
2669
+	return $this->list;
2670 2670
   }
2671 2671
   public function setMap($map)
2672 2672
   {
2673
-    $this->map = $map;
2673
+	$this->map = $map;
2674 2674
   }
2675 2675
   public function getMap()
2676 2676
   {
2677
-    return $this->map;
2677
+	return $this->map;
2678 2678
   }
2679 2679
   public function setType($type)
2680 2680
   {
2681
-    $this->type = $type;
2681
+	$this->type = $type;
2682 2682
   }
2683 2683
   public function getType()
2684 2684
   {
2685
-    return $this->type;
2685
+	return $this->type;
2686 2686
   }
2687 2687
   public function setValue($value)
2688 2688
   {
2689
-    $this->value = $value;
2689
+	$this->value = $value;
2690 2690
   }
2691 2691
   public function getValue()
2692 2692
   {
2693
-    return $this->value;
2693
+	return $this->value;
2694 2694
   }
2695 2695
 }
2696 2696
 
@@ -2705,19 +2705,19 @@  discard block
 block discarded – undo
2705 2705
 
2706 2706
   public function setCompilerError($compilerError)
2707 2707
   {
2708
-    $this->compilerError = $compilerError;
2708
+	$this->compilerError = $compilerError;
2709 2709
   }
2710 2710
   public function getCompilerError()
2711 2711
   {
2712
-    return $this->compilerError;
2712
+	return $this->compilerError;
2713 2713
   }
2714 2714
   public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion)
2715 2715
   {
2716
-    $this->containerVersion = $containerVersion;
2716
+	$this->containerVersion = $containerVersion;
2717 2717
   }
2718 2718
   public function getContainerVersion()
2719 2719
   {
2720
-    return $this->containerVersion;
2720
+	return $this->containerVersion;
2721 2721
   }
2722 2722
 }
2723 2723
 
@@ -2738,59 +2738,59 @@  discard block
 block discarded – undo
2738 2738
 
2739 2739
   public function setAccountId($accountId)
2740 2740
   {
2741
-    $this->accountId = $accountId;
2741
+	$this->accountId = $accountId;
2742 2742
   }
2743 2743
   public function getAccountId()
2744 2744
   {
2745
-    return $this->accountId;
2745
+	return $this->accountId;
2746 2746
   }
2747 2747
   public function setCondition($condition)
2748 2748
   {
2749
-    $this->condition = $condition;
2749
+	$this->condition = $condition;
2750 2750
   }
2751 2751
   public function getCondition()
2752 2752
   {
2753
-    return $this->condition;
2753
+	return $this->condition;
2754 2754
   }
2755 2755
   public function setContainerId($containerId)
2756 2756
   {
2757
-    $this->containerId = $containerId;
2757
+	$this->containerId = $containerId;
2758 2758
   }
2759 2759
   public function getContainerId()
2760 2760
   {
2761
-    return $this->containerId;
2761
+	return $this->containerId;
2762 2762
   }
2763 2763
   public function setFingerprint($fingerprint)
2764 2764
   {
2765
-    $this->fingerprint = $fingerprint;
2765
+	$this->fingerprint = $fingerprint;
2766 2766
   }
2767 2767
   public function getFingerprint()
2768 2768
   {
2769
-    return $this->fingerprint;
2769
+	return $this->fingerprint;
2770 2770
   }
2771 2771
   public function setName($name)
2772 2772
   {
2773
-    $this->name = $name;
2773
+	$this->name = $name;
2774 2774
   }
2775 2775
   public function getName()
2776 2776
   {
2777
-    return $this->name;
2777
+	return $this->name;
2778 2778
   }
2779 2779
   public function setNotes($notes)
2780 2780
   {
2781
-    $this->notes = $notes;
2781
+	$this->notes = $notes;
2782 2782
   }
2783 2783
   public function getNotes()
2784 2784
   {
2785
-    return $this->notes;
2785
+	return $this->notes;
2786 2786
   }
2787 2787
   public function setRuleId($ruleId)
2788 2788
   {
2789
-    $this->ruleId = $ruleId;
2789
+	$this->ruleId = $ruleId;
2790 2790
   }
2791 2791
   public function getRuleId()
2792 2792
   {
2793
-    return $this->ruleId;
2793
+	return $this->ruleId;
2794 2794
   }
2795 2795
 }
2796 2796
 
@@ -2821,131 +2821,131 @@  discard block
 block discarded – undo
2821 2821
 
2822 2822
   public function setAccountId($accountId)
2823 2823
   {
2824
-    $this->accountId = $accountId;
2824
+	$this->accountId = $accountId;
2825 2825
   }
2826 2826
   public function getAccountId()
2827 2827
   {
2828
-    return $this->accountId;
2828
+	return $this->accountId;
2829 2829
   }
2830 2830
   public function setBlockingRuleId($blockingRuleId)
2831 2831
   {
2832
-    $this->blockingRuleId = $blockingRuleId;
2832
+	$this->blockingRuleId = $blockingRuleId;
2833 2833
   }
2834 2834
   public function getBlockingRuleId()
2835 2835
   {
2836
-    return $this->blockingRuleId;
2836
+	return $this->blockingRuleId;
2837 2837
   }
2838 2838
   public function setBlockingTriggerId($blockingTriggerId)
2839 2839
   {
2840
-    $this->blockingTriggerId = $blockingTriggerId;
2840
+	$this->blockingTriggerId = $blockingTriggerId;
2841 2841
   }
2842 2842
   public function getBlockingTriggerId()
2843 2843
   {
2844
-    return $this->blockingTriggerId;
2844
+	return $this->blockingTriggerId;
2845 2845
   }
2846 2846
   public function setContainerId($containerId)
2847 2847
   {
2848
-    $this->containerId = $containerId;
2848
+	$this->containerId = $containerId;
2849 2849
   }
2850 2850
   public function getContainerId()
2851 2851
   {
2852
-    return $this->containerId;
2852
+	return $this->containerId;
2853 2853
   }
2854 2854
   public function setFingerprint($fingerprint)
2855 2855
   {
2856
-    $this->fingerprint = $fingerprint;
2856
+	$this->fingerprint = $fingerprint;
2857 2857
   }
2858 2858
   public function getFingerprint()
2859 2859
   {
2860
-    return $this->fingerprint;
2860
+	return $this->fingerprint;
2861 2861
   }
2862 2862
   public function setFiringRuleId($firingRuleId)
2863 2863
   {
2864
-    $this->firingRuleId = $firingRuleId;
2864
+	$this->firingRuleId = $firingRuleId;
2865 2865
   }
2866 2866
   public function getFiringRuleId()
2867 2867
   {
2868
-    return $this->firingRuleId;
2868
+	return $this->firingRuleId;
2869 2869
   }
2870 2870
   public function setFiringTriggerId($firingTriggerId)
2871 2871
   {
2872
-    $this->firingTriggerId = $firingTriggerId;
2872
+	$this->firingTriggerId = $firingTriggerId;
2873 2873
   }
2874 2874
   public function getFiringTriggerId()
2875 2875
   {
2876
-    return $this->firingTriggerId;
2876
+	return $this->firingTriggerId;
2877 2877
   }
2878 2878
   public function setLiveOnly($liveOnly)
2879 2879
   {
2880
-    $this->liveOnly = $liveOnly;
2880
+	$this->liveOnly = $liveOnly;
2881 2881
   }
2882 2882
   public function getLiveOnly()
2883 2883
   {
2884
-    return $this->liveOnly;
2884
+	return $this->liveOnly;
2885 2885
   }
2886 2886
   public function setName($name)
2887 2887
   {
2888
-    $this->name = $name;
2888
+	$this->name = $name;
2889 2889
   }
2890 2890
   public function getName()
2891 2891
   {
2892
-    return $this->name;
2892
+	return $this->name;
2893 2893
   }
2894 2894
   public function setNotes($notes)
2895 2895
   {
2896
-    $this->notes = $notes;
2896
+	$this->notes = $notes;
2897 2897
   }
2898 2898
   public function getNotes()
2899 2899
   {
2900
-    return $this->notes;
2900
+	return $this->notes;
2901 2901
   }
2902 2902
   public function setParameter($parameter)
2903 2903
   {
2904
-    $this->parameter = $parameter;
2904
+	$this->parameter = $parameter;
2905 2905
   }
2906 2906
   public function getParameter()
2907 2907
   {
2908
-    return $this->parameter;
2908
+	return $this->parameter;
2909 2909
   }
2910 2910
   public function setPriority(Google_Service_TagManager_Parameter $priority)
2911 2911
   {
2912
-    $this->priority = $priority;
2912
+	$this->priority = $priority;
2913 2913
   }
2914 2914
   public function getPriority()
2915 2915
   {
2916
-    return $this->priority;
2916
+	return $this->priority;
2917 2917
   }
2918 2918
   public function setScheduleEndMs($scheduleEndMs)
2919 2919
   {
2920
-    $this->scheduleEndMs = $scheduleEndMs;
2920
+	$this->scheduleEndMs = $scheduleEndMs;
2921 2921
   }
2922 2922
   public function getScheduleEndMs()
2923 2923
   {
2924
-    return $this->scheduleEndMs;
2924
+	return $this->scheduleEndMs;
2925 2925
   }
2926 2926
   public function setScheduleStartMs($scheduleStartMs)
2927 2927
   {
2928
-    $this->scheduleStartMs = $scheduleStartMs;
2928
+	$this->scheduleStartMs = $scheduleStartMs;
2929 2929
   }
2930 2930
   public function getScheduleStartMs()
2931 2931
   {
2932
-    return $this->scheduleStartMs;
2932
+	return $this->scheduleStartMs;
2933 2933
   }
2934 2934
   public function setTagId($tagId)
2935 2935
   {
2936
-    $this->tagId = $tagId;
2936
+	$this->tagId = $tagId;
2937 2937
   }
2938 2938
   public function getTagId()
2939 2939
   {
2940
-    return $this->tagId;
2940
+	return $this->tagId;
2941 2941
   }
2942 2942
   public function setType($type)
2943 2943
   {
2944
-    $this->type = $type;
2944
+	$this->type = $type;
2945 2945
   }
2946 2946
   public function getType()
2947 2947
   {
2948
-    return $this->type;
2948
+	return $this->type;
2949 2949
   }
2950 2950
 }
2951 2951
 
@@ -2988,147 +2988,147 @@  discard block
 block discarded – undo
2988 2988
 
2989 2989
   public function setAccountId($accountId)
2990 2990
   {
2991
-    $this->accountId = $accountId;
2991
+	$this->accountId = $accountId;
2992 2992
   }
2993 2993
   public function getAccountId()
2994 2994
   {
2995
-    return $this->accountId;
2995
+	return $this->accountId;
2996 2996
   }
2997 2997
   public function setAutoEventFilter($autoEventFilter)
2998 2998
   {
2999
-    $this->autoEventFilter = $autoEventFilter;
2999
+	$this->autoEventFilter = $autoEventFilter;
3000 3000
   }
3001 3001
   public function getAutoEventFilter()
3002 3002
   {
3003
-    return $this->autoEventFilter;
3003
+	return $this->autoEventFilter;
3004 3004
   }
3005 3005
   public function setCheckValidation(Google_Service_TagManager_Parameter $checkValidation)
3006 3006
   {
3007
-    $this->checkValidation = $checkValidation;
3007
+	$this->checkValidation = $checkValidation;
3008 3008
   }
3009 3009
   public function getCheckValidation()
3010 3010
   {
3011
-    return $this->checkValidation;
3011
+	return $this->checkValidation;
3012 3012
   }
3013 3013
   public function setContainerId($containerId)
3014 3014
   {
3015
-    $this->containerId = $containerId;
3015
+	$this->containerId = $containerId;
3016 3016
   }
3017 3017
   public function getContainerId()
3018 3018
   {
3019
-    return $this->containerId;
3019
+	return $this->containerId;
3020 3020
   }
3021 3021
   public function setCustomEventFilter($customEventFilter)
3022 3022
   {
3023
-    $this->customEventFilter = $customEventFilter;
3023
+	$this->customEventFilter = $customEventFilter;
3024 3024
   }
3025 3025
   public function getCustomEventFilter()
3026 3026
   {
3027
-    return $this->customEventFilter;
3027
+	return $this->customEventFilter;
3028 3028
   }
3029 3029
   public function setEnableAllVideos(Google_Service_TagManager_Parameter $enableAllVideos)
3030 3030
   {
3031
-    $this->enableAllVideos = $enableAllVideos;
3031
+	$this->enableAllVideos = $enableAllVideos;
3032 3032
   }
3033 3033
   public function getEnableAllVideos()
3034 3034
   {
3035
-    return $this->enableAllVideos;
3035
+	return $this->enableAllVideos;
3036 3036
   }
3037 3037
   public function setEventName(Google_Service_TagManager_Parameter $eventName)
3038 3038
   {
3039
-    $this->eventName = $eventName;
3039
+	$this->eventName = $eventName;
3040 3040
   }
3041 3041
   public function getEventName()
3042 3042
   {
3043
-    return $this->eventName;
3043
+	return $this->eventName;
3044 3044
   }
3045 3045
   public function setFilter($filter)
3046 3046
   {
3047
-    $this->filter = $filter;
3047
+	$this->filter = $filter;
3048 3048
   }
3049 3049
   public function getFilter()
3050 3050
   {
3051
-    return $this->filter;
3051
+	return $this->filter;
3052 3052
   }
3053 3053
   public function setFingerprint($fingerprint)
3054 3054
   {
3055
-    $this->fingerprint = $fingerprint;
3055
+	$this->fingerprint = $fingerprint;
3056 3056
   }
3057 3057
   public function getFingerprint()
3058 3058
   {
3059
-    return $this->fingerprint;
3059
+	return $this->fingerprint;
3060 3060
   }
3061 3061
   public function setInterval(Google_Service_TagManager_Parameter $interval)
3062 3062
   {
3063
-    $this->interval = $interval;
3063
+	$this->interval = $interval;
3064 3064
   }
3065 3065
   public function getInterval()
3066 3066
   {
3067
-    return $this->interval;
3067
+	return $this->interval;
3068 3068
   }
3069 3069
   public function setLimit(Google_Service_TagManager_Parameter $limit)
3070 3070
   {
3071
-    $this->limit = $limit;
3071
+	$this->limit = $limit;
3072 3072
   }
3073 3073
   public function getLimit()
3074 3074
   {
3075
-    return $this->limit;
3075
+	return $this->limit;
3076 3076
   }
3077 3077
   public function setName($name)
3078 3078
   {
3079
-    $this->name = $name;
3079
+	$this->name = $name;
3080 3080
   }
3081 3081
   public function getName()
3082 3082
   {
3083
-    return $this->name;
3083
+	return $this->name;
3084 3084
   }
3085 3085
   public function setTriggerId($triggerId)
3086 3086
   {
3087
-    $this->triggerId = $triggerId;
3087
+	$this->triggerId = $triggerId;
3088 3088
   }
3089 3089
   public function getTriggerId()
3090 3090
   {
3091
-    return $this->triggerId;
3091
+	return $this->triggerId;
3092 3092
   }
3093 3093
   public function setType($type)
3094 3094
   {
3095
-    $this->type = $type;
3095
+	$this->type = $type;
3096 3096
   }
3097 3097
   public function getType()
3098 3098
   {
3099
-    return $this->type;
3099
+	return $this->type;
3100 3100
   }
3101 3101
   public function setUniqueTriggerId(Google_Service_TagManager_Parameter $uniqueTriggerId)
3102 3102
   {
3103
-    $this->uniqueTriggerId = $uniqueTriggerId;
3103
+	$this->uniqueTriggerId = $uniqueTriggerId;
3104 3104
   }
3105 3105
   public function getUniqueTriggerId()
3106 3106
   {
3107
-    return $this->uniqueTriggerId;
3107
+	return $this->uniqueTriggerId;
3108 3108
   }
3109 3109
   public function setVideoPercentageList(Google_Service_TagManager_Parameter $videoPercentageList)
3110 3110
   {
3111
-    $this->videoPercentageList = $videoPercentageList;
3111
+	$this->videoPercentageList = $videoPercentageList;
3112 3112
   }
3113 3113
   public function getVideoPercentageList()
3114 3114
   {
3115
-    return $this->videoPercentageList;
3115
+	return $this->videoPercentageList;
3116 3116
   }
3117 3117
   public function setWaitForTags(Google_Service_TagManager_Parameter $waitForTags)
3118 3118
   {
3119
-    $this->waitForTags = $waitForTags;
3119
+	$this->waitForTags = $waitForTags;
3120 3120
   }
3121 3121
   public function getWaitForTags()
3122 3122
   {
3123
-    return $this->waitForTags;
3123
+	return $this->waitForTags;
3124 3124
   }
3125 3125
   public function setWaitForTagsTimeout(Google_Service_TagManager_Parameter $waitForTagsTimeout)
3126 3126
   {
3127
-    $this->waitForTagsTimeout = $waitForTagsTimeout;
3127
+	$this->waitForTagsTimeout = $waitForTagsTimeout;
3128 3128
   }
3129 3129
   public function getWaitForTagsTimeout()
3130 3130
   {
3131
-    return $this->waitForTagsTimeout;
3131
+	return $this->waitForTagsTimeout;
3132 3132
   }
3133 3133
 }
3134 3134
 
@@ -3148,43 +3148,43 @@  discard block
 block discarded – undo
3148 3148
 
3149 3149
   public function setAccountAccess(Google_Service_TagManager_AccountAccess $accountAccess)
3150 3150
   {
3151
-    $this->accountAccess = $accountAccess;
3151
+	$this->accountAccess = $accountAccess;
3152 3152
   }
3153 3153
   public function getAccountAccess()
3154 3154
   {
3155
-    return $this->accountAccess;
3155
+	return $this->accountAccess;
3156 3156
   }
3157 3157
   public function setAccountId($accountId)
3158 3158
   {
3159
-    $this->accountId = $accountId;
3159
+	$this->accountId = $accountId;
3160 3160
   }
3161 3161
   public function getAccountId()
3162 3162
   {
3163
-    return $this->accountId;
3163
+	return $this->accountId;
3164 3164
   }
3165 3165
   public function setContainerAccess($containerAccess)
3166 3166
   {
3167
-    $this->containerAccess = $containerAccess;
3167
+	$this->containerAccess = $containerAccess;
3168 3168
   }
3169 3169
   public function getContainerAccess()
3170 3170
   {
3171
-    return $this->containerAccess;
3171
+	return $this->containerAccess;
3172 3172
   }
3173 3173
   public function setEmailAddress($emailAddress)
3174 3174
   {
3175
-    $this->emailAddress = $emailAddress;
3175
+	$this->emailAddress = $emailAddress;
3176 3176
   }
3177 3177
   public function getEmailAddress()
3178 3178
   {
3179
-    return $this->emailAddress;
3179
+	return $this->emailAddress;
3180 3180
   }
3181 3181
   public function setPermissionId($permissionId)
3182 3182
   {
3183
-    $this->permissionId = $permissionId;
3183
+	$this->permissionId = $permissionId;
3184 3184
   }
3185 3185
   public function getPermissionId()
3186 3186
   {
3187
-    return $this->permissionId;
3187
+	return $this->permissionId;
3188 3188
   }
3189 3189
 }
3190 3190
 
@@ -3210,98 +3210,98 @@  discard block
 block discarded – undo
3210 3210
 
3211 3211
   public function setAccountId($accountId)
3212 3212
   {
3213
-    $this->accountId = $accountId;
3213
+	$this->accountId = $accountId;
3214 3214
   }
3215 3215
   public function getAccountId()
3216 3216
   {
3217
-    return $this->accountId;
3217
+	return $this->accountId;
3218 3218
   }
3219 3219
   public function setContainerId($containerId)
3220 3220
   {
3221
-    $this->containerId = $containerId;
3221
+	$this->containerId = $containerId;
3222 3222
   }
3223 3223
   public function getContainerId()
3224 3224
   {
3225
-    return $this->containerId;
3225
+	return $this->containerId;
3226 3226
   }
3227 3227
   public function setDisablingTriggerId($disablingTriggerId)
3228 3228
   {
3229
-    $this->disablingTriggerId = $disablingTriggerId;
3229
+	$this->disablingTriggerId = $disablingTriggerId;
3230 3230
   }
3231 3231
   public function getDisablingTriggerId()
3232 3232
   {
3233
-    return $this->disablingTriggerId;
3233
+	return $this->disablingTriggerId;
3234 3234
   }
3235 3235
   public function setEnablingTriggerId($enablingTriggerId)
3236 3236
   {
3237
-    $this->enablingTriggerId = $enablingTriggerId;
3237
+	$this->enablingTriggerId = $enablingTriggerId;
3238 3238
   }
3239 3239
   public function getEnablingTriggerId()
3240 3240
   {
3241
-    return $this->enablingTriggerId;
3241
+	return $this->enablingTriggerId;
3242 3242
   }
3243 3243
   public function setFingerprint($fingerprint)
3244 3244
   {
3245
-    $this->fingerprint = $fingerprint;
3245
+	$this->fingerprint = $fingerprint;
3246 3246
   }
3247 3247
   public function getFingerprint()
3248 3248
   {
3249
-    return $this->fingerprint;
3249
+	return $this->fingerprint;
3250 3250
   }
3251 3251
   public function setName($name)
3252 3252
   {
3253
-    $this->name = $name;
3253
+	$this->name = $name;
3254 3254
   }
3255 3255
   public function getName()
3256 3256
   {
3257
-    return $this->name;
3257
+	return $this->name;
3258 3258
   }
3259 3259
   public function setNotes($notes)
3260 3260
   {
3261
-    $this->notes = $notes;
3261
+	$this->notes = $notes;
3262 3262
   }
3263 3263
   public function getNotes()
3264 3264
   {
3265
-    return $this->notes;
3265
+	return $this->notes;
3266 3266
   }
3267 3267
   public function setParameter($parameter)
3268 3268
   {
3269
-    $this->parameter = $parameter;
3269
+	$this->parameter = $parameter;
3270 3270
   }
3271 3271
   public function getParameter()
3272 3272
   {
3273
-    return $this->parameter;
3273
+	return $this->parameter;
3274 3274
   }
3275 3275
   public function setScheduleEndMs($scheduleEndMs)
3276 3276
   {
3277
-    $this->scheduleEndMs = $scheduleEndMs;
3277
+	$this->scheduleEndMs = $scheduleEndMs;
3278 3278
   }
3279 3279
   public function getScheduleEndMs()
3280 3280
   {
3281
-    return $this->scheduleEndMs;
3281
+	return $this->scheduleEndMs;
3282 3282
   }
3283 3283
   public function setScheduleStartMs($scheduleStartMs)
3284 3284
   {
3285
-    $this->scheduleStartMs = $scheduleStartMs;
3285
+	$this->scheduleStartMs = $scheduleStartMs;
3286 3286
   }
3287 3287
   public function getScheduleStartMs()
3288 3288
   {
3289
-    return $this->scheduleStartMs;
3289
+	return $this->scheduleStartMs;
3290 3290
   }
3291 3291
   public function setType($type)
3292 3292
   {
3293
-    $this->type = $type;
3293
+	$this->type = $type;
3294 3294
   }
3295 3295
   public function getType()
3296 3296
   {
3297
-    return $this->type;
3297
+	return $this->type;
3298 3298
   }
3299 3299
   public function setVariableId($variableId)
3300 3300
   {
3301
-    $this->variableId = $variableId;
3301
+	$this->variableId = $variableId;
3302 3302
   }
3303 3303
   public function getVariableId()
3304 3304
   {
3305
-    return $this->variableId;
3305
+	return $this->variableId;
3306 3306
   }
3307 3307
 }
Please login to merge, or discard this patch.
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
                   'required' => true,
93 93
                 ),
94 94
               ),
95
-            ),'list' => array(
95
+            ), 'list' => array(
96 96
               'path' => 'accounts',
97 97
               'httpMethod' => 'GET',
98 98
               'parameters' => array(),
99
-            ),'update' => array(
99
+            ), 'update' => array(
100 100
               'path' => 'accounts/{accountId}',
101 101
               'httpMethod' => 'PUT',
102 102
               'parameters' => array(
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                   'required' => true,
131 131
                 ),
132 132
               ),
133
-            ),'delete' => array(
133
+            ), 'delete' => array(
134 134
               'path' => 'accounts/{accountId}/containers/{containerId}',
135 135
               'httpMethod' => 'DELETE',
136 136
               'parameters' => array(
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                   'required' => true,
146 146
                 ),
147 147
               ),
148
-            ),'get' => array(
148
+            ), 'get' => array(
149 149
               'path' => 'accounts/{accountId}/containers/{containerId}',
150 150
               'httpMethod' => 'GET',
151 151
               'parameters' => array(
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                   'required' => true,
161 161
                 ),
162 162
               ),
163
-            ),'list' => array(
163
+            ), 'list' => array(
164 164
               'path' => 'accounts/{accountId}/containers',
165 165
               'httpMethod' => 'GET',
166 166
               'parameters' => array(
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
                   'required' => true,
171 171
                 ),
172 172
               ),
173
-            ),'update' => array(
173
+            ), 'update' => array(
174 174
               'path' => 'accounts/{accountId}/containers/{containerId}',
175 175
               'httpMethod' => 'PUT',
176 176
               'parameters' => array(
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                   'required' => true,
215 215
                 ),
216 216
               ),
217
-            ),'delete' => array(
217
+            ), 'delete' => array(
218 218
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219 219
               'httpMethod' => 'DELETE',
220 220
               'parameters' => array(
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                   'required' => true,
235 235
                 ),
236 236
               ),
237
-            ),'get' => array(
237
+            ), 'get' => array(
238 238
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239 239
               'httpMethod' => 'GET',
240 240
               'parameters' => array(
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
                   'required' => true,
255 255
                 ),
256 256
               ),
257
-            ),'list' => array(
257
+            ), 'list' => array(
258 258
               'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259 259
               'httpMethod' => 'GET',
260 260
               'parameters' => array(
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                   'required' => true,
270 270
                 ),
271 271
               ),
272
-            ),'update' => array(
272
+            ), 'update' => array(
273 273
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274 274
               'httpMethod' => 'PUT',
275 275
               'parameters' => array(
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
                   'required' => true,
319 319
                 ),
320 320
               ),
321
-            ),'delete' => array(
321
+            ), 'delete' => array(
322 322
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323 323
               'httpMethod' => 'DELETE',
324 324
               'parameters' => array(
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
                   'required' => true,
339 339
                 ),
340 340
               ),
341
-            ),'get' => array(
341
+            ), 'get' => array(
342 342
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343 343
               'httpMethod' => 'GET',
344 344
               'parameters' => array(
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                   'required' => true,
359 359
                 ),
360 360
               ),
361
-            ),'list' => array(
361
+            ), 'list' => array(
362 362
               'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363 363
               'httpMethod' => 'GET',
364 364
               'parameters' => array(
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
                   'required' => true,
374 374
                 ),
375 375
               ),
376
-            ),'update' => array(
376
+            ), 'update' => array(
377 377
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378 378
               'httpMethod' => 'PUT',
379 379
               'parameters' => array(
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
                   'required' => true,
423 423
                 ),
424 424
               ),
425
-            ),'delete' => array(
425
+            ), 'delete' => array(
426 426
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427 427
               'httpMethod' => 'DELETE',
428 428
               'parameters' => array(
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
                   'required' => true,
443 443
                 ),
444 444
               ),
445
-            ),'get' => array(
445
+            ), 'get' => array(
446 446
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447 447
               'httpMethod' => 'GET',
448 448
               'parameters' => array(
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
                   'required' => true,
463 463
                 ),
464 464
               ),
465
-            ),'list' => array(
465
+            ), 'list' => array(
466 466
               'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467 467
               'httpMethod' => 'GET',
468 468
               'parameters' => array(
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
                   'required' => true,
478 478
                 ),
479 479
               ),
480
-            ),'update' => array(
480
+            ), 'update' => array(
481 481
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482 482
               'httpMethod' => 'PUT',
483 483
               'parameters' => array(
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
                   'required' => true,
527 527
                 ),
528 528
               ),
529
-            ),'delete' => array(
529
+            ), 'delete' => array(
530 530
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531 531
               'httpMethod' => 'DELETE',
532 532
               'parameters' => array(
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
                   'required' => true,
547 547
                 ),
548 548
               ),
549
-            ),'get' => array(
549
+            ), 'get' => array(
550 550
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551 551
               'httpMethod' => 'GET',
552 552
               'parameters' => array(
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
                   'required' => true,
567 567
                 ),
568 568
               ),
569
-            ),'list' => array(
569
+            ), 'list' => array(
570 570
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571 571
               'httpMethod' => 'GET',
572 572
               'parameters' => array(
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
                   'required' => true,
582 582
                 ),
583 583
               ),
584
-            ),'update' => array(
584
+            ), 'update' => array(
585 585
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586 586
               'httpMethod' => 'PUT',
587 587
               'parameters' => array(
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
                   'required' => true,
631 631
                 ),
632 632
               ),
633
-            ),'delete' => array(
633
+            ), 'delete' => array(
634 634
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635 635
               'httpMethod' => 'DELETE',
636 636
               'parameters' => array(
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
                   'required' => true,
651 651
                 ),
652 652
               ),
653
-            ),'get' => array(
653
+            ), 'get' => array(
654 654
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655 655
               'httpMethod' => 'GET',
656 656
               'parameters' => array(
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
                   'required' => true,
671 671
                 ),
672 672
               ),
673
-            ),'list' => array(
673
+            ), 'list' => array(
674 674
               'path' => 'accounts/{accountId}/containers/{containerId}/variables',
675 675
               'httpMethod' => 'GET',
676 676
               'parameters' => array(
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
                   'required' => true,
686 686
                 ),
687 687
               ),
688
-            ),'update' => array(
688
+            ), 'update' => array(
689 689
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690 690
               'httpMethod' => 'PUT',
691 691
               'parameters' => array(
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
                   'required' => true,
735 735
                 ),
736 736
               ),
737
-            ),'delete' => array(
737
+            ), 'delete' => array(
738 738
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739 739
               'httpMethod' => 'DELETE',
740 740
               'parameters' => array(
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
                   'required' => true,
755 755
                 ),
756 756
               ),
757
-            ),'get' => array(
757
+            ), 'get' => array(
758 758
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759 759
               'httpMethod' => 'GET',
760 760
               'parameters' => array(
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
                   'required' => true,
775 775
                 ),
776 776
               ),
777
-            ),'list' => array(
777
+            ), 'list' => array(
778 778
               'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779 779
               'httpMethod' => 'GET',
780 780
               'parameters' => array(
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
                   'type' => 'boolean',
794 794
                 ),
795 795
               ),
796
-            ),'publish' => array(
796
+            ), 'publish' => array(
797 797
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798 798
               'httpMethod' => 'POST',
799 799
               'parameters' => array(
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
                   'type' => 'string',
818 818
                 ),
819 819
               ),
820
-            ),'restore' => array(
820
+            ), 'restore' => array(
821 821
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822 822
               'httpMethod' => 'POST',
823 823
               'parameters' => array(
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
                   'required' => true,
838 838
                 ),
839 839
               ),
840
-            ),'undelete' => array(
840
+            ), 'undelete' => array(
841 841
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842 842
               'httpMethod' => 'POST',
843 843
               'parameters' => array(
@@ -857,7 +857,7 @@  discard block
 block discarded – undo
857 857
                   'required' => true,
858 858
                 ),
859 859
               ),
860
-            ),'update' => array(
860
+            ), 'update' => array(
861 861
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862 862
               'httpMethod' => 'PUT',
863 863
               'parameters' => array(
@@ -901,7 +901,7 @@  discard block
 block discarded – undo
901 901
                   'required' => true,
902 902
                 ),
903 903
               ),
904
-            ),'delete' => array(
904
+            ), 'delete' => array(
905 905
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
906 906
               'httpMethod' => 'DELETE',
907 907
               'parameters' => array(
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
                   'required' => true,
917 917
                 ),
918 918
               ),
919
-            ),'get' => array(
919
+            ), 'get' => array(
920 920
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
921 921
               'httpMethod' => 'GET',
922 922
               'parameters' => array(
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
                   'required' => true,
932 932
                 ),
933 933
               ),
934
-            ),'list' => array(
934
+            ), 'list' => array(
935 935
               'path' => 'accounts/{accountId}/permissions',
936 936
               'httpMethod' => 'GET',
937 937
               'parameters' => array(
@@ -941,7 +941,7 @@  discard block
 block discarded – undo
941 941
                   'required' => true,
942 942
                 ),
943 943
               ),
944
-            ),'update' => array(
944
+            ), 'update' => array(
945 945
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
946 946
               'httpMethod' => 'PUT',
947 947
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Taskqueue.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
    *
327 327
    * @param string $project The project under which the queue lies
328 328
    * @param string $taskqueue The taskqueue to insert the task into
329
-   * @param Google_Task $postBody
329
+   * @param Google_Service_Taskqueue_Task $postBody
330 330
    * @param array $optParams Optional parameters.
331 331
    * @return Google_Service_Taskqueue_Task
332 332
    */
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
    * @param string $taskqueue
385 385
    * @param string $task
386 386
    * @param int $newLeaseSeconds The new lease in seconds.
387
-   * @param Google_Task $postBody
387
+   * @param Google_Service_Taskqueue_Task $postBody
388 388
    * @param array $optParams Optional parameters.
389 389
    * @return Google_Service_Taskqueue_Task
390 390
    */
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
    * @param string $taskqueue
403 403
    * @param string $task
404 404
    * @param int $newLeaseSeconds The new lease in seconds.
405
-   * @param Google_Task $postBody
405
+   * @param Google_Service_Taskqueue_Task $postBody
406 406
    * @param array $optParams Optional parameters.
407 407
    * @return Google_Service_Taskqueue_Task
408 408
    */
Please login to merge, or discard this patch.
Indentation   +273 added lines, -273 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage your Tasks and Taskqueues. */
34 34
   const TASKQUEUE =
35
-      "https://www.googleapis.com/auth/taskqueue";
35
+	  "https://www.googleapis.com/auth/taskqueue";
36 36
   /** Consume Tasks from your Taskqueues. */
37 37
   const TASKQUEUE_CONSUMER =
38
-      "https://www.googleapis.com/auth/taskqueue.consumer";
38
+	  "https://www.googleapis.com/auth/taskqueue.consumer";
39 39
 
40 40
   public $taskqueues;
41 41
   public $tasks;
@@ -48,204 +48,204 @@  discard block
 block discarded – undo
48 48
    */
49 49
   public function __construct(Google_Client $client)
50 50
   {
51
-    parent::__construct($client);
52
-    $this->rootUrl = 'https://www.googleapis.com/';
53
-    $this->servicePath = 'taskqueue/v1beta2/projects/';
54
-    $this->version = 'v1beta2';
55
-    $this->serviceName = 'taskqueue';
56
-
57
-    $this->taskqueues = new Google_Service_Taskqueue_Taskqueues_Resource(
58
-        $this,
59
-        $this->serviceName,
60
-        'taskqueues',
61
-        array(
62
-          'methods' => array(
63
-            'get' => array(
64
-              'path' => '{project}/taskqueues/{taskqueue}',
65
-              'httpMethod' => 'GET',
66
-              'parameters' => array(
67
-                'project' => array(
68
-                  'location' => 'path',
69
-                  'type' => 'string',
70
-                  'required' => true,
71
-                ),
72
-                'taskqueue' => array(
73
-                  'location' => 'path',
74
-                  'type' => 'string',
75
-                  'required' => true,
76
-                ),
77
-                'getStats' => array(
78
-                  'location' => 'query',
79
-                  'type' => 'boolean',
80
-                ),
81
-              ),
82
-            ),
83
-          )
84
-        )
85
-    );
86
-    $this->tasks = new Google_Service_Taskqueue_Tasks_Resource(
87
-        $this,
88
-        $this->serviceName,
89
-        'tasks',
90
-        array(
91
-          'methods' => array(
92
-            'delete' => array(
93
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
94
-              'httpMethod' => 'DELETE',
95
-              'parameters' => array(
96
-                'project' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-                'taskqueue' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-                'task' => array(
107
-                  'location' => 'path',
108
-                  'type' => 'string',
109
-                  'required' => true,
110
-                ),
111
-              ),
112
-            ),'get' => array(
113
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114
-              'httpMethod' => 'GET',
115
-              'parameters' => array(
116
-                'project' => array(
117
-                  'location' => 'path',
118
-                  'type' => 'string',
119
-                  'required' => true,
120
-                ),
121
-                'taskqueue' => array(
122
-                  'location' => 'path',
123
-                  'type' => 'string',
124
-                  'required' => true,
125
-                ),
126
-                'task' => array(
127
-                  'location' => 'path',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-              ),
132
-            ),'insert' => array(
133
-              'path' => '{project}/taskqueues/{taskqueue}/tasks',
134
-              'httpMethod' => 'POST',
135
-              'parameters' => array(
136
-                'project' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-                'taskqueue' => array(
142
-                  'location' => 'path',
143
-                  'type' => 'string',
144
-                  'required' => true,
145
-                ),
146
-              ),
147
-            ),'lease' => array(
148
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149
-              'httpMethod' => 'POST',
150
-              'parameters' => array(
151
-                'project' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'taskqueue' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-                'numTasks' => array(
162
-                  'location' => 'query',
163
-                  'type' => 'integer',
164
-                  'required' => true,
165
-                ),
166
-                'leaseSecs' => array(
167
-                  'location' => 'query',
168
-                  'type' => 'integer',
169
-                  'required' => true,
170
-                ),
171
-                'groupByTag' => array(
172
-                  'location' => 'query',
173
-                  'type' => 'boolean',
174
-                ),
175
-                'tag' => array(
176
-                  'location' => 'query',
177
-                  'type' => 'string',
178
-                ),
179
-              ),
180
-            ),'list' => array(
181
-              'path' => '{project}/taskqueues/{taskqueue}/tasks',
182
-              'httpMethod' => 'GET',
183
-              'parameters' => array(
184
-                'project' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-                'taskqueue' => array(
190
-                  'location' => 'path',
191
-                  'type' => 'string',
192
-                  'required' => true,
193
-                ),
194
-              ),
195
-            ),'patch' => array(
196
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197
-              'httpMethod' => 'PATCH',
198
-              'parameters' => array(
199
-                'project' => array(
200
-                  'location' => 'path',
201
-                  'type' => 'string',
202
-                  'required' => true,
203
-                ),
204
-                'taskqueue' => array(
205
-                  'location' => 'path',
206
-                  'type' => 'string',
207
-                  'required' => true,
208
-                ),
209
-                'task' => array(
210
-                  'location' => 'path',
211
-                  'type' => 'string',
212
-                  'required' => true,
213
-                ),
214
-                'newLeaseSeconds' => array(
215
-                  'location' => 'query',
216
-                  'type' => 'integer',
217
-                  'required' => true,
218
-                ),
219
-              ),
220
-            ),'update' => array(
221
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222
-              'httpMethod' => 'POST',
223
-              'parameters' => array(
224
-                'project' => array(
225
-                  'location' => 'path',
226
-                  'type' => 'string',
227
-                  'required' => true,
228
-                ),
229
-                'taskqueue' => array(
230
-                  'location' => 'path',
231
-                  'type' => 'string',
232
-                  'required' => true,
233
-                ),
234
-                'task' => array(
235
-                  'location' => 'path',
236
-                  'type' => 'string',
237
-                  'required' => true,
238
-                ),
239
-                'newLeaseSeconds' => array(
240
-                  'location' => 'query',
241
-                  'type' => 'integer',
242
-                  'required' => true,
243
-                ),
244
-              ),
245
-            ),
246
-          )
247
-        )
248
-    );
51
+	parent::__construct($client);
52
+	$this->rootUrl = 'https://www.googleapis.com/';
53
+	$this->servicePath = 'taskqueue/v1beta2/projects/';
54
+	$this->version = 'v1beta2';
55
+	$this->serviceName = 'taskqueue';
56
+
57
+	$this->taskqueues = new Google_Service_Taskqueue_Taskqueues_Resource(
58
+		$this,
59
+		$this->serviceName,
60
+		'taskqueues',
61
+		array(
62
+		  'methods' => array(
63
+			'get' => array(
64
+			  'path' => '{project}/taskqueues/{taskqueue}',
65
+			  'httpMethod' => 'GET',
66
+			  'parameters' => array(
67
+				'project' => array(
68
+				  'location' => 'path',
69
+				  'type' => 'string',
70
+				  'required' => true,
71
+				),
72
+				'taskqueue' => array(
73
+				  'location' => 'path',
74
+				  'type' => 'string',
75
+				  'required' => true,
76
+				),
77
+				'getStats' => array(
78
+				  'location' => 'query',
79
+				  'type' => 'boolean',
80
+				),
81
+			  ),
82
+			),
83
+		  )
84
+		)
85
+	);
86
+	$this->tasks = new Google_Service_Taskqueue_Tasks_Resource(
87
+		$this,
88
+		$this->serviceName,
89
+		'tasks',
90
+		array(
91
+		  'methods' => array(
92
+			'delete' => array(
93
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
94
+			  'httpMethod' => 'DELETE',
95
+			  'parameters' => array(
96
+				'project' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+				'taskqueue' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+				'task' => array(
107
+				  'location' => 'path',
108
+				  'type' => 'string',
109
+				  'required' => true,
110
+				),
111
+			  ),
112
+			),'get' => array(
113
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114
+			  'httpMethod' => 'GET',
115
+			  'parameters' => array(
116
+				'project' => array(
117
+				  'location' => 'path',
118
+				  'type' => 'string',
119
+				  'required' => true,
120
+				),
121
+				'taskqueue' => array(
122
+				  'location' => 'path',
123
+				  'type' => 'string',
124
+				  'required' => true,
125
+				),
126
+				'task' => array(
127
+				  'location' => 'path',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+			  ),
132
+			),'insert' => array(
133
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks',
134
+			  'httpMethod' => 'POST',
135
+			  'parameters' => array(
136
+				'project' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+				'taskqueue' => array(
142
+				  'location' => 'path',
143
+				  'type' => 'string',
144
+				  'required' => true,
145
+				),
146
+			  ),
147
+			),'lease' => array(
148
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149
+			  'httpMethod' => 'POST',
150
+			  'parameters' => array(
151
+				'project' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'taskqueue' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+				'numTasks' => array(
162
+				  'location' => 'query',
163
+				  'type' => 'integer',
164
+				  'required' => true,
165
+				),
166
+				'leaseSecs' => array(
167
+				  'location' => 'query',
168
+				  'type' => 'integer',
169
+				  'required' => true,
170
+				),
171
+				'groupByTag' => array(
172
+				  'location' => 'query',
173
+				  'type' => 'boolean',
174
+				),
175
+				'tag' => array(
176
+				  'location' => 'query',
177
+				  'type' => 'string',
178
+				),
179
+			  ),
180
+			),'list' => array(
181
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks',
182
+			  'httpMethod' => 'GET',
183
+			  'parameters' => array(
184
+				'project' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+				'taskqueue' => array(
190
+				  'location' => 'path',
191
+				  'type' => 'string',
192
+				  'required' => true,
193
+				),
194
+			  ),
195
+			),'patch' => array(
196
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197
+			  'httpMethod' => 'PATCH',
198
+			  'parameters' => array(
199
+				'project' => array(
200
+				  'location' => 'path',
201
+				  'type' => 'string',
202
+				  'required' => true,
203
+				),
204
+				'taskqueue' => array(
205
+				  'location' => 'path',
206
+				  'type' => 'string',
207
+				  'required' => true,
208
+				),
209
+				'task' => array(
210
+				  'location' => 'path',
211
+				  'type' => 'string',
212
+				  'required' => true,
213
+				),
214
+				'newLeaseSeconds' => array(
215
+				  'location' => 'query',
216
+				  'type' => 'integer',
217
+				  'required' => true,
218
+				),
219
+			  ),
220
+			),'update' => array(
221
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222
+			  'httpMethod' => 'POST',
223
+			  'parameters' => array(
224
+				'project' => array(
225
+				  'location' => 'path',
226
+				  'type' => 'string',
227
+				  'required' => true,
228
+				),
229
+				'taskqueue' => array(
230
+				  'location' => 'path',
231
+				  'type' => 'string',
232
+				  'required' => true,
233
+				),
234
+				'task' => array(
235
+				  'location' => 'path',
236
+				  'type' => 'string',
237
+				  'required' => true,
238
+				),
239
+				'newLeaseSeconds' => array(
240
+				  'location' => 'query',
241
+				  'type' => 'integer',
242
+				  'required' => true,
243
+				),
244
+			  ),
245
+			),
246
+		  )
247
+		)
248
+	);
249 249
   }
250 250
 }
251 251
 
@@ -273,9 +273,9 @@  discard block
 block discarded – undo
273 273
    */
274 274
   public function get($project, $taskqueue, $optParams = array())
275 275
   {
276
-    $params = array('project' => $project, 'taskqueue' => $taskqueue);
277
-    $params = array_merge($params, $optParams);
278
-    return $this->call('get', array($params), "Google_Service_Taskqueue_TaskQueue");
276
+	$params = array('project' => $project, 'taskqueue' => $taskqueue);
277
+	$params = array_merge($params, $optParams);
278
+	return $this->call('get', array($params), "Google_Service_Taskqueue_TaskQueue");
279 279
   }
280 280
 }
281 281
 
@@ -300,9 +300,9 @@  discard block
 block discarded – undo
300 300
    */
301 301
   public function delete($project, $taskqueue, $task, $optParams = array())
302 302
   {
303
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
304
-    $params = array_merge($params, $optParams);
305
-    return $this->call('delete', array($params));
303
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
304
+	$params = array_merge($params, $optParams);
305
+	return $this->call('delete', array($params));
306 306
   }
307 307
 
308 308
   /**
@@ -316,9 +316,9 @@  discard block
 block discarded – undo
316 316
    */
317 317
   public function get($project, $taskqueue, $task, $optParams = array())
318 318
   {
319
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
320
-    $params = array_merge($params, $optParams);
321
-    return $this->call('get', array($params), "Google_Service_Taskqueue_Task");
319
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
320
+	$params = array_merge($params, $optParams);
321
+	return $this->call('get', array($params), "Google_Service_Taskqueue_Task");
322 322
   }
323 323
 
324 324
   /**
@@ -332,9 +332,9 @@  discard block
 block discarded – undo
332 332
    */
333 333
   public function insert($project, $taskqueue, Google_Service_Taskqueue_Task $postBody, $optParams = array())
334 334
   {
335
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody);
336
-    $params = array_merge($params, $optParams);
337
-    return $this->call('insert', array($params), "Google_Service_Taskqueue_Task");
335
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody);
336
+	$params = array_merge($params, $optParams);
337
+	return $this->call('insert', array($params), "Google_Service_Taskqueue_Task");
338 338
   }
339 339
 
340 340
   /**
@@ -356,9 +356,9 @@  discard block
 block discarded – undo
356 356
    */
357 357
   public function lease($project, $taskqueue, $numTasks, $leaseSecs, $optParams = array())
358 358
   {
359
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs);
360
-    $params = array_merge($params, $optParams);
361
-    return $this->call('lease', array($params), "Google_Service_Taskqueue_Tasks");
359
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs);
360
+	$params = array_merge($params, $optParams);
361
+	return $this->call('lease', array($params), "Google_Service_Taskqueue_Tasks");
362 362
   }
363 363
 
364 364
   /**
@@ -371,9 +371,9 @@  discard block
 block discarded – undo
371 371
    */
372 372
   public function listTasks($project, $taskqueue, $optParams = array())
373 373
   {
374
-    $params = array('project' => $project, 'taskqueue' => $taskqueue);
375
-    $params = array_merge($params, $optParams);
376
-    return $this->call('list', array($params), "Google_Service_Taskqueue_Tasks2");
374
+	$params = array('project' => $project, 'taskqueue' => $taskqueue);
375
+	$params = array_merge($params, $optParams);
376
+	return $this->call('list', array($params), "Google_Service_Taskqueue_Tasks2");
377 377
   }
378 378
 
379 379
   /**
@@ -390,9 +390,9 @@  discard block
 block discarded – undo
390 390
    */
391 391
   public function patch($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array())
392 392
   {
393
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
394
-    $params = array_merge($params, $optParams);
395
-    return $this->call('patch', array($params), "Google_Service_Taskqueue_Task");
393
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
394
+	$params = array_merge($params, $optParams);
395
+	return $this->call('patch', array($params), "Google_Service_Taskqueue_Task");
396 396
   }
397 397
 
398 398
   /**
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
    */
409 409
   public function update($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array())
410 410
   {
411
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
412
-    $params = array_merge($params, $optParams);
413
-    return $this->call('update', array($params), "Google_Service_Taskqueue_Task");
411
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
412
+	$params = array_merge($params, $optParams);
413
+	return $this->call('update', array($params), "Google_Service_Taskqueue_Task");
414 414
   }
415 415
 }
416 416
 
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 class Google_Service_Taskqueue_Task extends Google_Model
421 421
 {
422 422
   protected $internal_gapi_mappings = array(
423
-        "retryCount" => "retry_count",
423
+		"retryCount" => "retry_count",
424 424
   );
425 425
   public $enqueueTimestamp;
426 426
   public $id;
@@ -434,67 +434,67 @@  discard block
 block discarded – undo
434 434
 
435 435
   public function setEnqueueTimestamp($enqueueTimestamp)
436 436
   {
437
-    $this->enqueueTimestamp = $enqueueTimestamp;
437
+	$this->enqueueTimestamp = $enqueueTimestamp;
438 438
   }
439 439
   public function getEnqueueTimestamp()
440 440
   {
441
-    return $this->enqueueTimestamp;
441
+	return $this->enqueueTimestamp;
442 442
   }
443 443
   public function setId($id)
444 444
   {
445
-    $this->id = $id;
445
+	$this->id = $id;
446 446
   }
447 447
   public function getId()
448 448
   {
449
-    return $this->id;
449
+	return $this->id;
450 450
   }
451 451
   public function setKind($kind)
452 452
   {
453
-    $this->kind = $kind;
453
+	$this->kind = $kind;
454 454
   }
455 455
   public function getKind()
456 456
   {
457
-    return $this->kind;
457
+	return $this->kind;
458 458
   }
459 459
   public function setLeaseTimestamp($leaseTimestamp)
460 460
   {
461
-    $this->leaseTimestamp = $leaseTimestamp;
461
+	$this->leaseTimestamp = $leaseTimestamp;
462 462
   }
463 463
   public function getLeaseTimestamp()
464 464
   {
465
-    return $this->leaseTimestamp;
465
+	return $this->leaseTimestamp;
466 466
   }
467 467
   public function setPayloadBase64($payloadBase64)
468 468
   {
469
-    $this->payloadBase64 = $payloadBase64;
469
+	$this->payloadBase64 = $payloadBase64;
470 470
   }
471 471
   public function getPayloadBase64()
472 472
   {
473
-    return $this->payloadBase64;
473
+	return $this->payloadBase64;
474 474
   }
475 475
   public function setQueueName($queueName)
476 476
   {
477
-    $this->queueName = $queueName;
477
+	$this->queueName = $queueName;
478 478
   }
479 479
   public function getQueueName()
480 480
   {
481
-    return $this->queueName;
481
+	return $this->queueName;
482 482
   }
483 483
   public function setRetryCount($retryCount)
484 484
   {
485
-    $this->retryCount = $retryCount;
485
+	$this->retryCount = $retryCount;
486 486
   }
487 487
   public function getRetryCount()
488 488
   {
489
-    return $this->retryCount;
489
+	return $this->retryCount;
490 490
   }
491 491
   public function setTag($tag)
492 492
   {
493
-    $this->tag = $tag;
493
+	$this->tag = $tag;
494 494
   }
495 495
   public function getTag()
496 496
   {
497
-    return $this->tag;
497
+	return $this->tag;
498 498
   }
499 499
 }
500 500
 
@@ -513,43 +513,43 @@  discard block
 block discarded – undo
513 513
 
514 514
   public function setAcl(Google_Service_Taskqueue_TaskQueueAcl $acl)
515 515
   {
516
-    $this->acl = $acl;
516
+	$this->acl = $acl;
517 517
   }
518 518
   public function getAcl()
519 519
   {
520
-    return $this->acl;
520
+	return $this->acl;
521 521
   }
522 522
   public function setId($id)
523 523
   {
524
-    $this->id = $id;
524
+	$this->id = $id;
525 525
   }
526 526
   public function getId()
527 527
   {
528
-    return $this->id;
528
+	return $this->id;
529 529
   }
530 530
   public function setKind($kind)
531 531
   {
532
-    $this->kind = $kind;
532
+	$this->kind = $kind;
533 533
   }
534 534
   public function getKind()
535 535
   {
536
-    return $this->kind;
536
+	return $this->kind;
537 537
   }
538 538
   public function setMaxLeases($maxLeases)
539 539
   {
540
-    $this->maxLeases = $maxLeases;
540
+	$this->maxLeases = $maxLeases;
541 541
   }
542 542
   public function getMaxLeases()
543 543
   {
544
-    return $this->maxLeases;
544
+	return $this->maxLeases;
545 545
   }
546 546
   public function setStats(Google_Service_Taskqueue_TaskQueueStats $stats)
547 547
   {
548
-    $this->stats = $stats;
548
+	$this->stats = $stats;
549 549
   }
550 550
   public function getStats()
551 551
   {
552
-    return $this->stats;
552
+	return $this->stats;
553 553
   }
554 554
 }
555 555
 
@@ -565,27 +565,27 @@  discard block
 block discarded – undo
565 565
 
566 566
   public function setAdminEmails($adminEmails)
567 567
   {
568
-    $this->adminEmails = $adminEmails;
568
+	$this->adminEmails = $adminEmails;
569 569
   }
570 570
   public function getAdminEmails()
571 571
   {
572
-    return $this->adminEmails;
572
+	return $this->adminEmails;
573 573
   }
574 574
   public function setConsumerEmails($consumerEmails)
575 575
   {
576
-    $this->consumerEmails = $consumerEmails;
576
+	$this->consumerEmails = $consumerEmails;
577 577
   }
578 578
   public function getConsumerEmails()
579 579
   {
580
-    return $this->consumerEmails;
580
+	return $this->consumerEmails;
581 581
   }
582 582
   public function setProducerEmails($producerEmails)
583 583
   {
584
-    $this->producerEmails = $producerEmails;
584
+	$this->producerEmails = $producerEmails;
585 585
   }
586 586
   public function getProducerEmails()
587 587
   {
588
-    return $this->producerEmails;
588
+	return $this->producerEmails;
589 589
   }
590 590
 }
591 591
 
@@ -601,35 +601,35 @@  discard block
 block discarded – undo
601 601
 
602 602
   public function setLeasedLastHour($leasedLastHour)
603 603
   {
604
-    $this->leasedLastHour = $leasedLastHour;
604
+	$this->leasedLastHour = $leasedLastHour;
605 605
   }
606 606
   public function getLeasedLastHour()
607 607
   {
608
-    return $this->leasedLastHour;
608
+	return $this->leasedLastHour;
609 609
   }
610 610
   public function setLeasedLastMinute($leasedLastMinute)
611 611
   {
612
-    $this->leasedLastMinute = $leasedLastMinute;
612
+	$this->leasedLastMinute = $leasedLastMinute;
613 613
   }
614 614
   public function getLeasedLastMinute()
615 615
   {
616
-    return $this->leasedLastMinute;
616
+	return $this->leasedLastMinute;
617 617
   }
618 618
   public function setOldestTask($oldestTask)
619 619
   {
620
-    $this->oldestTask = $oldestTask;
620
+	$this->oldestTask = $oldestTask;
621 621
   }
622 622
   public function getOldestTask()
623 623
   {
624
-    return $this->oldestTask;
624
+	return $this->oldestTask;
625 625
   }
626 626
   public function setTotalTasks($totalTasks)
627 627
   {
628
-    $this->totalTasks = $totalTasks;
628
+	$this->totalTasks = $totalTasks;
629 629
   }
630 630
   public function getTotalTasks()
631 631
   {
632
-    return $this->totalTasks;
632
+	return $this->totalTasks;
633 633
   }
634 634
 }
635 635
 
@@ -645,19 +645,19 @@  discard block
 block discarded – undo
645 645
 
646 646
   public function setItems($items)
647 647
   {
648
-    $this->items = $items;
648
+	$this->items = $items;
649 649
   }
650 650
   public function getItems()
651 651
   {
652
-    return $this->items;
652
+	return $this->items;
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
 }
663 663
 
@@ -673,18 +673,18 @@  discard block
 block discarded – undo
673 673
 
674 674
   public function setItems($items)
675 675
   {
676
-    $this->items = $items;
676
+	$this->items = $items;
677 677
   }
678 678
   public function getItems()
679 679
   {
680
-    return $this->items;
680
+	return $this->items;
681 681
   }
682 682
   public function setKind($kind)
683 683
   {
684
-    $this->kind = $kind;
684
+	$this->kind = $kind;
685 685
   }
686 686
   public function getKind()
687 687
   {
688
-    return $this->kind;
688
+	return $this->kind;
689 689
   }
690 690
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
                   'required' => true,
110 110
                 ),
111 111
               ),
112
-            ),'get' => array(
112
+            ), 'get' => array(
113 113
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114 114
               'httpMethod' => 'GET',
115 115
               'parameters' => array(
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                   'required' => true,
130 130
                 ),
131 131
               ),
132
-            ),'insert' => array(
132
+            ), 'insert' => array(
133 133
               'path' => '{project}/taskqueues/{taskqueue}/tasks',
134 134
               'httpMethod' => 'POST',
135 135
               'parameters' => array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                   'required' => true,
145 145
                 ),
146 146
               ),
147
-            ),'lease' => array(
147
+            ), 'lease' => array(
148 148
               'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149 149
               'httpMethod' => 'POST',
150 150
               'parameters' => array(
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                   'type' => 'string',
178 178
                 ),
179 179
               ),
180
-            ),'list' => array(
180
+            ), 'list' => array(
181 181
               'path' => '{project}/taskqueues/{taskqueue}/tasks',
182 182
               'httpMethod' => 'GET',
183 183
               'parameters' => array(
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
                   'required' => true,
193 193
                 ),
194 194
               ),
195
-            ),'patch' => array(
195
+            ), 'patch' => array(
196 196
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197 197
               'httpMethod' => 'PATCH',
198 198
               'parameters' => array(
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                   'required' => true,
218 218
                 ),
219 219
               ),
220
-            ),'update' => array(
220
+            ), 'update' => array(
221 221
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222 222
               'httpMethod' => 'POST',
223 223
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Tasks.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
    * Creates a new task list and adds it to the authenticated user's task lists.
339 339
    * (tasklists.insert)
340 340
    *
341
-   * @param Google_TaskList $postBody
341
+   * @param Google_Service_Tasks_TaskList $postBody
342 342
    * @param array $optParams Optional parameters.
343 343
    * @return Google_Service_Tasks_TaskList
344 344
    */
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
    * patch semantics. (tasklists.patch)
373 373
    *
374 374
    * @param string $tasklist Task list identifier.
375
-   * @param Google_TaskList $postBody
375
+   * @param Google_Service_Tasks_TaskList $postBody
376 376
    * @param array $optParams Optional parameters.
377 377
    * @return Google_Service_Tasks_TaskList
378 378
    */
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
    * Updates the authenticated user's specified task list. (tasklists.update)
388 388
    *
389 389
    * @param string $tasklist Task list identifier.
390
-   * @param Google_TaskList $postBody
390
+   * @param Google_Service_Tasks_TaskList $postBody
391 391
    * @param array $optParams Optional parameters.
392 392
    * @return Google_Service_Tasks_TaskList
393 393
    */
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
    * Creates a new task on the specified task list. (tasks.insert)
459 459
    *
460 460
    * @param string $tasklist Task list identifier.
461
-   * @param Google_Task $postBody
461
+   * @param Google_Service_Tasks_Task $postBody
462 462
    * @param array $optParams Optional parameters.
463 463
    *
464 464
    * @opt_param string parent Parent task identifier. If the task is created at
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
    *
543 543
    * @param string $tasklist Task list identifier.
544 544
    * @param string $task Task identifier.
545
-   * @param Google_Task $postBody
545
+   * @param Google_Service_Tasks_Task $postBody
546 546
    * @param array $optParams Optional parameters.
547 547
    * @return Google_Service_Tasks_Task
548 548
    */
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
    *
559 559
    * @param string $tasklist Task list identifier.
560 560
    * @param string $task Task identifier.
561
-   * @param Google_Task $postBody
561
+   * @param Google_Service_Tasks_Task $postBody
562 562
    * @param array $optParams Optional parameters.
563 563
    * @return Google_Service_Tasks_Task
564 564
    */
Please login to merge, or discard this patch.
Indentation   +352 added lines, -352 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage your tasks. */
34 34
   const TASKS =
35
-      "https://www.googleapis.com/auth/tasks";
35
+	  "https://www.googleapis.com/auth/tasks";
36 36
   /** View your tasks. */
37 37
   const TASKS_READONLY =
38
-      "https://www.googleapis.com/auth/tasks.readonly";
38
+	  "https://www.googleapis.com/auth/tasks.readonly";
39 39
 
40 40
   public $tasklists;
41 41
   public $tasks;
@@ -48,250 +48,250 @@  discard block
 block discarded – undo
48 48
    */
49 49
   public function __construct(Google_Client $client)
50 50
   {
51
-    parent::__construct($client);
52
-    $this->rootUrl = 'https://www.googleapis.com/';
53
-    $this->servicePath = 'tasks/v1/';
54
-    $this->version = 'v1';
55
-    $this->serviceName = 'tasks';
56
-
57
-    $this->tasklists = new Google_Service_Tasks_Tasklists_Resource(
58
-        $this,
59
-        $this->serviceName,
60
-        'tasklists',
61
-        array(
62
-          'methods' => array(
63
-            'delete' => array(
64
-              'path' => 'users/@me/lists/{tasklist}',
65
-              'httpMethod' => 'DELETE',
66
-              'parameters' => array(
67
-                'tasklist' => array(
68
-                  'location' => 'path',
69
-                  'type' => 'string',
70
-                  'required' => true,
71
-                ),
72
-              ),
73
-            ),'get' => array(
74
-              'path' => 'users/@me/lists/{tasklist}',
75
-              'httpMethod' => 'GET',
76
-              'parameters' => array(
77
-                'tasklist' => array(
78
-                  'location' => 'path',
79
-                  'type' => 'string',
80
-                  'required' => true,
81
-                ),
82
-              ),
83
-            ),'insert' => array(
84
-              'path' => 'users/@me/lists',
85
-              'httpMethod' => 'POST',
86
-              'parameters' => array(),
87
-            ),'list' => array(
88
-              'path' => 'users/@me/lists',
89
-              'httpMethod' => 'GET',
90
-              'parameters' => array(
91
-                'pageToken' => array(
92
-                  'location' => 'query',
93
-                  'type' => 'string',
94
-                ),
95
-                'maxResults' => array(
96
-                  'location' => 'query',
97
-                  'type' => 'string',
98
-                ),
99
-              ),
100
-            ),'patch' => array(
101
-              'path' => 'users/@me/lists/{tasklist}',
102
-              'httpMethod' => 'PATCH',
103
-              'parameters' => array(
104
-                'tasklist' => array(
105
-                  'location' => 'path',
106
-                  'type' => 'string',
107
-                  'required' => true,
108
-                ),
109
-              ),
110
-            ),'update' => array(
111
-              'path' => 'users/@me/lists/{tasklist}',
112
-              'httpMethod' => 'PUT',
113
-              'parameters' => array(
114
-                'tasklist' => array(
115
-                  'location' => 'path',
116
-                  'type' => 'string',
117
-                  'required' => true,
118
-                ),
119
-              ),
120
-            ),
121
-          )
122
-        )
123
-    );
124
-    $this->tasks = new Google_Service_Tasks_Tasks_Resource(
125
-        $this,
126
-        $this->serviceName,
127
-        'tasks',
128
-        array(
129
-          'methods' => array(
130
-            'clear' => array(
131
-              'path' => 'lists/{tasklist}/clear',
132
-              'httpMethod' => 'POST',
133
-              'parameters' => array(
134
-                'tasklist' => array(
135
-                  'location' => 'path',
136
-                  'type' => 'string',
137
-                  'required' => true,
138
-                ),
139
-              ),
140
-            ),'delete' => array(
141
-              'path' => 'lists/{tasklist}/tasks/{task}',
142
-              'httpMethod' => 'DELETE',
143
-              'parameters' => array(
144
-                'tasklist' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-                'task' => array(
150
-                  'location' => 'path',
151
-                  'type' => 'string',
152
-                  'required' => true,
153
-                ),
154
-              ),
155
-            ),'get' => array(
156
-              'path' => 'lists/{tasklist}/tasks/{task}',
157
-              'httpMethod' => 'GET',
158
-              'parameters' => array(
159
-                'tasklist' => array(
160
-                  'location' => 'path',
161
-                  'type' => 'string',
162
-                  'required' => true,
163
-                ),
164
-                'task' => array(
165
-                  'location' => 'path',
166
-                  'type' => 'string',
167
-                  'required' => true,
168
-                ),
169
-              ),
170
-            ),'insert' => array(
171
-              'path' => 'lists/{tasklist}/tasks',
172
-              'httpMethod' => 'POST',
173
-              'parameters' => array(
174
-                'tasklist' => array(
175
-                  'location' => 'path',
176
-                  'type' => 'string',
177
-                  'required' => true,
178
-                ),
179
-                'parent' => array(
180
-                  'location' => 'query',
181
-                  'type' => 'string',
182
-                ),
183
-                'previous' => array(
184
-                  'location' => 'query',
185
-                  'type' => 'string',
186
-                ),
187
-              ),
188
-            ),'list' => array(
189
-              'path' => 'lists/{tasklist}/tasks',
190
-              'httpMethod' => 'GET',
191
-              'parameters' => array(
192
-                'tasklist' => array(
193
-                  'location' => 'path',
194
-                  'type' => 'string',
195
-                  'required' => true,
196
-                ),
197
-                'dueMax' => array(
198
-                  'location' => 'query',
199
-                  'type' => 'string',
200
-                ),
201
-                'showDeleted' => array(
202
-                  'location' => 'query',
203
-                  'type' => 'boolean',
204
-                ),
205
-                'updatedMin' => array(
206
-                  'location' => 'query',
207
-                  'type' => 'string',
208
-                ),
209
-                'completedMin' => array(
210
-                  'location' => 'query',
211
-                  'type' => 'string',
212
-                ),
213
-                'maxResults' => array(
214
-                  'location' => 'query',
215
-                  'type' => 'string',
216
-                ),
217
-                'showCompleted' => array(
218
-                  'location' => 'query',
219
-                  'type' => 'boolean',
220
-                ),
221
-                'pageToken' => array(
222
-                  'location' => 'query',
223
-                  'type' => 'string',
224
-                ),
225
-                'completedMax' => array(
226
-                  'location' => 'query',
227
-                  'type' => 'string',
228
-                ),
229
-                'showHidden' => array(
230
-                  'location' => 'query',
231
-                  'type' => 'boolean',
232
-                ),
233
-                'dueMin' => array(
234
-                  'location' => 'query',
235
-                  'type' => 'string',
236
-                ),
237
-              ),
238
-            ),'move' => array(
239
-              'path' => 'lists/{tasklist}/tasks/{task}/move',
240
-              'httpMethod' => 'POST',
241
-              'parameters' => array(
242
-                'tasklist' => array(
243
-                  'location' => 'path',
244
-                  'type' => 'string',
245
-                  'required' => true,
246
-                ),
247
-                'task' => array(
248
-                  'location' => 'path',
249
-                  'type' => 'string',
250
-                  'required' => true,
251
-                ),
252
-                'parent' => array(
253
-                  'location' => 'query',
254
-                  'type' => 'string',
255
-                ),
256
-                'previous' => array(
257
-                  'location' => 'query',
258
-                  'type' => 'string',
259
-                ),
260
-              ),
261
-            ),'patch' => array(
262
-              'path' => 'lists/{tasklist}/tasks/{task}',
263
-              'httpMethod' => 'PATCH',
264
-              'parameters' => array(
265
-                'tasklist' => array(
266
-                  'location' => 'path',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-                'task' => array(
271
-                  'location' => 'path',
272
-                  'type' => 'string',
273
-                  'required' => true,
274
-                ),
275
-              ),
276
-            ),'update' => array(
277
-              'path' => 'lists/{tasklist}/tasks/{task}',
278
-              'httpMethod' => 'PUT',
279
-              'parameters' => array(
280
-                'tasklist' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'string',
283
-                  'required' => true,
284
-                ),
285
-                'task' => array(
286
-                  'location' => 'path',
287
-                  'type' => 'string',
288
-                  'required' => true,
289
-                ),
290
-              ),
291
-            ),
292
-          )
293
-        )
294
-    );
51
+	parent::__construct($client);
52
+	$this->rootUrl = 'https://www.googleapis.com/';
53
+	$this->servicePath = 'tasks/v1/';
54
+	$this->version = 'v1';
55
+	$this->serviceName = 'tasks';
56
+
57
+	$this->tasklists = new Google_Service_Tasks_Tasklists_Resource(
58
+		$this,
59
+		$this->serviceName,
60
+		'tasklists',
61
+		array(
62
+		  'methods' => array(
63
+			'delete' => array(
64
+			  'path' => 'users/@me/lists/{tasklist}',
65
+			  'httpMethod' => 'DELETE',
66
+			  'parameters' => array(
67
+				'tasklist' => array(
68
+				  'location' => 'path',
69
+				  'type' => 'string',
70
+				  'required' => true,
71
+				),
72
+			  ),
73
+			),'get' => array(
74
+			  'path' => 'users/@me/lists/{tasklist}',
75
+			  'httpMethod' => 'GET',
76
+			  'parameters' => array(
77
+				'tasklist' => array(
78
+				  'location' => 'path',
79
+				  'type' => 'string',
80
+				  'required' => true,
81
+				),
82
+			  ),
83
+			),'insert' => array(
84
+			  'path' => 'users/@me/lists',
85
+			  'httpMethod' => 'POST',
86
+			  'parameters' => array(),
87
+			),'list' => array(
88
+			  'path' => 'users/@me/lists',
89
+			  'httpMethod' => 'GET',
90
+			  'parameters' => array(
91
+				'pageToken' => array(
92
+				  'location' => 'query',
93
+				  'type' => 'string',
94
+				),
95
+				'maxResults' => array(
96
+				  'location' => 'query',
97
+				  'type' => 'string',
98
+				),
99
+			  ),
100
+			),'patch' => array(
101
+			  'path' => 'users/@me/lists/{tasklist}',
102
+			  'httpMethod' => 'PATCH',
103
+			  'parameters' => array(
104
+				'tasklist' => array(
105
+				  'location' => 'path',
106
+				  'type' => 'string',
107
+				  'required' => true,
108
+				),
109
+			  ),
110
+			),'update' => array(
111
+			  'path' => 'users/@me/lists/{tasklist}',
112
+			  'httpMethod' => 'PUT',
113
+			  'parameters' => array(
114
+				'tasklist' => array(
115
+				  'location' => 'path',
116
+				  'type' => 'string',
117
+				  'required' => true,
118
+				),
119
+			  ),
120
+			),
121
+		  )
122
+		)
123
+	);
124
+	$this->tasks = new Google_Service_Tasks_Tasks_Resource(
125
+		$this,
126
+		$this->serviceName,
127
+		'tasks',
128
+		array(
129
+		  'methods' => array(
130
+			'clear' => array(
131
+			  'path' => 'lists/{tasklist}/clear',
132
+			  'httpMethod' => 'POST',
133
+			  'parameters' => array(
134
+				'tasklist' => array(
135
+				  'location' => 'path',
136
+				  'type' => 'string',
137
+				  'required' => true,
138
+				),
139
+			  ),
140
+			),'delete' => array(
141
+			  'path' => 'lists/{tasklist}/tasks/{task}',
142
+			  'httpMethod' => 'DELETE',
143
+			  'parameters' => array(
144
+				'tasklist' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+				'task' => array(
150
+				  'location' => 'path',
151
+				  'type' => 'string',
152
+				  'required' => true,
153
+				),
154
+			  ),
155
+			),'get' => array(
156
+			  'path' => 'lists/{tasklist}/tasks/{task}',
157
+			  'httpMethod' => 'GET',
158
+			  'parameters' => array(
159
+				'tasklist' => array(
160
+				  'location' => 'path',
161
+				  'type' => 'string',
162
+				  'required' => true,
163
+				),
164
+				'task' => array(
165
+				  'location' => 'path',
166
+				  'type' => 'string',
167
+				  'required' => true,
168
+				),
169
+			  ),
170
+			),'insert' => array(
171
+			  'path' => 'lists/{tasklist}/tasks',
172
+			  'httpMethod' => 'POST',
173
+			  'parameters' => array(
174
+				'tasklist' => array(
175
+				  'location' => 'path',
176
+				  'type' => 'string',
177
+				  'required' => true,
178
+				),
179
+				'parent' => array(
180
+				  'location' => 'query',
181
+				  'type' => 'string',
182
+				),
183
+				'previous' => array(
184
+				  'location' => 'query',
185
+				  'type' => 'string',
186
+				),
187
+			  ),
188
+			),'list' => array(
189
+			  'path' => 'lists/{tasklist}/tasks',
190
+			  'httpMethod' => 'GET',
191
+			  'parameters' => array(
192
+				'tasklist' => array(
193
+				  'location' => 'path',
194
+				  'type' => 'string',
195
+				  'required' => true,
196
+				),
197
+				'dueMax' => array(
198
+				  'location' => 'query',
199
+				  'type' => 'string',
200
+				),
201
+				'showDeleted' => array(
202
+				  'location' => 'query',
203
+				  'type' => 'boolean',
204
+				),
205
+				'updatedMin' => array(
206
+				  'location' => 'query',
207
+				  'type' => 'string',
208
+				),
209
+				'completedMin' => array(
210
+				  'location' => 'query',
211
+				  'type' => 'string',
212
+				),
213
+				'maxResults' => array(
214
+				  'location' => 'query',
215
+				  'type' => 'string',
216
+				),
217
+				'showCompleted' => array(
218
+				  'location' => 'query',
219
+				  'type' => 'boolean',
220
+				),
221
+				'pageToken' => array(
222
+				  'location' => 'query',
223
+				  'type' => 'string',
224
+				),
225
+				'completedMax' => array(
226
+				  'location' => 'query',
227
+				  'type' => 'string',
228
+				),
229
+				'showHidden' => array(
230
+				  'location' => 'query',
231
+				  'type' => 'boolean',
232
+				),
233
+				'dueMin' => array(
234
+				  'location' => 'query',
235
+				  'type' => 'string',
236
+				),
237
+			  ),
238
+			),'move' => array(
239
+			  'path' => 'lists/{tasklist}/tasks/{task}/move',
240
+			  'httpMethod' => 'POST',
241
+			  'parameters' => array(
242
+				'tasklist' => array(
243
+				  'location' => 'path',
244
+				  'type' => 'string',
245
+				  'required' => true,
246
+				),
247
+				'task' => array(
248
+				  'location' => 'path',
249
+				  'type' => 'string',
250
+				  'required' => true,
251
+				),
252
+				'parent' => array(
253
+				  'location' => 'query',
254
+				  'type' => 'string',
255
+				),
256
+				'previous' => array(
257
+				  'location' => 'query',
258
+				  'type' => 'string',
259
+				),
260
+			  ),
261
+			),'patch' => array(
262
+			  'path' => 'lists/{tasklist}/tasks/{task}',
263
+			  'httpMethod' => 'PATCH',
264
+			  'parameters' => array(
265
+				'tasklist' => array(
266
+				  'location' => 'path',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+				'task' => array(
271
+				  'location' => 'path',
272
+				  'type' => 'string',
273
+				  'required' => true,
274
+				),
275
+			  ),
276
+			),'update' => array(
277
+			  'path' => 'lists/{tasklist}/tasks/{task}',
278
+			  'httpMethod' => 'PUT',
279
+			  'parameters' => array(
280
+				'tasklist' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'string',
283
+				  'required' => true,
284
+				),
285
+				'task' => array(
286
+				  'location' => 'path',
287
+				  'type' => 'string',
288
+				  'required' => true,
289
+				),
290
+			  ),
291
+			),
292
+		  )
293
+		)
294
+	);
295 295
   }
296 296
 }
297 297
 
@@ -315,9 +315,9 @@  discard block
 block discarded – undo
315 315
    */
316 316
   public function delete($tasklist, $optParams = array())
317 317
   {
318
-    $params = array('tasklist' => $tasklist);
319
-    $params = array_merge($params, $optParams);
320
-    return $this->call('delete', array($params));
318
+	$params = array('tasklist' => $tasklist);
319
+	$params = array_merge($params, $optParams);
320
+	return $this->call('delete', array($params));
321 321
   }
322 322
 
323 323
   /**
@@ -329,9 +329,9 @@  discard block
 block discarded – undo
329 329
    */
330 330
   public function get($tasklist, $optParams = array())
331 331
   {
332
-    $params = array('tasklist' => $tasklist);
333
-    $params = array_merge($params, $optParams);
334
-    return $this->call('get', array($params), "Google_Service_Tasks_TaskList");
332
+	$params = array('tasklist' => $tasklist);
333
+	$params = array_merge($params, $optParams);
334
+	return $this->call('get', array($params), "Google_Service_Tasks_TaskList");
335 335
   }
336 336
 
337 337
   /**
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
    */
345 345
   public function insert(Google_Service_Tasks_TaskList $postBody, $optParams = array())
346 346
   {
347
-    $params = array('postBody' => $postBody);
348
-    $params = array_merge($params, $optParams);
349
-    return $this->call('insert', array($params), "Google_Service_Tasks_TaskList");
347
+	$params = array('postBody' => $postBody);
348
+	$params = array_merge($params, $optParams);
349
+	return $this->call('insert', array($params), "Google_Service_Tasks_TaskList");
350 350
   }
351 351
 
352 352
   /**
@@ -362,9 +362,9 @@  discard block
 block discarded – undo
362 362
    */
363 363
   public function listTasklists($optParams = array())
364 364
   {
365
-    $params = array();
366
-    $params = array_merge($params, $optParams);
367
-    return $this->call('list', array($params), "Google_Service_Tasks_TaskLists");
365
+	$params = array();
366
+	$params = array_merge($params, $optParams);
367
+	return $this->call('list', array($params), "Google_Service_Tasks_TaskLists");
368 368
   }
369 369
 
370 370
   /**
@@ -378,9 +378,9 @@  discard block
 block discarded – undo
378 378
    */
379 379
   public function patch($tasklist, Google_Service_Tasks_TaskList $postBody, $optParams = array())
380 380
   {
381
-    $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
382
-    $params = array_merge($params, $optParams);
383
-    return $this->call('patch', array($params), "Google_Service_Tasks_TaskList");
381
+	$params = array('tasklist' => $tasklist, 'postBody' => $postBody);
382
+	$params = array_merge($params, $optParams);
383
+	return $this->call('patch', array($params), "Google_Service_Tasks_TaskList");
384 384
   }
385 385
 
386 386
   /**
@@ -393,9 +393,9 @@  discard block
 block discarded – undo
393 393
    */
394 394
   public function update($tasklist, Google_Service_Tasks_TaskList $postBody, $optParams = array())
395 395
   {
396
-    $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
397
-    $params = array_merge($params, $optParams);
398
-    return $this->call('update', array($params), "Google_Service_Tasks_TaskList");
396
+	$params = array('tasklist' => $tasklist, 'postBody' => $postBody);
397
+	$params = array_merge($params, $optParams);
398
+	return $this->call('update', array($params), "Google_Service_Tasks_TaskList");
399 399
   }
400 400
 }
401 401
 
@@ -420,9 +420,9 @@  discard block
 block discarded – undo
420 420
    */
421 421
   public function clear($tasklist, $optParams = array())
422 422
   {
423
-    $params = array('tasklist' => $tasklist);
424
-    $params = array_merge($params, $optParams);
425
-    return $this->call('clear', array($params));
423
+	$params = array('tasklist' => $tasklist);
424
+	$params = array_merge($params, $optParams);
425
+	return $this->call('clear', array($params));
426 426
   }
427 427
 
428 428
   /**
@@ -434,9 +434,9 @@  discard block
 block discarded – undo
434 434
    */
435 435
   public function delete($tasklist, $task, $optParams = array())
436 436
   {
437
-    $params = array('tasklist' => $tasklist, 'task' => $task);
438
-    $params = array_merge($params, $optParams);
439
-    return $this->call('delete', array($params));
437
+	$params = array('tasklist' => $tasklist, 'task' => $task);
438
+	$params = array_merge($params, $optParams);
439
+	return $this->call('delete', array($params));
440 440
   }
441 441
 
442 442
   /**
@@ -449,9 +449,9 @@  discard block
 block discarded – undo
449 449
    */
450 450
   public function get($tasklist, $task, $optParams = array())
451 451
   {
452
-    $params = array('tasklist' => $tasklist, 'task' => $task);
453
-    $params = array_merge($params, $optParams);
454
-    return $this->call('get', array($params), "Google_Service_Tasks_Task");
452
+	$params = array('tasklist' => $tasklist, 'task' => $task);
453
+	$params = array_merge($params, $optParams);
454
+	return $this->call('get', array($params), "Google_Service_Tasks_Task");
455 455
   }
456 456
 
457 457
   /**
@@ -470,9 +470,9 @@  discard block
 block discarded – undo
470 470
    */
471 471
   public function insert($tasklist, Google_Service_Tasks_Task $postBody, $optParams = array())
472 472
   {
473
-    $params = array('tasklist' => $tasklist, 'postBody' => $postBody);
474
-    $params = array_merge($params, $optParams);
475
-    return $this->call('insert', array($params), "Google_Service_Tasks_Task");
473
+	$params = array('tasklist' => $tasklist, 'postBody' => $postBody);
474
+	$params = array_merge($params, $optParams);
475
+	return $this->call('insert', array($params), "Google_Service_Tasks_Task");
476 476
   }
477 477
 
478 478
   /**
@@ -508,9 +508,9 @@  discard block
 block discarded – undo
508 508
    */
509 509
   public function listTasks($tasklist, $optParams = array())
510 510
   {
511
-    $params = array('tasklist' => $tasklist);
512
-    $params = array_merge($params, $optParams);
513
-    return $this->call('list', array($params), "Google_Service_Tasks_Tasks");
511
+	$params = array('tasklist' => $tasklist);
512
+	$params = array_merge($params, $optParams);
513
+	return $this->call('list', array($params), "Google_Service_Tasks_Tasks");
514 514
   }
515 515
 
516 516
   /**
@@ -531,9 +531,9 @@  discard block
 block discarded – undo
531 531
    */
532 532
   public function move($tasklist, $task, $optParams = array())
533 533
   {
534
-    $params = array('tasklist' => $tasklist, 'task' => $task);
535
-    $params = array_merge($params, $optParams);
536
-    return $this->call('move', array($params), "Google_Service_Tasks_Task");
534
+	$params = array('tasklist' => $tasklist, 'task' => $task);
535
+	$params = array_merge($params, $optParams);
536
+	return $this->call('move', array($params), "Google_Service_Tasks_Task");
537 537
   }
538 538
 
539 539
   /**
@@ -548,9 +548,9 @@  discard block
 block discarded – undo
548 548
    */
549 549
   public function patch($tasklist, $task, Google_Service_Tasks_Task $postBody, $optParams = array())
550 550
   {
551
-    $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
552
-    $params = array_merge($params, $optParams);
553
-    return $this->call('patch', array($params), "Google_Service_Tasks_Task");
551
+	$params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
552
+	$params = array_merge($params, $optParams);
553
+	return $this->call('patch', array($params), "Google_Service_Tasks_Task");
554 554
   }
555 555
 
556 556
   /**
@@ -564,9 +564,9 @@  discard block
 block discarded – undo
564 564
    */
565 565
   public function update($tasklist, $task, Google_Service_Tasks_Task $postBody, $optParams = array())
566 566
   {
567
-    $params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
568
-    $params = array_merge($params, $optParams);
569
-    return $this->call('update', array($params), "Google_Service_Tasks_Task");
567
+	$params = array('tasklist' => $tasklist, 'task' => $task, 'postBody' => $postBody);
568
+	$params = array_merge($params, $optParams);
569
+	return $this->call('update', array($params), "Google_Service_Tasks_Task");
570 570
   }
571 571
 }
572 572
 
@@ -598,123 +598,123 @@  discard block
 block discarded – undo
598 598
 
599 599
   public function setCompleted($completed)
600 600
   {
601
-    $this->completed = $completed;
601
+	$this->completed = $completed;
602 602
   }
603 603
   public function getCompleted()
604 604
   {
605
-    return $this->completed;
605
+	return $this->completed;
606 606
   }
607 607
   public function setDeleted($deleted)
608 608
   {
609
-    $this->deleted = $deleted;
609
+	$this->deleted = $deleted;
610 610
   }
611 611
   public function getDeleted()
612 612
   {
613
-    return $this->deleted;
613
+	return $this->deleted;
614 614
   }
615 615
   public function setDue($due)
616 616
   {
617
-    $this->due = $due;
617
+	$this->due = $due;
618 618
   }
619 619
   public function getDue()
620 620
   {
621
-    return $this->due;
621
+	return $this->due;
622 622
   }
623 623
   public function setEtag($etag)
624 624
   {
625
-    $this->etag = $etag;
625
+	$this->etag = $etag;
626 626
   }
627 627
   public function getEtag()
628 628
   {
629
-    return $this->etag;
629
+	return $this->etag;
630 630
   }
631 631
   public function setHidden($hidden)
632 632
   {
633
-    $this->hidden = $hidden;
633
+	$this->hidden = $hidden;
634 634
   }
635 635
   public function getHidden()
636 636
   {
637
-    return $this->hidden;
637
+	return $this->hidden;
638 638
   }
639 639
   public function setId($id)
640 640
   {
641
-    $this->id = $id;
641
+	$this->id = $id;
642 642
   }
643 643
   public function getId()
644 644
   {
645
-    return $this->id;
645
+	return $this->id;
646 646
   }
647 647
   public function setKind($kind)
648 648
   {
649
-    $this->kind = $kind;
649
+	$this->kind = $kind;
650 650
   }
651 651
   public function getKind()
652 652
   {
653
-    return $this->kind;
653
+	return $this->kind;
654 654
   }
655 655
   public function setLinks($links)
656 656
   {
657
-    $this->links = $links;
657
+	$this->links = $links;
658 658
   }
659 659
   public function getLinks()
660 660
   {
661
-    return $this->links;
661
+	return $this->links;
662 662
   }
663 663
   public function setNotes($notes)
664 664
   {
665
-    $this->notes = $notes;
665
+	$this->notes = $notes;
666 666
   }
667 667
   public function getNotes()
668 668
   {
669
-    return $this->notes;
669
+	return $this->notes;
670 670
   }
671 671
   public function setParent($parent)
672 672
   {
673
-    $this->parent = $parent;
673
+	$this->parent = $parent;
674 674
   }
675 675
   public function getParent()
676 676
   {
677
-    return $this->parent;
677
+	return $this->parent;
678 678
   }
679 679
   public function setPosition($position)
680 680
   {
681
-    $this->position = $position;
681
+	$this->position = $position;
682 682
   }
683 683
   public function getPosition()
684 684
   {
685
-    return $this->position;
685
+	return $this->position;
686 686
   }
687 687
   public function setSelfLink($selfLink)
688 688
   {
689
-    $this->selfLink = $selfLink;
689
+	$this->selfLink = $selfLink;
690 690
   }
691 691
   public function getSelfLink()
692 692
   {
693
-    return $this->selfLink;
693
+	return $this->selfLink;
694 694
   }
695 695
   public function setStatus($status)
696 696
   {
697
-    $this->status = $status;
697
+	$this->status = $status;
698 698
   }
699 699
   public function getStatus()
700 700
   {
701
-    return $this->status;
701
+	return $this->status;
702 702
   }
703 703
   public function setTitle($title)
704 704
   {
705
-    $this->title = $title;
705
+	$this->title = $title;
706 706
   }
707 707
   public function getTitle()
708 708
   {
709
-    return $this->title;
709
+	return $this->title;
710 710
   }
711 711
   public function setUpdated($updated)
712 712
   {
713
-    $this->updated = $updated;
713
+	$this->updated = $updated;
714 714
   }
715 715
   public function getUpdated()
716 716
   {
717
-    return $this->updated;
717
+	return $this->updated;
718 718
   }
719 719
 }
720 720
 
@@ -729,27 +729,27 @@  discard block
 block discarded – undo
729 729
 
730 730
   public function setDescription($description)
731 731
   {
732
-    $this->description = $description;
732
+	$this->description = $description;
733 733
   }
734 734
   public function getDescription()
735 735
   {
736
-    return $this->description;
736
+	return $this->description;
737 737
   }
738 738
   public function setLink($link)
739 739
   {
740
-    $this->link = $link;
740
+	$this->link = $link;
741 741
   }
742 742
   public function getLink()
743 743
   {
744
-    return $this->link;
744
+	return $this->link;
745 745
   }
746 746
   public function setType($type)
747 747
   {
748
-    $this->type = $type;
748
+	$this->type = $type;
749 749
   }
750 750
   public function getType()
751 751
   {
752
-    return $this->type;
752
+	return $this->type;
753 753
   }
754 754
 }
755 755
 
@@ -767,51 +767,51 @@  discard block
 block discarded – undo
767 767
 
768 768
   public function setEtag($etag)
769 769
   {
770
-    $this->etag = $etag;
770
+	$this->etag = $etag;
771 771
   }
772 772
   public function getEtag()
773 773
   {
774
-    return $this->etag;
774
+	return $this->etag;
775 775
   }
776 776
   public function setId($id)
777 777
   {
778
-    $this->id = $id;
778
+	$this->id = $id;
779 779
   }
780 780
   public function getId()
781 781
   {
782
-    return $this->id;
782
+	return $this->id;
783 783
   }
784 784
   public function setKind($kind)
785 785
   {
786
-    $this->kind = $kind;
786
+	$this->kind = $kind;
787 787
   }
788 788
   public function getKind()
789 789
   {
790
-    return $this->kind;
790
+	return $this->kind;
791 791
   }
792 792
   public function setSelfLink($selfLink)
793 793
   {
794
-    $this->selfLink = $selfLink;
794
+	$this->selfLink = $selfLink;
795 795
   }
796 796
   public function getSelfLink()
797 797
   {
798
-    return $this->selfLink;
798
+	return $this->selfLink;
799 799
   }
800 800
   public function setTitle($title)
801 801
   {
802
-    $this->title = $title;
802
+	$this->title = $title;
803 803
   }
804 804
   public function getTitle()
805 805
   {
806
-    return $this->title;
806
+	return $this->title;
807 807
   }
808 808
   public function setUpdated($updated)
809 809
   {
810
-    $this->updated = $updated;
810
+	$this->updated = $updated;
811 811
   }
812 812
   public function getUpdated()
813 813
   {
814
-    return $this->updated;
814
+	return $this->updated;
815 815
   }
816 816
 }
817 817
 
@@ -829,35 +829,35 @@  discard block
 block discarded – undo
829 829
 
830 830
   public function setEtag($etag)
831 831
   {
832
-    $this->etag = $etag;
832
+	$this->etag = $etag;
833 833
   }
834 834
   public function getEtag()
835 835
   {
836
-    return $this->etag;
836
+	return $this->etag;
837 837
   }
838 838
   public function setItems($items)
839 839
   {
840
-    $this->items = $items;
840
+	$this->items = $items;
841 841
   }
842 842
   public function getItems()
843 843
   {
844
-    return $this->items;
844
+	return $this->items;
845 845
   }
846 846
   public function setKind($kind)
847 847
   {
848
-    $this->kind = $kind;
848
+	$this->kind = $kind;
849 849
   }
850 850
   public function getKind()
851 851
   {
852
-    return $this->kind;
852
+	return $this->kind;
853 853
   }
854 854
   public function setNextPageToken($nextPageToken)
855 855
   {
856
-    $this->nextPageToken = $nextPageToken;
856
+	$this->nextPageToken = $nextPageToken;
857 857
   }
858 858
   public function getNextPageToken()
859 859
   {
860
-    return $this->nextPageToken;
860
+	return $this->nextPageToken;
861 861
   }
862 862
 }
863 863
 
@@ -875,34 +875,34 @@  discard block
 block discarded – undo
875 875
 
876 876
   public function setEtag($etag)
877 877
   {
878
-    $this->etag = $etag;
878
+	$this->etag = $etag;
879 879
   }
880 880
   public function getEtag()
881 881
   {
882
-    return $this->etag;
882
+	return $this->etag;
883 883
   }
884 884
   public function setItems($items)
885 885
   {
886
-    $this->items = $items;
886
+	$this->items = $items;
887 887
   }
888 888
   public function getItems()
889 889
   {
890
-    return $this->items;
890
+	return $this->items;
891 891
   }
892 892
   public function setKind($kind)
893 893
   {
894
-    $this->kind = $kind;
894
+	$this->kind = $kind;
895 895
   }
896 896
   public function getKind()
897 897
   {
898
-    return $this->kind;
898
+	return $this->kind;
899 899
   }
900 900
   public function setNextPageToken($nextPageToken)
901 901
   {
902
-    $this->nextPageToken = $nextPageToken;
902
+	$this->nextPageToken = $nextPageToken;
903 903
   }
904 904
   public function getNextPageToken()
905 905
   {
906
-    return $this->nextPageToken;
906
+	return $this->nextPageToken;
907 907
   }
908 908
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                   'required' => true,
71 71
                 ),
72 72
               ),
73
-            ),'get' => array(
73
+            ), 'get' => array(
74 74
               'path' => 'users/@me/lists/{tasklist}',
75 75
               'httpMethod' => 'GET',
76 76
               'parameters' => array(
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
                   'required' => true,
81 81
                 ),
82 82
               ),
83
-            ),'insert' => array(
83
+            ), 'insert' => array(
84 84
               'path' => 'users/@me/lists',
85 85
               'httpMethod' => 'POST',
86 86
               'parameters' => array(),
87
-            ),'list' => array(
87
+            ), 'list' => array(
88 88
               'path' => 'users/@me/lists',
89 89
               'httpMethod' => 'GET',
90 90
               'parameters' => array(
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                   'type' => 'string',
98 98
                 ),
99 99
               ),
100
-            ),'patch' => array(
100
+            ), 'patch' => array(
101 101
               'path' => 'users/@me/lists/{tasklist}',
102 102
               'httpMethod' => 'PATCH',
103 103
               'parameters' => array(
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                   'required' => true,
108 108
                 ),
109 109
               ),
110
-            ),'update' => array(
110
+            ), 'update' => array(
111 111
               'path' => 'users/@me/lists/{tasklist}',
112 112
               'httpMethod' => 'PUT',
113 113
               'parameters' => array(
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
                   'required' => true,
138 138
                 ),
139 139
               ),
140
-            ),'delete' => array(
140
+            ), 'delete' => array(
141 141
               'path' => 'lists/{tasklist}/tasks/{task}',
142 142
               'httpMethod' => 'DELETE',
143 143
               'parameters' => array(
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                   'required' => true,
153 153
                 ),
154 154
               ),
155
-            ),'get' => array(
155
+            ), 'get' => array(
156 156
               'path' => 'lists/{tasklist}/tasks/{task}',
157 157
               'httpMethod' => 'GET',
158 158
               'parameters' => array(
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                   'required' => true,
168 168
                 ),
169 169
               ),
170
-            ),'insert' => array(
170
+            ), 'insert' => array(
171 171
               'path' => 'lists/{tasklist}/tasks',
172 172
               'httpMethod' => 'POST',
173 173
               'parameters' => array(
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                   'type' => 'string',
186 186
                 ),
187 187
               ),
188
-            ),'list' => array(
188
+            ), 'list' => array(
189 189
               'path' => 'lists/{tasklist}/tasks',
190 190
               'httpMethod' => 'GET',
191 191
               'parameters' => array(
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
                   'type' => 'string',
236 236
                 ),
237 237
               ),
238
-            ),'move' => array(
238
+            ), 'move' => array(
239 239
               'path' => 'lists/{tasklist}/tasks/{task}/move',
240 240
               'httpMethod' => 'POST',
241 241
               'parameters' => array(
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
                   'type' => 'string',
259 259
                 ),
260 260
               ),
261
-            ),'patch' => array(
261
+            ), 'patch' => array(
262 262
               'path' => 'lists/{tasklist}/tasks/{task}',
263 263
               'httpMethod' => 'PATCH',
264 264
               'parameters' => array(
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
                   'required' => true,
274 274
                 ),
275 275
               ),
276
-            ),'update' => array(
276
+            ), 'update' => array(
277 277
               'path' => 'lists/{tasklist}/tasks/{task}',
278 278
               'httpMethod' => 'PUT',
279 279
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/Urlshortener.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
   /**
126 126
    * Creates a new short URL. (url.insert)
127 127
    *
128
-   * @param Google_Url $postBody
128
+   * @param Google_Service_Urlshortener_Url $postBody
129 129
    * @param array $optParams Optional parameters.
130 130
    * @return Google_Service_Urlshortener_Url
131 131
    */
Please login to merge, or discard this patch.
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage your goo.gl short URLs. */
34 34
   const URLSHORTENER =
35
-      "https://www.googleapis.com/auth/urlshortener";
35
+	  "https://www.googleapis.com/auth/urlshortener";
36 36
 
37 37
   public $url;
38 38
   
@@ -44,53 +44,53 @@  discard block
 block discarded – undo
44 44
    */
45 45
   public function __construct(Google_Client $client)
46 46
   {
47
-    parent::__construct($client);
48
-    $this->rootUrl = 'https://www.googleapis.com/';
49
-    $this->servicePath = 'urlshortener/v1/';
50
-    $this->version = 'v1';
51
-    $this->serviceName = 'urlshortener';
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'urlshortener/v1/';
50
+	$this->version = 'v1';
51
+	$this->serviceName = 'urlshortener';
52 52
 
53
-    $this->url = new Google_Service_Urlshortener_Url_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'url',
57
-        array(
58
-          'methods' => array(
59
-            'get' => array(
60
-              'path' => 'url',
61
-              'httpMethod' => 'GET',
62
-              'parameters' => array(
63
-                'shortUrl' => array(
64
-                  'location' => 'query',
65
-                  'type' => 'string',
66
-                  'required' => true,
67
-                ),
68
-                'projection' => array(
69
-                  'location' => 'query',
70
-                  'type' => 'string',
71
-                ),
72
-              ),
73
-            ),'insert' => array(
74
-              'path' => 'url',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(),
77
-            ),'list' => array(
78
-              'path' => 'url/history',
79
-              'httpMethod' => 'GET',
80
-              'parameters' => array(
81
-                'start-token' => array(
82
-                  'location' => 'query',
83
-                  'type' => 'string',
84
-                ),
85
-                'projection' => array(
86
-                  'location' => 'query',
87
-                  'type' => 'string',
88
-                ),
89
-              ),
90
-            ),
91
-          )
92
-        )
93
-    );
53
+	$this->url = new Google_Service_Urlshortener_Url_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'url',
57
+		array(
58
+		  'methods' => array(
59
+			'get' => array(
60
+			  'path' => 'url',
61
+			  'httpMethod' => 'GET',
62
+			  'parameters' => array(
63
+				'shortUrl' => array(
64
+				  'location' => 'query',
65
+				  'type' => 'string',
66
+				  'required' => true,
67
+				),
68
+				'projection' => array(
69
+				  'location' => 'query',
70
+				  'type' => 'string',
71
+				),
72
+			  ),
73
+			),'insert' => array(
74
+			  'path' => 'url',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(),
77
+			),'list' => array(
78
+			  'path' => 'url/history',
79
+			  'httpMethod' => 'GET',
80
+			  'parameters' => array(
81
+				'start-token' => array(
82
+				  'location' => 'query',
83
+				  'type' => 'string',
84
+				),
85
+				'projection' => array(
86
+				  'location' => 'query',
87
+				  'type' => 'string',
88
+				),
89
+			  ),
90
+			),
91
+		  )
92
+		)
93
+	);
94 94
   }
95 95
 }
96 96
 
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
    */
118 118
   public function get($shortUrl, $optParams = array())
119 119
   {
120
-    $params = array('shortUrl' => $shortUrl);
121
-    $params = array_merge($params, $optParams);
122
-    return $this->call('get', array($params), "Google_Service_Urlshortener_Url");
120
+	$params = array('shortUrl' => $shortUrl);
121
+	$params = array_merge($params, $optParams);
122
+	return $this->call('get', array($params), "Google_Service_Urlshortener_Url");
123 123
   }
124 124
 
125 125
   /**
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
    */
132 132
   public function insert(Google_Service_Urlshortener_Url $postBody, $optParams = array())
133 133
   {
134
-    $params = array('postBody' => $postBody);
135
-    $params = array_merge($params, $optParams);
136
-    return $this->call('insert', array($params), "Google_Service_Urlshortener_Url");
134
+	$params = array('postBody' => $postBody);
135
+	$params = array_merge($params, $optParams);
136
+	return $this->call('insert', array($params), "Google_Service_Urlshortener_Url");
137 137
   }
138 138
 
139 139
   /**
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
    */
149 149
   public function listUrl($optParams = array())
150 150
   {
151
-    $params = array();
152
-    $params = array_merge($params, $optParams);
153
-    return $this->call('list', array($params), "Google_Service_Urlshortener_UrlHistory");
151
+	$params = array();
152
+	$params = array_merge($params, $optParams);
153
+	return $this->call('list', array($params), "Google_Service_Urlshortener_UrlHistory");
154 154
   }
155 155
 }
156 156
 
@@ -176,51 +176,51 @@  discard block
 block discarded – undo
176 176
 
177 177
   public function setBrowsers($browsers)
178 178
   {
179
-    $this->browsers = $browsers;
179
+	$this->browsers = $browsers;
180 180
   }
181 181
   public function getBrowsers()
182 182
   {
183
-    return $this->browsers;
183
+	return $this->browsers;
184 184
   }
185 185
   public function setCountries($countries)
186 186
   {
187
-    $this->countries = $countries;
187
+	$this->countries = $countries;
188 188
   }
189 189
   public function getCountries()
190 190
   {
191
-    return $this->countries;
191
+	return $this->countries;
192 192
   }
193 193
   public function setLongUrlClicks($longUrlClicks)
194 194
   {
195
-    $this->longUrlClicks = $longUrlClicks;
195
+	$this->longUrlClicks = $longUrlClicks;
196 196
   }
197 197
   public function getLongUrlClicks()
198 198
   {
199
-    return $this->longUrlClicks;
199
+	return $this->longUrlClicks;
200 200
   }
201 201
   public function setPlatforms($platforms)
202 202
   {
203
-    $this->platforms = $platforms;
203
+	$this->platforms = $platforms;
204 204
   }
205 205
   public function getPlatforms()
206 206
   {
207
-    return $this->platforms;
207
+	return $this->platforms;
208 208
   }
209 209
   public function setReferrers($referrers)
210 210
   {
211
-    $this->referrers = $referrers;
211
+	$this->referrers = $referrers;
212 212
   }
213 213
   public function getReferrers()
214 214
   {
215
-    return $this->referrers;
215
+	return $this->referrers;
216 216
   }
217 217
   public function setShortUrlClicks($shortUrlClicks)
218 218
   {
219
-    $this->shortUrlClicks = $shortUrlClicks;
219
+	$this->shortUrlClicks = $shortUrlClicks;
220 220
   }
221 221
   public function getShortUrlClicks()
222 222
   {
223
-    return $this->shortUrlClicks;
223
+	return $this->shortUrlClicks;
224 224
   }
225 225
 }
226 226
 
@@ -242,43 +242,43 @@  discard block
 block discarded – undo
242 242
 
243 243
   public function setAllTime(Google_Service_Urlshortener_AnalyticsSnapshot $allTime)
244 244
   {
245
-    $this->allTime = $allTime;
245
+	$this->allTime = $allTime;
246 246
   }
247 247
   public function getAllTime()
248 248
   {
249
-    return $this->allTime;
249
+	return $this->allTime;
250 250
   }
251 251
   public function setDay(Google_Service_Urlshortener_AnalyticsSnapshot $day)
252 252
   {
253
-    $this->day = $day;
253
+	$this->day = $day;
254 254
   }
255 255
   public function getDay()
256 256
   {
257
-    return $this->day;
257
+	return $this->day;
258 258
   }
259 259
   public function setMonth(Google_Service_Urlshortener_AnalyticsSnapshot $month)
260 260
   {
261
-    $this->month = $month;
261
+	$this->month = $month;
262 262
   }
263 263
   public function getMonth()
264 264
   {
265
-    return $this->month;
265
+	return $this->month;
266 266
   }
267 267
   public function setTwoHours(Google_Service_Urlshortener_AnalyticsSnapshot $twoHours)
268 268
   {
269
-    $this->twoHours = $twoHours;
269
+	$this->twoHours = $twoHours;
270 270
   }
271 271
   public function getTwoHours()
272 272
   {
273
-    return $this->twoHours;
273
+	return $this->twoHours;
274 274
   }
275 275
   public function setWeek(Google_Service_Urlshortener_AnalyticsSnapshot $week)
276 276
   {
277
-    $this->week = $week;
277
+	$this->week = $week;
278 278
   }
279 279
   public function getWeek()
280 280
   {
281
-    return $this->week;
281
+	return $this->week;
282 282
   }
283 283
 }
284 284
 
@@ -292,19 +292,19 @@  discard block
 block discarded – undo
292 292
 
293 293
   public function setCount($count)
294 294
   {
295
-    $this->count = $count;
295
+	$this->count = $count;
296 296
   }
297 297
   public function getCount()
298 298
   {
299
-    return $this->count;
299
+	return $this->count;
300 300
   }
301 301
   public function setId($id)
302 302
   {
303
-    $this->id = $id;
303
+	$this->id = $id;
304 304
   }
305 305
   public function getId()
306 306
   {
307
-    return $this->id;
307
+	return $this->id;
308 308
   }
309 309
 }
310 310
 
@@ -323,51 +323,51 @@  discard block
 block discarded – undo
323 323
 
324 324
   public function setAnalytics(Google_Service_Urlshortener_AnalyticsSummary $analytics)
325 325
   {
326
-    $this->analytics = $analytics;
326
+	$this->analytics = $analytics;
327 327
   }
328 328
   public function getAnalytics()
329 329
   {
330
-    return $this->analytics;
330
+	return $this->analytics;
331 331
   }
332 332
   public function setCreated($created)
333 333
   {
334
-    $this->created = $created;
334
+	$this->created = $created;
335 335
   }
336 336
   public function getCreated()
337 337
   {
338
-    return $this->created;
338
+	return $this->created;
339 339
   }
340 340
   public function setId($id)
341 341
   {
342
-    $this->id = $id;
342
+	$this->id = $id;
343 343
   }
344 344
   public function getId()
345 345
   {
346
-    return $this->id;
346
+	return $this->id;
347 347
   }
348 348
   public function setKind($kind)
349 349
   {
350
-    $this->kind = $kind;
350
+	$this->kind = $kind;
351 351
   }
352 352
   public function getKind()
353 353
   {
354
-    return $this->kind;
354
+	return $this->kind;
355 355
   }
356 356
   public function setLongUrl($longUrl)
357 357
   {
358
-    $this->longUrl = $longUrl;
358
+	$this->longUrl = $longUrl;
359 359
   }
360 360
   public function getLongUrl()
361 361
   {
362
-    return $this->longUrl;
362
+	return $this->longUrl;
363 363
   }
364 364
   public function setStatus($status)
365 365
   {
366
-    $this->status = $status;
366
+	$this->status = $status;
367 367
   }
368 368
   public function getStatus()
369 369
   {
370
-    return $this->status;
370
+	return $this->status;
371 371
   }
372 372
 }
373 373
 
@@ -386,42 +386,42 @@  discard block
 block discarded – undo
386 386
 
387 387
   public function setItems($items)
388 388
   {
389
-    $this->items = $items;
389
+	$this->items = $items;
390 390
   }
391 391
   public function getItems()
392 392
   {
393
-    return $this->items;
393
+	return $this->items;
394 394
   }
395 395
   public function setItemsPerPage($itemsPerPage)
396 396
   {
397
-    $this->itemsPerPage = $itemsPerPage;
397
+	$this->itemsPerPage = $itemsPerPage;
398 398
   }
399 399
   public function getItemsPerPage()
400 400
   {
401
-    return $this->itemsPerPage;
401
+	return $this->itemsPerPage;
402 402
   }
403 403
   public function setKind($kind)
404 404
   {
405
-    $this->kind = $kind;
405
+	$this->kind = $kind;
406 406
   }
407 407
   public function getKind()
408 408
   {
409
-    return $this->kind;
409
+	return $this->kind;
410 410
   }
411 411
   public function setNextPageToken($nextPageToken)
412 412
   {
413
-    $this->nextPageToken = $nextPageToken;
413
+	$this->nextPageToken = $nextPageToken;
414 414
   }
415 415
   public function getNextPageToken()
416 416
   {
417
-    return $this->nextPageToken;
417
+	return $this->nextPageToken;
418 418
   }
419 419
   public function setTotalItems($totalItems)
420 420
   {
421
-    $this->totalItems = $totalItems;
421
+	$this->totalItems = $totalItems;
422 422
   }
423 423
   public function getTotalItems()
424 424
   {
425
-    return $this->totalItems;
425
+	return $this->totalItems;
426 426
   }
427 427
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,11 +70,11 @@
 block discarded – undo
70 70
                   'type' => 'string',
71 71
                 ),
72 72
               ),
73
-            ),'insert' => array(
73
+            ), 'insert' => array(
74 74
               'path' => 'url',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(),
77
-            ),'list' => array(
77
+            ), 'list' => array(
78 78
               'path' => 'url/history',
79 79
               'httpMethod' => 'GET',
80 80
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Webmasters.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -331,7 +331,7 @@
 block discarded – undo
331 331
    *
332 332
    * @param string $siteUrl The site's URL, including protocol. For example:
333 333
    * http://www.example.com/
334
-   * @param Google_SearchAnalyticsQueryRequest $postBody
334
+   * @param Google_Service_Webmasters_SearchAnalyticsQueryRequest $postBody
335 335
    * @param array $optParams Optional parameters.
336 336
    * @return Google_Service_Webmasters_SearchAnalyticsQueryResponse
337 337
    */
Please login to merge, or discard this patch.
Indentation   +392 added lines, -392 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and modify Webmaster Tools data for your verified sites. */
34 34
   const WEBMASTERS =
35
-      "https://www.googleapis.com/auth/webmasters";
35
+	  "https://www.googleapis.com/auth/webmasters";
36 36
   /** View Webmaster Tools data for your verified sites. */
37 37
   const WEBMASTERS_READONLY =
38
-      "https://www.googleapis.com/auth/webmasters.readonly";
38
+	  "https://www.googleapis.com/auth/webmasters.readonly";
39 39
 
40 40
   public $searchanalytics;
41 41
   public $sitemaps;
@@ -51,257 +51,257 @@  discard block
 block discarded – undo
51 51
    */
52 52
   public function __construct(Google_Client $client)
53 53
   {
54
-    parent::__construct($client);
55
-    $this->rootUrl = 'https://www.googleapis.com/';
56
-    $this->servicePath = 'webmasters/v3/';
57
-    $this->version = 'v3';
58
-    $this->serviceName = 'webmasters';
59
-
60
-    $this->searchanalytics = new Google_Service_Webmasters_Searchanalytics_Resource(
61
-        $this,
62
-        $this->serviceName,
63
-        'searchanalytics',
64
-        array(
65
-          'methods' => array(
66
-            'query' => array(
67
-              'path' => 'sites/{siteUrl}/searchAnalytics/query',
68
-              'httpMethod' => 'POST',
69
-              'parameters' => array(
70
-                'siteUrl' => array(
71
-                  'location' => 'path',
72
-                  'type' => 'string',
73
-                  'required' => true,
74
-                ),
75
-              ),
76
-            ),
77
-          )
78
-        )
79
-    );
80
-    $this->sitemaps = new Google_Service_Webmasters_Sitemaps_Resource(
81
-        $this,
82
-        $this->serviceName,
83
-        'sitemaps',
84
-        array(
85
-          'methods' => array(
86
-            'delete' => array(
87
-              'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
88
-              'httpMethod' => 'DELETE',
89
-              'parameters' => array(
90
-                'siteUrl' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-                'feedpath' => array(
96
-                  'location' => 'path',
97
-                  'type' => 'string',
98
-                  'required' => true,
99
-                ),
100
-              ),
101
-            ),'get' => array(
102
-              'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
103
-              'httpMethod' => 'GET',
104
-              'parameters' => array(
105
-                'siteUrl' => array(
106
-                  'location' => 'path',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'feedpath' => array(
111
-                  'location' => 'path',
112
-                  'type' => 'string',
113
-                  'required' => true,
114
-                ),
115
-              ),
116
-            ),'list' => array(
117
-              'path' => 'sites/{siteUrl}/sitemaps',
118
-              'httpMethod' => 'GET',
119
-              'parameters' => array(
120
-                'siteUrl' => array(
121
-                  'location' => 'path',
122
-                  'type' => 'string',
123
-                  'required' => true,
124
-                ),
125
-                'sitemapIndex' => array(
126
-                  'location' => 'query',
127
-                  'type' => 'string',
128
-                ),
129
-              ),
130
-            ),'submit' => array(
131
-              'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
132
-              'httpMethod' => 'PUT',
133
-              'parameters' => array(
134
-                'siteUrl' => array(
135
-                  'location' => 'path',
136
-                  'type' => 'string',
137
-                  'required' => true,
138
-                ),
139
-                'feedpath' => array(
140
-                  'location' => 'path',
141
-                  'type' => 'string',
142
-                  'required' => true,
143
-                ),
144
-              ),
145
-            ),
146
-          )
147
-        )
148
-    );
149
-    $this->sites = new Google_Service_Webmasters_Sites_Resource(
150
-        $this,
151
-        $this->serviceName,
152
-        'sites',
153
-        array(
154
-          'methods' => array(
155
-            'add' => array(
156
-              'path' => 'sites/{siteUrl}',
157
-              'httpMethod' => 'PUT',
158
-              'parameters' => array(
159
-                'siteUrl' => array(
160
-                  'location' => 'path',
161
-                  'type' => 'string',
162
-                  'required' => true,
163
-                ),
164
-              ),
165
-            ),'delete' => array(
166
-              'path' => 'sites/{siteUrl}',
167
-              'httpMethod' => 'DELETE',
168
-              'parameters' => array(
169
-                'siteUrl' => array(
170
-                  'location' => 'path',
171
-                  'type' => 'string',
172
-                  'required' => true,
173
-                ),
174
-              ),
175
-            ),'get' => array(
176
-              'path' => 'sites/{siteUrl}',
177
-              'httpMethod' => 'GET',
178
-              'parameters' => array(
179
-                'siteUrl' => array(
180
-                  'location' => 'path',
181
-                  'type' => 'string',
182
-                  'required' => true,
183
-                ),
184
-              ),
185
-            ),'list' => array(
186
-              'path' => 'sites',
187
-              'httpMethod' => 'GET',
188
-              'parameters' => array(),
189
-            ),
190
-          )
191
-        )
192
-    );
193
-    $this->urlcrawlerrorscounts = new Google_Service_Webmasters_Urlcrawlerrorscounts_Resource(
194
-        $this,
195
-        $this->serviceName,
196
-        'urlcrawlerrorscounts',
197
-        array(
198
-          'methods' => array(
199
-            'query' => array(
200
-              'path' => 'sites/{siteUrl}/urlCrawlErrorsCounts/query',
201
-              'httpMethod' => 'GET',
202
-              'parameters' => array(
203
-                'siteUrl' => array(
204
-                  'location' => 'path',
205
-                  'type' => 'string',
206
-                  'required' => true,
207
-                ),
208
-                'category' => array(
209
-                  'location' => 'query',
210
-                  'type' => 'string',
211
-                ),
212
-                'platform' => array(
213
-                  'location' => 'query',
214
-                  'type' => 'string',
215
-                ),
216
-                'latestCountsOnly' => array(
217
-                  'location' => 'query',
218
-                  'type' => 'boolean',
219
-                ),
220
-              ),
221
-            ),
222
-          )
223
-        )
224
-    );
225
-    $this->urlcrawlerrorssamples = new Google_Service_Webmasters_Urlcrawlerrorssamples_Resource(
226
-        $this,
227
-        $this->serviceName,
228
-        'urlcrawlerrorssamples',
229
-        array(
230
-          'methods' => array(
231
-            'get' => array(
232
-              'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}',
233
-              'httpMethod' => 'GET',
234
-              'parameters' => array(
235
-                'siteUrl' => array(
236
-                  'location' => 'path',
237
-                  'type' => 'string',
238
-                  'required' => true,
239
-                ),
240
-                'url' => array(
241
-                  'location' => 'path',
242
-                  'type' => 'string',
243
-                  'required' => true,
244
-                ),
245
-                'category' => array(
246
-                  'location' => 'query',
247
-                  'type' => 'string',
248
-                  'required' => true,
249
-                ),
250
-                'platform' => array(
251
-                  'location' => 'query',
252
-                  'type' => 'string',
253
-                  'required' => true,
254
-                ),
255
-              ),
256
-            ),'list' => array(
257
-              'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples',
258
-              'httpMethod' => 'GET',
259
-              'parameters' => array(
260
-                'siteUrl' => array(
261
-                  'location' => 'path',
262
-                  'type' => 'string',
263
-                  'required' => true,
264
-                ),
265
-                'category' => array(
266
-                  'location' => 'query',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-                'platform' => array(
271
-                  'location' => 'query',
272
-                  'type' => 'string',
273
-                  'required' => true,
274
-                ),
275
-              ),
276
-            ),'markAsFixed' => array(
277
-              'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}',
278
-              'httpMethod' => 'DELETE',
279
-              'parameters' => array(
280
-                'siteUrl' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'string',
283
-                  'required' => true,
284
-                ),
285
-                'url' => array(
286
-                  'location' => 'path',
287
-                  'type' => 'string',
288
-                  'required' => true,
289
-                ),
290
-                'category' => array(
291
-                  'location' => 'query',
292
-                  'type' => 'string',
293
-                  'required' => true,
294
-                ),
295
-                'platform' => array(
296
-                  'location' => 'query',
297
-                  'type' => 'string',
298
-                  'required' => true,
299
-                ),
300
-              ),
301
-            ),
302
-          )
303
-        )
304
-    );
54
+	parent::__construct($client);
55
+	$this->rootUrl = 'https://www.googleapis.com/';
56
+	$this->servicePath = 'webmasters/v3/';
57
+	$this->version = 'v3';
58
+	$this->serviceName = 'webmasters';
59
+
60
+	$this->searchanalytics = new Google_Service_Webmasters_Searchanalytics_Resource(
61
+		$this,
62
+		$this->serviceName,
63
+		'searchanalytics',
64
+		array(
65
+		  'methods' => array(
66
+			'query' => array(
67
+			  'path' => 'sites/{siteUrl}/searchAnalytics/query',
68
+			  'httpMethod' => 'POST',
69
+			  'parameters' => array(
70
+				'siteUrl' => array(
71
+				  'location' => 'path',
72
+				  'type' => 'string',
73
+				  'required' => true,
74
+				),
75
+			  ),
76
+			),
77
+		  )
78
+		)
79
+	);
80
+	$this->sitemaps = new Google_Service_Webmasters_Sitemaps_Resource(
81
+		$this,
82
+		$this->serviceName,
83
+		'sitemaps',
84
+		array(
85
+		  'methods' => array(
86
+			'delete' => array(
87
+			  'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
88
+			  'httpMethod' => 'DELETE',
89
+			  'parameters' => array(
90
+				'siteUrl' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+				'feedpath' => array(
96
+				  'location' => 'path',
97
+				  'type' => 'string',
98
+				  'required' => true,
99
+				),
100
+			  ),
101
+			),'get' => array(
102
+			  'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
103
+			  'httpMethod' => 'GET',
104
+			  'parameters' => array(
105
+				'siteUrl' => array(
106
+				  'location' => 'path',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'feedpath' => array(
111
+				  'location' => 'path',
112
+				  'type' => 'string',
113
+				  'required' => true,
114
+				),
115
+			  ),
116
+			),'list' => array(
117
+			  'path' => 'sites/{siteUrl}/sitemaps',
118
+			  'httpMethod' => 'GET',
119
+			  'parameters' => array(
120
+				'siteUrl' => array(
121
+				  'location' => 'path',
122
+				  'type' => 'string',
123
+				  'required' => true,
124
+				),
125
+				'sitemapIndex' => array(
126
+				  'location' => 'query',
127
+				  'type' => 'string',
128
+				),
129
+			  ),
130
+			),'submit' => array(
131
+			  'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
132
+			  'httpMethod' => 'PUT',
133
+			  'parameters' => array(
134
+				'siteUrl' => array(
135
+				  'location' => 'path',
136
+				  'type' => 'string',
137
+				  'required' => true,
138
+				),
139
+				'feedpath' => array(
140
+				  'location' => 'path',
141
+				  'type' => 'string',
142
+				  'required' => true,
143
+				),
144
+			  ),
145
+			),
146
+		  )
147
+		)
148
+	);
149
+	$this->sites = new Google_Service_Webmasters_Sites_Resource(
150
+		$this,
151
+		$this->serviceName,
152
+		'sites',
153
+		array(
154
+		  'methods' => array(
155
+			'add' => array(
156
+			  'path' => 'sites/{siteUrl}',
157
+			  'httpMethod' => 'PUT',
158
+			  'parameters' => array(
159
+				'siteUrl' => array(
160
+				  'location' => 'path',
161
+				  'type' => 'string',
162
+				  'required' => true,
163
+				),
164
+			  ),
165
+			),'delete' => array(
166
+			  'path' => 'sites/{siteUrl}',
167
+			  'httpMethod' => 'DELETE',
168
+			  'parameters' => array(
169
+				'siteUrl' => array(
170
+				  'location' => 'path',
171
+				  'type' => 'string',
172
+				  'required' => true,
173
+				),
174
+			  ),
175
+			),'get' => array(
176
+			  'path' => 'sites/{siteUrl}',
177
+			  'httpMethod' => 'GET',
178
+			  'parameters' => array(
179
+				'siteUrl' => array(
180
+				  'location' => 'path',
181
+				  'type' => 'string',
182
+				  'required' => true,
183
+				),
184
+			  ),
185
+			),'list' => array(
186
+			  'path' => 'sites',
187
+			  'httpMethod' => 'GET',
188
+			  'parameters' => array(),
189
+			),
190
+		  )
191
+		)
192
+	);
193
+	$this->urlcrawlerrorscounts = new Google_Service_Webmasters_Urlcrawlerrorscounts_Resource(
194
+		$this,
195
+		$this->serviceName,
196
+		'urlcrawlerrorscounts',
197
+		array(
198
+		  'methods' => array(
199
+			'query' => array(
200
+			  'path' => 'sites/{siteUrl}/urlCrawlErrorsCounts/query',
201
+			  'httpMethod' => 'GET',
202
+			  'parameters' => array(
203
+				'siteUrl' => array(
204
+				  'location' => 'path',
205
+				  'type' => 'string',
206
+				  'required' => true,
207
+				),
208
+				'category' => array(
209
+				  'location' => 'query',
210
+				  'type' => 'string',
211
+				),
212
+				'platform' => array(
213
+				  'location' => 'query',
214
+				  'type' => 'string',
215
+				),
216
+				'latestCountsOnly' => array(
217
+				  'location' => 'query',
218
+				  'type' => 'boolean',
219
+				),
220
+			  ),
221
+			),
222
+		  )
223
+		)
224
+	);
225
+	$this->urlcrawlerrorssamples = new Google_Service_Webmasters_Urlcrawlerrorssamples_Resource(
226
+		$this,
227
+		$this->serviceName,
228
+		'urlcrawlerrorssamples',
229
+		array(
230
+		  'methods' => array(
231
+			'get' => array(
232
+			  'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}',
233
+			  'httpMethod' => 'GET',
234
+			  'parameters' => array(
235
+				'siteUrl' => array(
236
+				  'location' => 'path',
237
+				  'type' => 'string',
238
+				  'required' => true,
239
+				),
240
+				'url' => array(
241
+				  'location' => 'path',
242
+				  'type' => 'string',
243
+				  'required' => true,
244
+				),
245
+				'category' => array(
246
+				  'location' => 'query',
247
+				  'type' => 'string',
248
+				  'required' => true,
249
+				),
250
+				'platform' => array(
251
+				  'location' => 'query',
252
+				  'type' => 'string',
253
+				  'required' => true,
254
+				),
255
+			  ),
256
+			),'list' => array(
257
+			  'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples',
258
+			  'httpMethod' => 'GET',
259
+			  'parameters' => array(
260
+				'siteUrl' => array(
261
+				  'location' => 'path',
262
+				  'type' => 'string',
263
+				  'required' => true,
264
+				),
265
+				'category' => array(
266
+				  'location' => 'query',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+				'platform' => array(
271
+				  'location' => 'query',
272
+				  'type' => 'string',
273
+				  'required' => true,
274
+				),
275
+			  ),
276
+			),'markAsFixed' => array(
277
+			  'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}',
278
+			  'httpMethod' => 'DELETE',
279
+			  'parameters' => array(
280
+				'siteUrl' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'string',
283
+				  'required' => true,
284
+				),
285
+				'url' => array(
286
+				  'location' => 'path',
287
+				  'type' => 'string',
288
+				  'required' => true,
289
+				),
290
+				'category' => array(
291
+				  'location' => 'query',
292
+				  'type' => 'string',
293
+				  'required' => true,
294
+				),
295
+				'platform' => array(
296
+				  'location' => 'query',
297
+				  'type' => 'string',
298
+				  'required' => true,
299
+				),
300
+			  ),
301
+			),
302
+		  )
303
+		)
304
+	);
305 305
   }
306 306
 }
307 307
 
@@ -337,9 +337,9 @@  discard block
 block discarded – undo
337 337
    */
338 338
   public function query($siteUrl, Google_Service_Webmasters_SearchAnalyticsQueryRequest $postBody, $optParams = array())
339 339
   {
340
-    $params = array('siteUrl' => $siteUrl, 'postBody' => $postBody);
341
-    $params = array_merge($params, $optParams);
342
-    return $this->call('query', array($params), "Google_Service_Webmasters_SearchAnalyticsQueryResponse");
340
+	$params = array('siteUrl' => $siteUrl, 'postBody' => $postBody);
341
+	$params = array_merge($params, $optParams);
342
+	return $this->call('query', array($params), "Google_Service_Webmasters_SearchAnalyticsQueryResponse");
343 343
   }
344 344
 }
345 345
 
@@ -365,9 +365,9 @@  discard block
 block discarded – undo
365 365
    */
366 366
   public function delete($siteUrl, $feedpath, $optParams = array())
367 367
   {
368
-    $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
369
-    $params = array_merge($params, $optParams);
370
-    return $this->call('delete', array($params));
368
+	$params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
369
+	$params = array_merge($params, $optParams);
370
+	return $this->call('delete', array($params));
371 371
   }
372 372
 
373 373
   /**
@@ -382,9 +382,9 @@  discard block
 block discarded – undo
382 382
    */
383 383
   public function get($siteUrl, $feedpath, $optParams = array())
384 384
   {
385
-    $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
386
-    $params = array_merge($params, $optParams);
387
-    return $this->call('get', array($params), "Google_Service_Webmasters_WmxSitemap");
385
+	$params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
386
+	$params = array_merge($params, $optParams);
387
+	return $this->call('get', array($params), "Google_Service_Webmasters_WmxSitemap");
388 388
   }
389 389
 
390 390
   /**
@@ -402,9 +402,9 @@  discard block
 block discarded – undo
402 402
    */
403 403
   public function listSitemaps($siteUrl, $optParams = array())
404 404
   {
405
-    $params = array('siteUrl' => $siteUrl);
406
-    $params = array_merge($params, $optParams);
407
-    return $this->call('list', array($params), "Google_Service_Webmasters_SitemapsListResponse");
405
+	$params = array('siteUrl' => $siteUrl);
406
+	$params = array_merge($params, $optParams);
407
+	return $this->call('list', array($params), "Google_Service_Webmasters_SitemapsListResponse");
408 408
   }
409 409
 
410 410
   /**
@@ -418,9 +418,9 @@  discard block
 block discarded – undo
418 418
    */
419 419
   public function submit($siteUrl, $feedpath, $optParams = array())
420 420
   {
421
-    $params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
422
-    $params = array_merge($params, $optParams);
423
-    return $this->call('submit', array($params));
421
+	$params = array('siteUrl' => $siteUrl, 'feedpath' => $feedpath);
422
+	$params = array_merge($params, $optParams);
423
+	return $this->call('submit', array($params));
424 424
   }
425 425
 }
426 426
 
@@ -443,9 +443,9 @@  discard block
 block discarded – undo
443 443
    */
444 444
   public function add($siteUrl, $optParams = array())
445 445
   {
446
-    $params = array('siteUrl' => $siteUrl);
447
-    $params = array_merge($params, $optParams);
448
-    return $this->call('add', array($params));
446
+	$params = array('siteUrl' => $siteUrl);
447
+	$params = array_merge($params, $optParams);
448
+	return $this->call('add', array($params));
449 449
   }
450 450
 
451 451
   /**
@@ -458,9 +458,9 @@  discard block
 block discarded – undo
458 458
    */
459 459
   public function delete($siteUrl, $optParams = array())
460 460
   {
461
-    $params = array('siteUrl' => $siteUrl);
462
-    $params = array_merge($params, $optParams);
463
-    return $this->call('delete', array($params));
461
+	$params = array('siteUrl' => $siteUrl);
462
+	$params = array_merge($params, $optParams);
463
+	return $this->call('delete', array($params));
464 464
   }
465 465
 
466 466
   /**
@@ -473,9 +473,9 @@  discard block
 block discarded – undo
473 473
    */
474 474
   public function get($siteUrl, $optParams = array())
475 475
   {
476
-    $params = array('siteUrl' => $siteUrl);
477
-    $params = array_merge($params, $optParams);
478
-    return $this->call('get', array($params), "Google_Service_Webmasters_WmxSite");
476
+	$params = array('siteUrl' => $siteUrl);
477
+	$params = array_merge($params, $optParams);
478
+	return $this->call('get', array($params), "Google_Service_Webmasters_WmxSite");
479 479
   }
480 480
 
481 481
   /**
@@ -486,9 +486,9 @@  discard block
 block discarded – undo
486 486
    */
487 487
   public function listSites($optParams = array())
488 488
   {
489
-    $params = array();
490
-    $params = array_merge($params, $optParams);
491
-    return $this->call('list', array($params), "Google_Service_Webmasters_SitesListResponse");
489
+	$params = array();
490
+	$params = array_merge($params, $optParams);
491
+	return $this->call('list', array($params), "Google_Service_Webmasters_SitesListResponse");
492 492
   }
493 493
 }
494 494
 
@@ -522,9 +522,9 @@  discard block
 block discarded – undo
522 522
    */
523 523
   public function query($siteUrl, $optParams = array())
524 524
   {
525
-    $params = array('siteUrl' => $siteUrl);
526
-    $params = array_merge($params, $optParams);
527
-    return $this->call('query', array($params), "Google_Service_Webmasters_UrlCrawlErrorsCountsQueryResponse");
525
+	$params = array('siteUrl' => $siteUrl);
526
+	$params = array_merge($params, $optParams);
527
+	return $this->call('query', array($params), "Google_Service_Webmasters_UrlCrawlErrorsCountsQueryResponse");
528 528
   }
529 529
 }
530 530
 
@@ -558,9 +558,9 @@  discard block
 block discarded – undo
558 558
    */
559 559
   public function get($siteUrl, $url, $category, $platform, $optParams = array())
560 560
   {
561
-    $params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
562
-    $params = array_merge($params, $optParams);
563
-    return $this->call('get', array($params), "Google_Service_Webmasters_UrlCrawlErrorsSample");
561
+	$params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
562
+	$params = array_merge($params, $optParams);
563
+	return $this->call('get', array($params), "Google_Service_Webmasters_UrlCrawlErrorsSample");
564 564
   }
565 565
 
566 566
   /**
@@ -578,9 +578,9 @@  discard block
 block discarded – undo
578 578
    */
579 579
   public function listUrlcrawlerrorssamples($siteUrl, $category, $platform, $optParams = array())
580 580
   {
581
-    $params = array('siteUrl' => $siteUrl, 'category' => $category, 'platform' => $platform);
582
-    $params = array_merge($params, $optParams);
583
-    return $this->call('list', array($params), "Google_Service_Webmasters_UrlCrawlErrorsSamplesListResponse");
581
+	$params = array('siteUrl' => $siteUrl, 'category' => $category, 'platform' => $platform);
582
+	$params = array_merge($params, $optParams);
583
+	return $this->call('list', array($params), "Google_Service_Webmasters_UrlCrawlErrorsSamplesListResponse");
584 584
   }
585 585
 
586 586
   /**
@@ -601,9 +601,9 @@  discard block
 block discarded – undo
601 601
    */
602 602
   public function markAsFixed($siteUrl, $url, $category, $platform, $optParams = array())
603 603
   {
604
-    $params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
605
-    $params = array_merge($params, $optParams);
606
-    return $this->call('markAsFixed', array($params));
604
+	$params = array('siteUrl' => $siteUrl, 'url' => $url, 'category' => $category, 'platform' => $platform);
605
+	$params = array_merge($params, $optParams);
606
+	return $this->call('markAsFixed', array($params));
607 607
   }
608 608
 }
609 609
 
@@ -624,43 +624,43 @@  discard block
 block discarded – undo
624 624
 
625 625
   public function setClicks($clicks)
626 626
   {
627
-    $this->clicks = $clicks;
627
+	$this->clicks = $clicks;
628 628
   }
629 629
   public function getClicks()
630 630
   {
631
-    return $this->clicks;
631
+	return $this->clicks;
632 632
   }
633 633
   public function setCtr($ctr)
634 634
   {
635
-    $this->ctr = $ctr;
635
+	$this->ctr = $ctr;
636 636
   }
637 637
   public function getCtr()
638 638
   {
639
-    return $this->ctr;
639
+	return $this->ctr;
640 640
   }
641 641
   public function setImpressions($impressions)
642 642
   {
643
-    $this->impressions = $impressions;
643
+	$this->impressions = $impressions;
644 644
   }
645 645
   public function getImpressions()
646 646
   {
647
-    return $this->impressions;
647
+	return $this->impressions;
648 648
   }
649 649
   public function setKeys($keys)
650 650
   {
651
-    $this->keys = $keys;
651
+	$this->keys = $keys;
652 652
   }
653 653
   public function getKeys()
654 654
   {
655
-    return $this->keys;
655
+	return $this->keys;
656 656
   }
657 657
   public function setPosition($position)
658 658
   {
659
-    $this->position = $position;
659
+	$this->position = $position;
660 660
   }
661 661
   public function getPosition()
662 662
   {
663
-    return $this->position;
663
+	return $this->position;
664 664
   }
665 665
 }
666 666
 
@@ -675,27 +675,27 @@  discard block
 block discarded – undo
675 675
 
676 676
   public function setDimension($dimension)
677 677
   {
678
-    $this->dimension = $dimension;
678
+	$this->dimension = $dimension;
679 679
   }
680 680
   public function getDimension()
681 681
   {
682
-    return $this->dimension;
682
+	return $this->dimension;
683 683
   }
684 684
   public function setExpression($expression)
685 685
   {
686
-    $this->expression = $expression;
686
+	$this->expression = $expression;
687 687
   }
688 688
   public function getExpression()
689 689
   {
690
-    return $this->expression;
690
+	return $this->expression;
691 691
   }
692 692
   public function setOperator($operator)
693 693
   {
694
-    $this->operator = $operator;
694
+	$this->operator = $operator;
695 695
   }
696 696
   public function getOperator()
697 697
   {
698
-    return $this->operator;
698
+	return $this->operator;
699 699
   }
700 700
 }
701 701
 
@@ -711,19 +711,19 @@  discard block
 block discarded – undo
711 711
 
712 712
   public function setFilters($filters)
713 713
   {
714
-    $this->filters = $filters;
714
+	$this->filters = $filters;
715 715
   }
716 716
   public function getFilters()
717 717
   {
718
-    return $this->filters;
718
+	return $this->filters;
719 719
   }
720 720
   public function setGroupType($groupType)
721 721
   {
722
-    $this->groupType = $groupType;
722
+	$this->groupType = $groupType;
723 723
   }
724 724
   public function getGroupType()
725 725
   {
726
-    return $this->groupType;
726
+	return $this->groupType;
727 727
   }
728 728
 }
729 729
 
@@ -744,59 +744,59 @@  discard block
 block discarded – undo
744 744
 
745 745
   public function setAggregationType($aggregationType)
746 746
   {
747
-    $this->aggregationType = $aggregationType;
747
+	$this->aggregationType = $aggregationType;
748 748
   }
749 749
   public function getAggregationType()
750 750
   {
751
-    return $this->aggregationType;
751
+	return $this->aggregationType;
752 752
   }
753 753
   public function setDimensionFilterGroups($dimensionFilterGroups)
754 754
   {
755
-    $this->dimensionFilterGroups = $dimensionFilterGroups;
755
+	$this->dimensionFilterGroups = $dimensionFilterGroups;
756 756
   }
757 757
   public function getDimensionFilterGroups()
758 758
   {
759
-    return $this->dimensionFilterGroups;
759
+	return $this->dimensionFilterGroups;
760 760
   }
761 761
   public function setDimensions($dimensions)
762 762
   {
763
-    $this->dimensions = $dimensions;
763
+	$this->dimensions = $dimensions;
764 764
   }
765 765
   public function getDimensions()
766 766
   {
767
-    return $this->dimensions;
767
+	return $this->dimensions;
768 768
   }
769 769
   public function setEndDate($endDate)
770 770
   {
771
-    $this->endDate = $endDate;
771
+	$this->endDate = $endDate;
772 772
   }
773 773
   public function getEndDate()
774 774
   {
775
-    return $this->endDate;
775
+	return $this->endDate;
776 776
   }
777 777
   public function setRowLimit($rowLimit)
778 778
   {
779
-    $this->rowLimit = $rowLimit;
779
+	$this->rowLimit = $rowLimit;
780 780
   }
781 781
   public function getRowLimit()
782 782
   {
783
-    return $this->rowLimit;
783
+	return $this->rowLimit;
784 784
   }
785 785
   public function setSearchType($searchType)
786 786
   {
787
-    $this->searchType = $searchType;
787
+	$this->searchType = $searchType;
788 788
   }
789 789
   public function getSearchType()
790 790
   {
791
-    return $this->searchType;
791
+	return $this->searchType;
792 792
   }
793 793
   public function setStartDate($startDate)
794 794
   {
795
-    $this->startDate = $startDate;
795
+	$this->startDate = $startDate;
796 796
   }
797 797
   public function getStartDate()
798 798
   {
799
-    return $this->startDate;
799
+	return $this->startDate;
800 800
   }
801 801
 }
802 802
 
@@ -812,19 +812,19 @@  discard block
 block discarded – undo
812 812
 
813 813
   public function setResponseAggregationType($responseAggregationType)
814 814
   {
815
-    $this->responseAggregationType = $responseAggregationType;
815
+	$this->responseAggregationType = $responseAggregationType;
816 816
   }
817 817
   public function getResponseAggregationType()
818 818
   {
819
-    return $this->responseAggregationType;
819
+	return $this->responseAggregationType;
820 820
   }
821 821
   public function setRows($rows)
822 822
   {
823
-    $this->rows = $rows;
823
+	$this->rows = $rows;
824 824
   }
825 825
   public function getRows()
826 826
   {
827
-    return $this->rows;
827
+	return $this->rows;
828 828
   }
829 829
 }
830 830
 
@@ -839,11 +839,11 @@  discard block
 block discarded – undo
839 839
 
840 840
   public function setSitemap($sitemap)
841 841
   {
842
-    $this->sitemap = $sitemap;
842
+	$this->sitemap = $sitemap;
843 843
   }
844 844
   public function getSitemap()
845 845
   {
846
-    return $this->sitemap;
846
+	return $this->sitemap;
847 847
   }
848 848
 }
849 849
 
@@ -858,11 +858,11 @@  discard block
 block discarded – undo
858 858
 
859 859
   public function setSiteEntry($siteEntry)
860 860
   {
861
-    $this->siteEntry = $siteEntry;
861
+	$this->siteEntry = $siteEntry;
862 862
   }
863 863
   public function getSiteEntry()
864 864
   {
865
-    return $this->siteEntry;
865
+	return $this->siteEntry;
866 866
   }
867 867
 }
868 868
 
@@ -876,19 +876,19 @@  discard block
 block discarded – undo
876 876
 
877 877
   public function setCount($count)
878 878
   {
879
-    $this->count = $count;
879
+	$this->count = $count;
880 880
   }
881 881
   public function getCount()
882 882
   {
883
-    return $this->count;
883
+	return $this->count;
884 884
   }
885 885
   public function setTimestamp($timestamp)
886 886
   {
887
-    $this->timestamp = $timestamp;
887
+	$this->timestamp = $timestamp;
888 888
   }
889 889
   public function getTimestamp()
890 890
   {
891
-    return $this->timestamp;
891
+	return $this->timestamp;
892 892
   }
893 893
 }
894 894
 
@@ -905,27 +905,27 @@  discard block
 block discarded – undo
905 905
 
906 906
   public function setCategory($category)
907 907
   {
908
-    $this->category = $category;
908
+	$this->category = $category;
909 909
   }
910 910
   public function getCategory()
911 911
   {
912
-    return $this->category;
912
+	return $this->category;
913 913
   }
914 914
   public function setEntries($entries)
915 915
   {
916
-    $this->entries = $entries;
916
+	$this->entries = $entries;
917 917
   }
918 918
   public function getEntries()
919 919
   {
920
-    return $this->entries;
920
+	return $this->entries;
921 921
   }
922 922
   public function setPlatform($platform)
923 923
   {
924
-    $this->platform = $platform;
924
+	$this->platform = $platform;
925 925
   }
926 926
   public function getPlatform()
927 927
   {
928
-    return $this->platform;
928
+	return $this->platform;
929 929
   }
930 930
 }
931 931
 
@@ -940,19 +940,19 @@  discard block
 block discarded – undo
940 940
 
941 941
   public function setCountPerTypes($countPerTypes)
942 942
   {
943
-    $this->countPerTypes = $countPerTypes;
943
+	$this->countPerTypes = $countPerTypes;
944 944
   }
945 945
   public function getCountPerTypes()
946 946
   {
947
-    return $this->countPerTypes;
947
+	return $this->countPerTypes;
948 948
   }
949 949
 }
950 950
 
951 951
 class Google_Service_Webmasters_UrlCrawlErrorsSample extends Google_Model
952 952
 {
953 953
   protected $internal_gapi_mappings = array(
954
-        "firstDetected" => "first_detected",
955
-        "lastCrawled" => "last_crawled",
954
+		"firstDetected" => "first_detected",
955
+		"lastCrawled" => "last_crawled",
956 956
   );
957 957
   public $firstDetected;
958 958
   public $lastCrawled;
@@ -964,43 +964,43 @@  discard block
 block discarded – undo
964 964
 
965 965
   public function setFirstDetected($firstDetected)
966 966
   {
967
-    $this->firstDetected = $firstDetected;
967
+	$this->firstDetected = $firstDetected;
968 968
   }
969 969
   public function getFirstDetected()
970 970
   {
971
-    return $this->firstDetected;
971
+	return $this->firstDetected;
972 972
   }
973 973
   public function setLastCrawled($lastCrawled)
974 974
   {
975
-    $this->lastCrawled = $lastCrawled;
975
+	$this->lastCrawled = $lastCrawled;
976 976
   }
977 977
   public function getLastCrawled()
978 978
   {
979
-    return $this->lastCrawled;
979
+	return $this->lastCrawled;
980 980
   }
981 981
   public function setPageUrl($pageUrl)
982 982
   {
983
-    $this->pageUrl = $pageUrl;
983
+	$this->pageUrl = $pageUrl;
984 984
   }
985 985
   public function getPageUrl()
986 986
   {
987
-    return $this->pageUrl;
987
+	return $this->pageUrl;
988 988
   }
989 989
   public function setResponseCode($responseCode)
990 990
   {
991
-    $this->responseCode = $responseCode;
991
+	$this->responseCode = $responseCode;
992 992
   }
993 993
   public function getResponseCode()
994 994
   {
995
-    return $this->responseCode;
995
+	return $this->responseCode;
996 996
   }
997 997
   public function setUrlDetails(Google_Service_Webmasters_UrlSampleDetails $urlDetails)
998 998
   {
999
-    $this->urlDetails = $urlDetails;
999
+	$this->urlDetails = $urlDetails;
1000 1000
   }
1001 1001
   public function getUrlDetails()
1002 1002
   {
1003
-    return $this->urlDetails;
1003
+	return $this->urlDetails;
1004 1004
   }
1005 1005
 }
1006 1006
 
@@ -1015,11 +1015,11 @@  discard block
 block discarded – undo
1015 1015
 
1016 1016
   public function setUrlCrawlErrorSample($urlCrawlErrorSample)
1017 1017
   {
1018
-    $this->urlCrawlErrorSample = $urlCrawlErrorSample;
1018
+	$this->urlCrawlErrorSample = $urlCrawlErrorSample;
1019 1019
   }
1020 1020
   public function getUrlCrawlErrorSample()
1021 1021
   {
1022
-    return $this->urlCrawlErrorSample;
1022
+	return $this->urlCrawlErrorSample;
1023 1023
   }
1024 1024
 }
1025 1025
 
@@ -1034,19 +1034,19 @@  discard block
 block discarded – undo
1034 1034
 
1035 1035
   public function setContainingSitemaps($containingSitemaps)
1036 1036
   {
1037
-    $this->containingSitemaps = $containingSitemaps;
1037
+	$this->containingSitemaps = $containingSitemaps;
1038 1038
   }
1039 1039
   public function getContainingSitemaps()
1040 1040
   {
1041
-    return $this->containingSitemaps;
1041
+	return $this->containingSitemaps;
1042 1042
   }
1043 1043
   public function setLinkedFromUrls($linkedFromUrls)
1044 1044
   {
1045
-    $this->linkedFromUrls = $linkedFromUrls;
1045
+	$this->linkedFromUrls = $linkedFromUrls;
1046 1046
   }
1047 1047
   public function getLinkedFromUrls()
1048 1048
   {
1049
-    return $this->linkedFromUrls;
1049
+	return $this->linkedFromUrls;
1050 1050
   }
1051 1051
 }
1052 1052
 
@@ -1060,19 +1060,19 @@  discard block
 block discarded – undo
1060 1060
 
1061 1061
   public function setPermissionLevel($permissionLevel)
1062 1062
   {
1063
-    $this->permissionLevel = $permissionLevel;
1063
+	$this->permissionLevel = $permissionLevel;
1064 1064
   }
1065 1065
   public function getPermissionLevel()
1066 1066
   {
1067
-    return $this->permissionLevel;
1067
+	return $this->permissionLevel;
1068 1068
   }
1069 1069
   public function setSiteUrl($siteUrl)
1070 1070
   {
1071
-    $this->siteUrl = $siteUrl;
1071
+	$this->siteUrl = $siteUrl;
1072 1072
   }
1073 1073
   public function getSiteUrl()
1074 1074
   {
1075
-    return $this->siteUrl;
1075
+	return $this->siteUrl;
1076 1076
   }
1077 1077
 }
1078 1078
 
@@ -1095,75 +1095,75 @@  discard block
 block discarded – undo
1095 1095
 
1096 1096
   public function setContents($contents)
1097 1097
   {
1098
-    $this->contents = $contents;
1098
+	$this->contents = $contents;
1099 1099
   }
1100 1100
   public function getContents()
1101 1101
   {
1102
-    return $this->contents;
1102
+	return $this->contents;
1103 1103
   }
1104 1104
   public function setErrors($errors)
1105 1105
   {
1106
-    $this->errors = $errors;
1106
+	$this->errors = $errors;
1107 1107
   }
1108 1108
   public function getErrors()
1109 1109
   {
1110
-    return $this->errors;
1110
+	return $this->errors;
1111 1111
   }
1112 1112
   public function setIsPending($isPending)
1113 1113
   {
1114
-    $this->isPending = $isPending;
1114
+	$this->isPending = $isPending;
1115 1115
   }
1116 1116
   public function getIsPending()
1117 1117
   {
1118
-    return $this->isPending;
1118
+	return $this->isPending;
1119 1119
   }
1120 1120
   public function setIsSitemapsIndex($isSitemapsIndex)
1121 1121
   {
1122
-    $this->isSitemapsIndex = $isSitemapsIndex;
1122
+	$this->isSitemapsIndex = $isSitemapsIndex;
1123 1123
   }
1124 1124
   public function getIsSitemapsIndex()
1125 1125
   {
1126
-    return $this->isSitemapsIndex;
1126
+	return $this->isSitemapsIndex;
1127 1127
   }
1128 1128
   public function setLastDownloaded($lastDownloaded)
1129 1129
   {
1130
-    $this->lastDownloaded = $lastDownloaded;
1130
+	$this->lastDownloaded = $lastDownloaded;
1131 1131
   }
1132 1132
   public function getLastDownloaded()
1133 1133
   {
1134
-    return $this->lastDownloaded;
1134
+	return $this->lastDownloaded;
1135 1135
   }
1136 1136
   public function setLastSubmitted($lastSubmitted)
1137 1137
   {
1138
-    $this->lastSubmitted = $lastSubmitted;
1138
+	$this->lastSubmitted = $lastSubmitted;
1139 1139
   }
1140 1140
   public function getLastSubmitted()
1141 1141
   {
1142
-    return $this->lastSubmitted;
1142
+	return $this->lastSubmitted;
1143 1143
   }
1144 1144
   public function setPath($path)
1145 1145
   {
1146
-    $this->path = $path;
1146
+	$this->path = $path;
1147 1147
   }
1148 1148
   public function getPath()
1149 1149
   {
1150
-    return $this->path;
1150
+	return $this->path;
1151 1151
   }
1152 1152
   public function setType($type)
1153 1153
   {
1154
-    $this->type = $type;
1154
+	$this->type = $type;
1155 1155
   }
1156 1156
   public function getType()
1157 1157
   {
1158
-    return $this->type;
1158
+	return $this->type;
1159 1159
   }
1160 1160
   public function setWarnings($warnings)
1161 1161
   {
1162
-    $this->warnings = $warnings;
1162
+	$this->warnings = $warnings;
1163 1163
   }
1164 1164
   public function getWarnings()
1165 1165
   {
1166
-    return $this->warnings;
1166
+	return $this->warnings;
1167 1167
   }
1168 1168
 }
1169 1169
 
@@ -1178,26 +1178,26 @@  discard block
 block discarded – undo
1178 1178
 
1179 1179
   public function setIndexed($indexed)
1180 1180
   {
1181
-    $this->indexed = $indexed;
1181
+	$this->indexed = $indexed;
1182 1182
   }
1183 1183
   public function getIndexed()
1184 1184
   {
1185
-    return $this->indexed;
1185
+	return $this->indexed;
1186 1186
   }
1187 1187
   public function setSubmitted($submitted)
1188 1188
   {
1189
-    $this->submitted = $submitted;
1189
+	$this->submitted = $submitted;
1190 1190
   }
1191 1191
   public function getSubmitted()
1192 1192
   {
1193
-    return $this->submitted;
1193
+	return $this->submitted;
1194 1194
   }
1195 1195
   public function setType($type)
1196 1196
   {
1197
-    $this->type = $type;
1197
+	$this->type = $type;
1198 1198
   }
1199 1199
   public function getType()
1200 1200
   {
1201
-    return $this->type;
1201
+	return $this->type;
1202 1202
   }
1203 1203
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                   'required' => true,
99 99
                 ),
100 100
               ),
101
-            ),'get' => array(
101
+            ), 'get' => array(
102 102
               'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
103 103
               'httpMethod' => 'GET',
104 104
               'parameters' => array(
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                   'required' => true,
114 114
                 ),
115 115
               ),
116
-            ),'list' => array(
116
+            ), 'list' => array(
117 117
               'path' => 'sites/{siteUrl}/sitemaps',
118 118
               'httpMethod' => 'GET',
119 119
               'parameters' => array(
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                   'type' => 'string',
128 128
                 ),
129 129
               ),
130
-            ),'submit' => array(
130
+            ), 'submit' => array(
131 131
               'path' => 'sites/{siteUrl}/sitemaps/{feedpath}',
132 132
               'httpMethod' => 'PUT',
133 133
               'parameters' => array(
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                   'required' => true,
163 163
                 ),
164 164
               ),
165
-            ),'delete' => array(
165
+            ), 'delete' => array(
166 166
               'path' => 'sites/{siteUrl}',
167 167
               'httpMethod' => 'DELETE',
168 168
               'parameters' => array(
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                   'required' => true,
173 173
                 ),
174 174
               ),
175
-            ),'get' => array(
175
+            ), 'get' => array(
176 176
               'path' => 'sites/{siteUrl}',
177 177
               'httpMethod' => 'GET',
178 178
               'parameters' => array(
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
                   'required' => true,
183 183
                 ),
184 184
               ),
185
-            ),'list' => array(
185
+            ), 'list' => array(
186 186
               'path' => 'sites',
187 187
               'httpMethod' => 'GET',
188 188
               'parameters' => array(),
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
                   'required' => true,
254 254
                 ),
255 255
               ),
256
-            ),'list' => array(
256
+            ), 'list' => array(
257 257
               'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples',
258 258
               'httpMethod' => 'GET',
259 259
               'parameters' => array(
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
                   'required' => true,
274 274
                 ),
275 275
               ),
276
-            ),'markAsFixed' => array(
276
+            ), 'markAsFixed' => array(
277 277
               'path' => 'sites/{siteUrl}/urlCrawlErrorsSamples/{url}',
278 278
               'httpMethod' => 'DELETE',
279 279
               'parameters' => array(
Please login to merge, or discard this patch.