PluginProbe
Authorizer / 2.9.0
Authorizer v2.9.0
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / vendor / google-api-php-client / src / Google / Service / Appengine.php

Appengine.php in Authorizer 2.9.0, at vendor/google-api-php-client/src/Google/Service/Appengine.php

2,144 lines 53.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 * use this file except in compliance with the License. You may obtain a copy of
5 * the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 * License for the specific language governing permissions and limitations under
13 * the License.
14 */
15
16 /**
17 * Service definition for Appengine (v1beta5).
18 *
19 * <p>
20 * The Google App Engine Admin API enables developers to provision and manage
21 * their App Engine applications.</p>
22 *
23 * <p>
24 * For more information about this service, see the API
25 * <a href="https://cloud.google.com/appengine/docs/admin-api/" target="_blank">Documentation</a>
26 * </p>
27 *
28 * @author Google, Inc.
29 */
30 class Google_Service_Appengine extends Google_Service
31 {
32 /** View and manage your data across Google Cloud Platform services. */
33 const CLOUD_PLATFORM =
34 "https://www.googleapis.com/auth/cloud-platform";
35
36 public $apps;
37 public $apps_operations;
38 public $apps_services;
39 public $apps_services_versions;
40
41
42 /**
43 * Constructs the internal representation of the Appengine service.
44 *
45 * @param Google_Client $client
46 */
47 public function __construct(Google_Client $client)
48 {
49 parent::__construct($client);
50 $this->rootUrl = 'https://appengine.googleapis.com/';
51 $this->servicePath = '';
52 $this->version = 'v1beta5';
53 $this->serviceName = 'appengine';
54
55 $this->apps = new Google_Service_Appengine_Apps_Resource(
56 $this,
57 $this->serviceName,
58 'apps',
59 array(
60 'methods' => array(
61 'get' => array(
62 'path' => 'v1beta5/apps/{appsId}',
63 'httpMethod' => 'GET',
64 'parameters' => array(
65 'appsId' => array(
66 'location' => 'path',
67 'type' => 'string',
68 'required' => true,
69 ),
70 'ensureResourcesExist' => array(
71 'location' => 'query',
72 'type' => 'boolean',
73 ),
74 ),
75 ),
76 )
77 )
78 );
79 $this->apps_operations = new Google_Service_Appengine_AppsOperations_Resource(
80 $this,
81 $this->serviceName,
82 'operations',
83 array(
84 'methods' => array(
85 'get' => array(
86 'path' => 'v1beta5/apps/{appsId}/operations/{operationsId}',
87 'httpMethod' => 'GET',
88 'parameters' => array(
89 'appsId' => array(
90 'location' => 'path',
91 'type' => 'string',
92 'required' => true,
93 ),
94 'operationsId' => array(
95 'location' => 'path',
96 'type' => 'string',
97 'required' => true,
98 ),
99 ),
100 ),'list' => array(
101 'path' => 'v1beta5/apps/{appsId}/operations',
102 'httpMethod' => 'GET',
103 'parameters' => array(
104 'appsId' => array(
105 'location' => 'path',
106 'type' => 'string',
107 'required' => true,
108 ),
109 'filter' => array(
110 'location' => 'query',
111 'type' => 'string',
112 ),
113 'pageSize' => array(
114 'location' => 'query',
115 'type' => 'integer',
116 ),
117 'pageToken' => array(
118 'location' => 'query',
119 'type' => 'string',
120 ),
121 ),
122 ),
123 )
124 )
125 );
126 $this->apps_services = new Google_Service_Appengine_AppsServices_Resource(
127 $this,
128 $this->serviceName,
129 'services',
130 array(
131 'methods' => array(
132 'delete' => array(
133 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}',
134 'httpMethod' => 'DELETE',
135 'parameters' => array(
136 'appsId' => array(
137 'location' => 'path',
138 'type' => 'string',
139 'required' => true,
140 ),
141 'servicesId' => array(
142 'location' => 'path',
143 'type' => 'string',
144 'required' => true,
145 ),
146 ),
147 ),'get' => array(
148 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}',
149 'httpMethod' => 'GET',
150 'parameters' => array(
151 'appsId' => array(
152 'location' => 'path',
153 'type' => 'string',
154 'required' => true,
155 ),
156 'servicesId' => array(
157 'location' => 'path',
158 'type' => 'string',
159 'required' => true,
160 ),
161 ),
162 ),'list' => array(
163 'path' => 'v1beta5/apps/{appsId}/services',
164 'httpMethod' => 'GET',
165 'parameters' => array(
166 'appsId' => array(
167 'location' => 'path',
168 'type' => 'string',
169 'required' => true,
170 ),
171 'pageSize' => array(
172 'location' => 'query',
173 'type' => 'integer',
174 ),
175 'pageToken' => array(
176 'location' => 'query',
177 'type' => 'string',
178 ),
179 ),
180 ),'patch' => array(
181 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}',
182 'httpMethod' => 'PATCH',
183 'parameters' => array(
184 'appsId' => array(
185 'location' => 'path',
186 'type' => 'string',
187 'required' => true,
188 ),
189 'servicesId' => array(
190 'location' => 'path',
191 'type' => 'string',
192 'required' => true,
193 ),
194 'mask' => array(
195 'location' => 'query',
196 'type' => 'string',
197 ),
198 'migrateTraffic' => array(
199 'location' => 'query',
200 'type' => 'boolean',
201 ),
202 ),
203 ),
204 )
205 )
206 );
207 $this->apps_services_versions = new Google_Service_Appengine_AppsServicesVersions_Resource(
208 $this,
209 $this->serviceName,
210 'versions',
211 array(
212 'methods' => array(
213 'create' => array(
214 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}/versions',
215 'httpMethod' => 'POST',
216 'parameters' => array(
217 'appsId' => array(
218 'location' => 'path',
219 'type' => 'string',
220 'required' => true,
221 ),
222 'servicesId' => array(
223 'location' => 'path',
224 'type' => 'string',
225 'required' => true,
226 ),
227 ),
228 ),'delete' => array(
229 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}',
230 'httpMethod' => 'DELETE',
231 'parameters' => array(
232 'appsId' => array(
233 'location' => 'path',
234 'type' => 'string',
235 'required' => true,
236 ),
237 'servicesId' => array(
238 'location' => 'path',
239 'type' => 'string',
240 'required' => true,
241 ),
242 'versionsId' => array(
243 'location' => 'path',
244 'type' => 'string',
245 'required' => true,
246 ),
247 ),
248 ),'get' => array(
249 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}/versions/{versionsId}',
250 'httpMethod' => 'GET',
251 'parameters' => array(
252 'appsId' => array(
253 'location' => 'path',
254 'type' => 'string',
255 'required' => true,
256 ),
257 'servicesId' => array(
258 'location' => 'path',
259 'type' => 'string',
260 'required' => true,
261 ),
262 'versionsId' => array(
263 'location' => 'path',
264 'type' => 'string',
265 'required' => true,
266 ),
267 'view' => array(
268 'location' => 'query',
269 'type' => 'string',
270 ),
271 ),
272 ),'list' => array(
273 'path' => 'v1beta5/apps/{appsId}/services/{servicesId}/versions',
274 'httpMethod' => 'GET',
275 'parameters' => array(
276 'appsId' => array(
277 'location' => 'path',
278 'type' => 'string',
279 'required' => true,
280 ),
281 'servicesId' => array(
282 'location' => 'path',
283 'type' => 'string',
284 'required' => true,
285 ),
286 'view' => array(
287 'location' => 'query',
288 'type' => 'string',
289 ),
290 'pageSize' => array(
291 'location' => 'query',
292 'type' => 'integer',
293 ),
294 'pageToken' => array(
295 'location' => 'query',
296 'type' => 'string',
297 ),
298 ),
299 ),
300 )
301 )
302 );
303 }
304 }
305
306
307 /**
308 * The "apps" collection of methods.
309 * Typical usage is:
310 * <code>
311 * $appengineService = new Google_Service_Appengine(...);
312 * $apps = $appengineService->apps;
313 * </code>
314 */
315 class Google_Service_Appengine_Apps_Resource extends Google_Service_Resource
316 {
317
318 /**
319 * Gets information about an application. (apps.get)
320 *
321 * @param string $appsId Part of `name`. Name of the application to get. For
322 * example: "apps/myapp".
323 * @param array $optParams Optional parameters.
324 *
325 * @opt_param bool ensureResourcesExist Certain resources associated with an
326 * application are created on-demand. Controls whether these resources should be
327 * created when performing the `GET` operation. If specified and any resources
328 * could not be created, the request will fail with an error code. Additionally,
329 * this parameter can cause the request to take longer to complete. Note: This
330 * parameter will be deprecated in a future version of the API.
331 * @return Google_Service_Appengine_Application
332 */
333 public function get($appsId, $optParams = array())
334 {
335 $params = array('appsId' => $appsId);
336 $params = array_merge($params, $optParams);
337 return $this->call('get', array($params), "Google_Service_Appengine_Application");
338 }
339 }
340
341 /**
342 * The "operations" collection of methods.
343 * Typical usage is:
344 * <code>
345 * $appengineService = new Google_Service_Appengine(...);
346 * $operations = $appengineService->operations;
347 * </code>
348 */
349 class Google_Service_Appengine_AppsOperations_Resource extends Google_Service_Resource
350 {
351
352 /**
353 * Gets the latest state of a long-running operation. Clients can use this
354 * method to poll the operation result at intervals as recommended by the API
355 * service. (operations.get)
356 *
357 * @param string $appsId Part of `name`. The name of the operation resource.
358 * @param string $operationsId Part of `name`. See documentation of `appsId`.
359 * @param array $optParams Optional parameters.
360 * @return Google_Service_Appengine_Operation
361 */
362 public function get($appsId, $operationsId, $optParams = array())
363 {
364 $params = array('appsId' => $appsId, 'operationsId' => $operationsId);
365 $params = array_merge($params, $optParams);
366 return $this->call('get', array($params), "Google_Service_Appengine_Operation");
367 }
368
369 /**
370 * Lists operations that match the specified filter in the request. If the
371 * server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the
372 * `name` binding below allows API services to override the binding to use
373 * different resource name schemes, such as `users/operations`.
374 * (operations.listAppsOperations)
375 *
376 * @param string $appsId Part of `name`. The name of the operation collection.
377 * @param array $optParams Optional parameters.
378 *
379 * @opt_param string filter The standard list filter.
380 * @opt_param int pageSize The standard list page size.
381 * @opt_param string pageToken The standard list page token.
382 * @return Google_Service_Appengine_ListOperationsResponse
383 */
384 public function listAppsOperations($appsId, $optParams = array())
385 {
386 $params = array('appsId' => $appsId);
387 $params = array_merge($params, $optParams);
388 return $this->call('list', array($params), "Google_Service_Appengine_ListOperationsResponse");
389 }
390 }
391 /**
392 * The "services" collection of methods.
393 * Typical usage is:
394 * <code>
395 * $appengineService = new Google_Service_Appengine(...);
396 * $services = $appengineService->services;
397 * </code>
398 */
399 class Google_Service_Appengine_AppsServices_Resource extends Google_Service_Resource
400 {
401
402 /**
403 * Deletes a service and all enclosed versions. (services.delete)
404 *
405 * @param string $appsId Part of `name`. Name of the resource requested. For
406 * example: "apps/myapp/services/default".
407 * @param string $servicesId Part of `name`. See documentation of `appsId`.
408 * @param array $optParams Optional parameters.
409 * @return Google_Service_Appengine_Operation
410 */
411 public function delete($appsId, $servicesId, $optParams = array())
412 {
413 $params = array('appsId' => $appsId, 'servicesId' => $servicesId);
414 $params = array_merge($params, $optParams);
415 return $this->call('delete', array($params), "Google_Service_Appengine_Operation");
416 }
417
418 /**
419 * Gets the current configuration of the service. (services.get)
420 *
421 * @param string $appsId Part of `name`. Name of the resource requested. For
422 * example: "apps/myapp/services/default".
423 * @param string $servicesId Part of `name`. See documentation of `appsId`.
424 * @param array $optParams Optional parameters.
425 * @return Google_Service_Appengine_Service
426 */
427 public function get($appsId, $servicesId, $optParams = array())
428 {
429 $params = array('appsId' => $appsId, 'servicesId' => $servicesId);
430 $params = array_merge($params, $optParams);
431 return $this->call('get', array($params), "Google_Service_Appengine_Service");
432 }
433
434 /**
435 * Lists all the services in the application. (services.listAppsServices)
436 *
437 * @param string $appsId Part of `name`. Name of the resource requested. For
438 * example: "apps/myapp".
439 * @param array $optParams Optional parameters.
440 *
441 * @opt_param int pageSize Maximum results to return per page.
442 * @opt_param string pageToken Continuation token for fetching the next page of
443 * results.
444 * @return Google_Service_Appengine_ListServicesResponse
445 */
446 public function listAppsServices($appsId, $optParams = array())
447 {
448 $params = array('appsId' => $appsId);
449 $params = array_merge($params, $optParams);
450 return $this->call('list', array($params), "Google_Service_Appengine_ListServicesResponse");
451 }
452
453 /**
454 * Updates the configuration of the specified service. (services.patch)
455 *
456 * @param string $appsId Part of `name`. Name of the resource to update. For
457 * example: "apps/myapp/services/default".
458 * @param string $servicesId Part of `name`. See documentation of `appsId`.
459 * @param Google_Service $postBody
460 * @param array $optParams Optional parameters.
461 *
462 * @opt_param string mask Standard field mask for the set of fields to be
463 * updated.
464 * @opt_param bool migrateTraffic Whether to use Traffic Migration to shift
465 * traffic gradually. Traffic can only be migrated from a single version to
466 * another single version.
467 * @return Google_Service_Appengine_Operation
468 */
469 public function patch($appsId, $servicesId, Google_Service_Appengine_Service $postBody, $optParams = array())
470 {
471 $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'postBody' => $postBody);
472 $params = array_merge($params, $optParams);
473 return $this->call('patch', array($params), "Google_Service_Appengine_Operation");
474 }
475 }
476
477 /**
478 * The "versions" collection of methods.
479 * Typical usage is:
480 * <code>
481 * $appengineService = new Google_Service_Appengine(...);
482 * $versions = $appengineService->versions;
483 * </code>
484 */
485 class Google_Service_Appengine_AppsServicesVersions_Resource extends Google_Service_Resource
486 {
487
488 /**
489 * Deploys new code and resource files to a version. (versions.create)
490 *
491 * @param string $appsId Part of `name`. Name of the resource to update. For
492 * example: "apps/myapp/services/default".
493 * @param string $servicesId Part of `name`. See documentation of `appsId`.
494 * @param Google_Version $postBody
495 * @param array $optParams Optional parameters.
496 * @return Google_Service_Appengine_Operation
497 */
498 public function create($appsId, $servicesId, Google_Service_Appengine_Version $postBody, $optParams = array())
499 {
500 $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'postBody' => $postBody);
501 $params = array_merge($params, $optParams);
502 return $this->call('create', array($params), "Google_Service_Appengine_Operation");
503 }
504
505 /**
506 * Deletes an existing version. (versions.delete)
507 *
508 * @param string $appsId Part of `name`. Name of the resource requested. For
509 * example: "apps/myapp/services/default/versions/v1".
510 * @param string $servicesId Part of `name`. See documentation of `appsId`.
511 * @param string $versionsId Part of `name`. See documentation of `appsId`.
512 * @param array $optParams Optional parameters.
513 * @return Google_Service_Appengine_Operation
514 */
515 public function delete($appsId, $servicesId, $versionsId, $optParams = array())
516 {
517 $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId);
518 $params = array_merge($params, $optParams);
519 return $this->call('delete', array($params), "Google_Service_Appengine_Operation");
520 }
521
522 /**
523 * Gets application deployment information. (versions.get)
524 *
525 * @param string $appsId Part of `name`. Name of the resource requested. For
526 * example: "apps/myapp/services/default/versions/v1".
527 * @param string $servicesId Part of `name`. See documentation of `appsId`.
528 * @param string $versionsId Part of `name`. See documentation of `appsId`.
529 * @param array $optParams Optional parameters.
530 *
531 * @opt_param string view Controls the set of fields returned in the `Get`
532 * response.
533 * @return Google_Service_Appengine_Version
534 */
535 public function get($appsId, $servicesId, $versionsId, $optParams = array())
536 {
537 $params = array('appsId' => $appsId, 'servicesId' => $servicesId, 'versionsId' => $versionsId);
538 $params = array_merge($params, $optParams);
539 return $this->call('get', array($params), "Google_Service_Appengine_Version");
540 }
541
542 /**
543 * Lists the versions of a service. (versions.listAppsServicesVersions)
544 *
545 * @param string $appsId Part of `name`. Name of the resource requested. For
546 * example: "apps/myapp/services/default".
547 * @param string $servicesId Part of `name`. See documentation of `appsId`.
548 * @param array $optParams Optional parameters.
549 *
550 * @opt_param string view Controls the set of fields returned in the `List`
551 * response.
552 * @opt_param int pageSize Maximum results to return per page.
553 * @opt_param string pageToken Continuation token for fetching the next page of
554 * results.
555 * @return Google_Service_Appengine_ListVersionsResponse
556 */
557 public function listAppsServicesVersions($appsId, $servicesId, $optParams = array())
558 {
559 $params = array('appsId' => $appsId, 'servicesId' => $servicesId);
560 $params = array_merge($params, $optParams);
561 return $this->call('list', array($params), "Google_Service_Appengine_ListVersionsResponse");
562 }
563 }
564
565
566
567
568 class Google_Service_Appengine_ApiConfigHandler extends Google_Model
569 {
570 protected $internal_gapi_mappings = array(
571 );
572 public $authFailAction;
573 public $login;
574 public $script;
575 public $securityLevel;
576 public $url;
577
578
579 public function setAuthFailAction($authFailAction)
580 {
581 $this->authFailAction = $authFailAction;
582 }
583 public function getAuthFailAction()
584 {
585 return $this->authFailAction;
586 }
587 public function setLogin($login)
588 {
589 $this->login = $login;
590 }
591 public function getLogin()
592 {
593 return $this->login;
594 }
595 public function setScript($script)
596 {
597 $this->script = $script;
598 }
599 public function getScript()
600 {
601 return $this->script;
602 }
603 public function setSecurityLevel($securityLevel)
604 {
605 $this->securityLevel = $securityLevel;
606 }
607 public function getSecurityLevel()
608 {
609 return $this->securityLevel;
610 }
611 public function setUrl($url)
612 {
613 $this->url = $url;
614 }
615 public function getUrl()
616 {
617 return $this->url;
618 }
619 }
620
621 class Google_Service_Appengine_ApiEndpointHandler extends Google_Model
622 {
623 protected $internal_gapi_mappings = array(
624 );
625 public $scriptPath;
626
627
628 public function setScriptPath($scriptPath)
629 {
630 $this->scriptPath = $scriptPath;
631 }
632 public function getScriptPath()
633 {
634 return $this->scriptPath;
635 }
636 }
637
638 class Google_Service_Appengine_Application extends Google_Collection
639 {
640 protected $collection_key = 'dispatchRules';
641 protected $internal_gapi_mappings = array(
642 );
643 public $codeBucket;
644 public $defaultBucket;
645 protected $dispatchRulesType = 'Google_Service_Appengine_UrlDispatchRule';
646 protected $dispatchRulesDataType = 'array';
647 public $id;
648 public $location;
649 public $name;
650
651
652 public function setCodeBucket($codeBucket)
653 {
654 $this->codeBucket = $codeBucket;
655 }
656 public function getCodeBucket()
657 {
658 return $this->codeBucket;
659 }
660 public function setDefaultBucket($defaultBucket)
661 {
662 $this->defaultBucket = $defaultBucket;
663 }
664 public function getDefaultBucket()
665 {
666 return $this->defaultBucket;
667 }
668 public function setDispatchRules($dispatchRules)
669 {
670 $this->dispatchRules = $dispatchRules;
671 }
672 public function getDispatchRules()
673 {
674 return $this->dispatchRules;
675 }
676 public function setId($id)
677 {
678 $this->id = $id;
679 }
680 public function getId()
681 {
682 return $this->id;
683 }
684 public function setLocation($location)
685 {
686 $this->location = $location;
687 }
688 public function getLocation()
689 {
690 return $this->location;
691 }
692 public function setName($name)
693 {
694 $this->name = $name;
695 }
696 public function getName()
697 {
698 return $this->name;
699 }
700 }
701
702 class Google_Service_Appengine_AutomaticScaling extends Google_Model
703 {
704 protected $internal_gapi_mappings = array(
705 );
706 public $coolDownPeriod;
707 protected $cpuUtilizationType = 'Google_Service_Appengine_CpuUtilization';
708 protected $cpuUtilizationDataType = '';
709 protected $diskUtilizationType = 'Google_Service_Appengine_DiskUtilization';
710 protected $diskUtilizationDataType = '';
711 public $maxConcurrentRequests;
712 public $maxIdleInstances;
713 public $maxPendingLatency;
714 public $maxTotalInstances;
715 public $minIdleInstances;
716 public $minPendingLatency;
717 public $minTotalInstances;
718 protected $networkUtilizationType = 'Google_Service_Appengine_NetworkUtilization';
719 protected $networkUtilizationDataType = '';
720 protected $requestUtilizationType = 'Google_Service_Appengine_RequestUtilization';
721 protected $requestUtilizationDataType = '';
722
723
724 public function setCoolDownPeriod($coolDownPeriod)
725 {
726 $this->coolDownPeriod = $coolDownPeriod;
727 }
728 public function getCoolDownPeriod()
729 {
730 return $this->coolDownPeriod;
731 }
732 public function setCpuUtilization(Google_Service_Appengine_CpuUtilization $cpuUtilization)
733 {
734 $this->cpuUtilization = $cpuUtilization;
735 }
736 public function getCpuUtilization()
737 {
738 return $this->cpuUtilization;
739 }
740 public function setDiskUtilization(Google_Service_Appengine_DiskUtilization $diskUtilization)
741 {
742 $this->diskUtilization = $diskUtilization;
743 }
744 public function getDiskUtilization()
745 {
746 return $this->diskUtilization;
747 }
748 public function setMaxConcurrentRequests($maxConcurrentRequests)
749 {
750 $this->maxConcurrentRequests = $maxConcurrentRequests;
751 }
752 public function getMaxConcurrentRequests()
753 {
754 return $this->maxConcurrentRequests;
755 }
756 public function setMaxIdleInstances($maxIdleInstances)
757 {
758 $this->maxIdleInstances = $maxIdleInstances;
759 }
760 public function getMaxIdleInstances()
761 {
762 return $this->maxIdleInstances;
763 }
764 public function setMaxPendingLatency($maxPendingLatency)
765 {
766 $this->maxPendingLatency = $maxPendingLatency;
767 }
768 public function getMaxPendingLatency()
769 {
770 return $this->maxPendingLatency;
771 }
772 public function setMaxTotalInstances($maxTotalInstances)
773 {
774 $this->maxTotalInstances = $maxTotalInstances;
775 }
776 public function getMaxTotalInstances()
777 {
778 return $this->maxTotalInstances;
779 }
780 public function setMinIdleInstances($minIdleInstances)
781 {
782 $this->minIdleInstances = $minIdleInstances;
783 }
784 public function getMinIdleInstances()
785 {
786 return $this->minIdleInstances;
787 }
788 public function setMinPendingLatency($minPendingLatency)
789 {
790 $this->minPendingLatency = $minPendingLatency;
791 }
792 public function getMinPendingLatency()
793 {
794 return $this->minPendingLatency;
795 }
796 public function setMinTotalInstances($minTotalInstances)
797 {
798 $this->minTotalInstances = $minTotalInstances;
799 }
800 public function getMinTotalInstances()
801 {
802 return $this->minTotalInstances;
803 }
804 public function setNetworkUtilization(Google_Service_Appengine_NetworkUtilization $networkUtilization)
805 {
806 $this->networkUtilization = $networkUtilization;
807 }
808 public function getNetworkUtilization()
809 {
810 return $this->networkUtilization;
811 }
812 public function setRequestUtilization(Google_Service_Appengine_RequestUtilization $requestUtilization)
813 {
814 $this->requestUtilization = $requestUtilization;
815 }
816 public function getRequestUtilization()
817 {
818 return $this->requestUtilization;
819 }
820 }
821
822 class Google_Service_Appengine_BasicScaling extends Google_Model
823 {
824 protected $internal_gapi_mappings = array(
825 );
826 public $idleTimeout;
827 public $maxInstances;
828
829
830 public function setIdleTimeout($idleTimeout)
831 {
832 $this->idleTimeout = $idleTimeout;
833 }
834 public function getIdleTimeout()
835 {
836 return $this->idleTimeout;
837 }
838 public function setMaxInstances($maxInstances)
839 {
840 $this->maxInstances = $maxInstances;
841 }
842 public function getMaxInstances()
843 {
844 return $this->maxInstances;
845 }
846 }
847
848 class Google_Service_Appengine_ContainerInfo extends Google_Model
849 {
850 protected $internal_gapi_mappings = array(
851 );
852 public $image;
853
854
855 public function setImage($image)
856 {
857 $this->image = $image;
858 }
859 public function getImage()
860 {
861 return $this->image;
862 }
863 }
864
865 class Google_Service_Appengine_CpuUtilization extends Google_Model
866 {
867 protected $internal_gapi_mappings = array(
868 );
869 public $aggregationWindowLength;
870 public $targetUtilization;
871
872
873 public function setAggregationWindowLength($aggregationWindowLength)
874 {
875 $this->aggregationWindowLength = $aggregationWindowLength;
876 }
877 public function getAggregationWindowLength()
878 {
879 return $this->aggregationWindowLength;
880 }
881 public function setTargetUtilization($targetUtilization)
882 {
883 $this->targetUtilization = $targetUtilization;
884 }
885 public function getTargetUtilization()
886 {
887 return $this->targetUtilization;
888 }
889 }
890
891 class Google_Service_Appengine_Deployment extends Google_Collection
892 {
893 protected $collection_key = 'sourceReferences';
894 protected $internal_gapi_mappings = array(
895 );
896 protected $containerType = 'Google_Service_Appengine_ContainerInfo';
897 protected $containerDataType = '';
898 protected $filesType = 'Google_Service_Appengine_FileInfo';
899 protected $filesDataType = 'map';
900 protected $sourceReferencesType = 'Google_Service_Appengine_SourceReference';
901 protected $sourceReferencesDataType = 'array';
902
903
904 public function setContainer(Google_Service_Appengine_ContainerInfo $container)
905 {
906 $this->container = $container;
907 }
908 public function getContainer()
909 {
910 return $this->container;
911 }
912 public function setFiles($files)
913 {
914 $this->files = $files;
915 }
916 public function getFiles()
917 {
918 return $this->files;
919 }
920 public function setSourceReferences($sourceReferences)
921 {
922 $this->sourceReferences = $sourceReferences;
923 }
924 public function getSourceReferences()
925 {
926 return $this->sourceReferences;
927 }
928 }
929
930 class Google_Service_Appengine_DiskUtilization extends Google_Model
931 {
932 protected $internal_gapi_mappings = array(
933 );
934 public $targetReadBytesPerSec;
935 public $targetReadOpsPerSec;
936 public $targetWriteBytesPerSec;
937 public $targetWriteOpsPerSec;
938
939
940 public function setTargetReadBytesPerSec($targetReadBytesPerSec)
941 {
942 $this->targetReadBytesPerSec = $targetReadBytesPerSec;
943 }
944 public function getTargetReadBytesPerSec()
945 {
946 return $this->targetReadBytesPerSec;
947 }
948 public function setTargetReadOpsPerSec($targetReadOpsPerSec)
949 {
950 $this->targetReadOpsPerSec = $targetReadOpsPerSec;
951 }
952 public function getTargetReadOpsPerSec()
953 {
954 return $this->targetReadOpsPerSec;
955 }
956 public function setTargetWriteBytesPerSec($targetWriteBytesPerSec)
957 {
958 $this->targetWriteBytesPerSec = $targetWriteBytesPerSec;
959 }
960 public function getTargetWriteBytesPerSec()
961 {
962 return $this->targetWriteBytesPerSec;
963 }
964 public function setTargetWriteOpsPerSec($targetWriteOpsPerSec)
965 {
966 $this->targetWriteOpsPerSec = $targetWriteOpsPerSec;
967 }
968 public function getTargetWriteOpsPerSec()
969 {
970 return $this->targetWriteOpsPerSec;
971 }
972 }
973
974 class Google_Service_Appengine_ErrorHandler extends Google_Model
975 {
976 protected $internal_gapi_mappings = array(
977 );
978 public $errorCode;
979 public $mimeType;
980 public $staticFile;
981
982
983 public function setErrorCode($errorCode)
984 {
985 $this->errorCode = $errorCode;
986 }
987 public function getErrorCode()
988 {
989 return $this->errorCode;
990 }
991 public function setMimeType($mimeType)
992 {
993 $this->mimeType = $mimeType;
994 }
995 public function getMimeType()
996 {
997 return $this->mimeType;
998 }
999 public function setStaticFile($staticFile)
1000 {
1001 $this->staticFile = $staticFile;
1002 }
1003 public function getStaticFile()
1004 {
1005 return $this->staticFile;
1006 }
1007 }
1008
1009 class Google_Service_Appengine_FileInfo extends Google_Model
1010 {
1011 protected $internal_gapi_mappings = array(
1012 );
1013 public $mimeType;
1014 public $sha1Sum;
1015 public $sourceUrl;
1016
1017
1018 public function setMimeType($mimeType)
1019 {
1020 $this->mimeType = $mimeType;
1021 }
1022 public function getMimeType()
1023 {
1024 return $this->mimeType;
1025 }
1026 public function setSha1Sum($sha1Sum)
1027 {
1028 $this->sha1Sum = $sha1Sum;
1029 }
1030 public function getSha1Sum()
1031 {
1032 return $this->sha1Sum;
1033 }
1034 public function setSourceUrl($sourceUrl)
1035 {
1036 $this->sourceUrl = $sourceUrl;
1037 }
1038 public function getSourceUrl()
1039 {
1040 return $this->sourceUrl;
1041 }
1042 }
1043
1044 class Google_Service_Appengine_HealthCheck extends Google_Model
1045 {
1046 protected $internal_gapi_mappings = array(
1047 );
1048 public $checkInterval;
1049 public $disableHealthCheck;
1050 public $healthyThreshold;
1051 public $host;
1052 public $restartThreshold;
1053 public $timeout;
1054 public $unhealthyThreshold;
1055
1056
1057 public function setCheckInterval($checkInterval)
1058 {
1059 $this->checkInterval = $checkInterval;
1060 }
1061 public function getCheckInterval()
1062 {
1063 return $this->checkInterval;
1064 }
1065 public function setDisableHealthCheck($disableHealthCheck)
1066 {
1067 $this->disableHealthCheck = $disableHealthCheck;
1068 }
1069 public function getDisableHealthCheck()
1070 {
1071 return $this->disableHealthCheck;
1072 }
1073 public function setHealthyThreshold($healthyThreshold)
1074 {
1075 $this->healthyThreshold = $healthyThreshold;
1076 }
1077 public function getHealthyThreshold()
1078 {
1079 return $this->healthyThreshold;
1080 }
1081 public function setHost($host)
1082 {
1083 $this->host = $host;
1084 }
1085 public function getHost()
1086 {
1087 return $this->host;
1088 }
1089 public function setRestartThreshold($restartThreshold)
1090 {
1091 $this->restartThreshold = $restartThreshold;
1092 }
1093 public function getRestartThreshold()
1094 {
1095 return $this->restartThreshold;
1096 }
1097 public function setTimeout($timeout)
1098 {
1099 $this->timeout = $timeout;
1100 }
1101 public function getTimeout()
1102 {
1103 return $this->timeout;
1104 }
1105 public function setUnhealthyThreshold($unhealthyThreshold)
1106 {
1107 $this->unhealthyThreshold = $unhealthyThreshold;
1108 }
1109 public function getUnhealthyThreshold()
1110 {
1111 return $this->unhealthyThreshold;
1112 }
1113 }
1114
1115 class Google_Service_Appengine_Library extends Google_Model
1116 {
1117 protected $internal_gapi_mappings = array(
1118 );
1119 public $name;
1120 public $version;
1121
1122
1123 public function setName($name)
1124 {
1125 $this->name = $name;
1126 }
1127 public function getName()
1128 {
1129 return $this->name;
1130 }
1131 public function setVersion($version)
1132 {
1133 $this->version = $version;
1134 }
1135 public function getVersion()
1136 {
1137 return $this->version;
1138 }
1139 }
1140
1141 class Google_Service_Appengine_ListOperationsResponse extends Google_Collection
1142 {
1143 protected $collection_key = 'operations';
1144 protected $internal_gapi_mappings = array(
1145 );
1146 public $nextPageToken;
1147 protected $operationsType = 'Google_Service_Appengine_Operation';
1148 protected $operationsDataType = 'array';
1149
1150
1151 public function setNextPageToken($nextPageToken)
1152 {
1153 $this->nextPageToken = $nextPageToken;
1154 }
1155 public function getNextPageToken()
1156 {
1157 return $this->nextPageToken;
1158 }
1159 public function setOperations($operations)
1160 {
1161 $this->operations = $operations;
1162 }
1163 public function getOperations()
1164 {
1165 return $this->operations;
1166 }
1167 }
1168
1169 class Google_Service_Appengine_ListServicesResponse extends Google_Collection
1170 {
1171 protected $collection_key = 'services';
1172 protected $internal_gapi_mappings = array(
1173 );
1174 public $nextPageToken;
1175 protected $servicesType = 'Google_Service_Appengine_Service';
1176 protected $servicesDataType = 'array';
1177
1178
1179 public function setNextPageToken($nextPageToken)
1180 {
1181 $this->nextPageToken = $nextPageToken;
1182 }
1183 public function getNextPageToken()
1184 {
1185 return $this->nextPageToken;
1186 }
1187 public function setServices($services)
1188 {
1189 $this->services = $services;
1190 }
1191 public function getServices()
1192 {
1193 return $this->services;
1194 }
1195 }
1196
1197 class Google_Service_Appengine_ListVersionsResponse extends Google_Collection
1198 {
1199 protected $collection_key = 'versions';
1200 protected $internal_gapi_mappings = array(
1201 );
1202 public $nextPageToken;
1203 protected $versionsType = 'Google_Service_Appengine_Version';
1204 protected $versionsDataType = 'array';
1205
1206
1207 public function setNextPageToken($nextPageToken)
1208 {
1209 $this->nextPageToken = $nextPageToken;
1210 }
1211 public function getNextPageToken()
1212 {
1213 return $this->nextPageToken;
1214 }
1215 public function setVersions($versions)
1216 {
1217 $this->versions = $versions;
1218 }
1219 public function getVersions()
1220 {
1221 return $this->versions;
1222 }
1223 }
1224
1225 class Google_Service_Appengine_ManualScaling extends Google_Model
1226 {
1227 protected $internal_gapi_mappings = array(
1228 );
1229 public $instances;
1230
1231
1232 public function setInstances($instances)
1233 {
1234 $this->instances = $instances;
1235 }
1236 public function getInstances()
1237 {
1238 return $this->instances;
1239 }
1240 }
1241
1242 class Google_Service_Appengine_Network extends Google_Collection
1243 {
1244 protected $collection_key = 'forwardedPorts';
1245 protected $internal_gapi_mappings = array(
1246 );
1247 public $forwardedPorts;
1248 public $instanceTag;
1249 public $name;
1250
1251
1252 public function setForwardedPorts($forwardedPorts)
1253 {
1254 $this->forwardedPorts = $forwardedPorts;
1255 }
1256 public function getForwardedPorts()
1257 {
1258 return $this->forwardedPorts;
1259 }
1260 public function setInstanceTag($instanceTag)
1261 {
1262 $this->instanceTag = $instanceTag;
1263 }
1264 public function getInstanceTag()
1265 {
1266 return $this->instanceTag;
1267 }
1268 public function setName($name)
1269 {
1270 $this->name = $name;
1271 }
1272 public function getName()
1273 {
1274 return $this->name;
1275 }
1276 }
1277
1278 class Google_Service_Appengine_NetworkUtilization extends Google_Model
1279 {
1280 protected $internal_gapi_mappings = array(
1281 );
1282 public $targetReceivedBytesPerSec;
1283 public $targetReceivedPacketsPerSec;
1284 public $targetSentBytesPerSec;
1285 public $targetSentPacketsPerSec;
1286
1287
1288 public function setTargetReceivedBytesPerSec($targetReceivedBytesPerSec)
1289 {
1290 $this->targetReceivedBytesPerSec = $targetReceivedBytesPerSec;
1291 }
1292 public function getTargetReceivedBytesPerSec()
1293 {
1294 return $this->targetReceivedBytesPerSec;
1295 }
1296 public function setTargetReceivedPacketsPerSec($targetReceivedPacketsPerSec)
1297 {
1298 $this->targetReceivedPacketsPerSec = $targetReceivedPacketsPerSec;
1299 }
1300 public function getTargetReceivedPacketsPerSec()
1301 {
1302 return $this->targetReceivedPacketsPerSec;
1303 }
1304 public function setTargetSentBytesPerSec($targetSentBytesPerSec)
1305 {
1306 $this->targetSentBytesPerSec = $targetSentBytesPerSec;
1307 }
1308 public function getTargetSentBytesPerSec()
1309 {
1310 return $this->targetSentBytesPerSec;
1311 }
1312 public function setTargetSentPacketsPerSec($targetSentPacketsPerSec)
1313 {
1314 $this->targetSentPacketsPerSec = $targetSentPacketsPerSec;
1315 }
1316 public function getTargetSentPacketsPerSec()
1317 {
1318 return $this->targetSentPacketsPerSec;
1319 }
1320 }
1321
1322 class Google_Service_Appengine_Operation extends Google_Model
1323 {
1324 protected $internal_gapi_mappings = array(
1325 );
1326 public $done;
1327 protected $errorType = 'Google_Service_Appengine_Status';
1328 protected $errorDataType = '';
1329 public $metadata;
1330 public $name;
1331 public $response;
1332
1333
1334 public function setDone($done)
1335 {
1336 $this->done = $done;
1337 }
1338 public function getDone()
1339 {
1340 return $this->done;
1341 }
1342 public function setError(Google_Service_Appengine_Status $error)
1343 {
1344 $this->error = $error;
1345 }
1346 public function getError()
1347 {
1348 return $this->error;
1349 }
1350 public function setMetadata($metadata)
1351 {
1352 $this->metadata = $metadata;
1353 }
1354 public function getMetadata()
1355 {
1356 return $this->metadata;
1357 }
1358 public function setName($name)
1359 {
1360 $this->name = $name;
1361 }
1362 public function getName()
1363 {
1364 return $this->name;
1365 }
1366 public function setResponse($response)
1367 {
1368 $this->response = $response;
1369 }
1370 public function getResponse()
1371 {
1372 return $this->response;
1373 }
1374 }
1375
1376 class Google_Service_Appengine_OperationMetadata extends Google_Model
1377 {
1378 protected $internal_gapi_mappings = array(
1379 );
1380 public $endTime;
1381 public $insertTime;
1382 public $method;
1383 public $operationType;
1384 public $target;
1385 public $user;
1386
1387
1388 public function setEndTime($endTime)
1389 {
1390 $this->endTime = $endTime;
1391 }
1392 public function getEndTime()
1393 {
1394 return $this->endTime;
1395 }
1396 public function setInsertTime($insertTime)
1397 {
1398 $this->insertTime = $insertTime;
1399 }
1400 public function getInsertTime()
1401 {
1402 return $this->insertTime;
1403 }
1404 public function setMethod($method)
1405 {
1406 $this->method = $method;
1407 }
1408 public function getMethod()
1409 {
1410 return $this->method;
1411 }
1412 public function setOperationType($operationType)
1413 {
1414 $this->operationType = $operationType;
1415 }
1416 public function getOperationType()
1417 {
1418 return $this->operationType;
1419 }
1420 public function setTarget($target)
1421 {
1422 $this->target = $target;
1423 }
1424 public function getTarget()
1425 {
1426 return $this->target;
1427 }
1428 public function setUser($user)
1429 {
1430 $this->user = $user;
1431 }
1432 public function getUser()
1433 {
1434 return $this->user;
1435 }
1436 }
1437
1438 class Google_Service_Appengine_OperationMetadataV1Beta5 extends Google_Model
1439 {
1440 protected $internal_gapi_mappings = array(
1441 );
1442 public $endTime;
1443 public $insertTime;
1444 public $method;
1445 public $target;
1446 public $user;
1447
1448
1449 public function setEndTime($endTime)
1450 {
1451 $this->endTime = $endTime;
1452 }
1453 public function getEndTime()
1454 {
1455 return $this->endTime;
1456 }
1457 public function setInsertTime($insertTime)
1458 {
1459 $this->insertTime = $insertTime;
1460 }
1461 public function getInsertTime()
1462 {
1463 return $this->insertTime;
1464 }
1465 public function setMethod($method)
1466 {
1467 $this->method = $method;
1468 }
1469 public function getMethod()
1470 {
1471 return $this->method;
1472 }
1473 public function setTarget($target)
1474 {
1475 $this->target = $target;
1476 }
1477 public function getTarget()
1478 {
1479 return $this->target;
1480 }
1481 public function setUser($user)
1482 {
1483 $this->user = $user;
1484 }
1485 public function getUser()
1486 {
1487 return $this->user;
1488 }
1489 }
1490
1491 class Google_Service_Appengine_RequestUtilization extends Google_Model
1492 {
1493 protected $internal_gapi_mappings = array(
1494 );
1495 public $targetConcurrentRequests;
1496 public $targetRequestCountPerSec;
1497
1498
1499 public function setTargetConcurrentRequests($targetConcurrentRequests)
1500 {
1501 $this->targetConcurrentRequests = $targetConcurrentRequests;
1502 }
1503 public function getTargetConcurrentRequests()
1504 {
1505 return $this->targetConcurrentRequests;
1506 }
1507 public function setTargetRequestCountPerSec($targetRequestCountPerSec)
1508 {
1509 $this->targetRequestCountPerSec = $targetRequestCountPerSec;
1510 }
1511 public function getTargetRequestCountPerSec()
1512 {
1513 return $this->targetRequestCountPerSec;
1514 }
1515 }
1516
1517 class Google_Service_Appengine_Resources extends Google_Model
1518 {
1519 protected $internal_gapi_mappings = array(
1520 );
1521 public $cpu;
1522 public $diskGb;
1523 public $memoryGb;
1524
1525
1526 public function setCpu($cpu)
1527 {
1528 $this->cpu = $cpu;
1529 }
1530 public function getCpu()
1531 {
1532 return $this->cpu;
1533 }
1534 public function setDiskGb($diskGb)
1535 {
1536 $this->diskGb = $diskGb;
1537 }
1538 public function getDiskGb()
1539 {
1540 return $this->diskGb;
1541 }
1542 public function setMemoryGb($memoryGb)
1543 {
1544 $this->memoryGb = $memoryGb;
1545 }
1546 public function getMemoryGb()
1547 {
1548 return $this->memoryGb;
1549 }
1550 }
1551
1552 class Google_Service_Appengine_ScriptHandler extends Google_Model
1553 {
1554 protected $internal_gapi_mappings = array(
1555 );
1556 public $scriptPath;
1557
1558
1559 public function setScriptPath($scriptPath)
1560 {
1561 $this->scriptPath = $scriptPath;
1562 }
1563 public function getScriptPath()
1564 {
1565 return $this->scriptPath;
1566 }
1567 }
1568
1569 class Google_Service_Appengine_Service extends Google_Model
1570 {
1571 protected $internal_gapi_mappings = array(
1572 );
1573 public $id;
1574 public $name;
1575 protected $splitType = 'Google_Service_Appengine_TrafficSplit';
1576 protected $splitDataType = '';
1577
1578
1579 public function setId($id)
1580 {
1581 $this->id = $id;
1582 }
1583 public function getId()
1584 {
1585 return $this->id;
1586 }
1587 public function setName($name)
1588 {
1589 $this->name = $name;
1590 }
1591 public function getName()
1592 {
1593 return $this->name;
1594 }
1595 public function setSplit(Google_Service_Appengine_TrafficSplit $split)
1596 {
1597 $this->split = $split;
1598 }
1599 public function getSplit()
1600 {
1601 return $this->split;
1602 }
1603 }
1604
1605 class Google_Service_Appengine_SourceReference extends Google_Model
1606 {
1607 protected $internal_gapi_mappings = array(
1608 );
1609 public $repository;
1610 public $revisionId;
1611
1612
1613 public function setRepository($repository)
1614 {
1615 $this->repository = $repository;
1616 }
1617 public function getRepository()
1618 {
1619 return $this->repository;
1620 }
1621 public function setRevisionId($revisionId)
1622 {
1623 $this->revisionId = $revisionId;
1624 }
1625 public function getRevisionId()
1626 {
1627 return $this->revisionId;
1628 }
1629 }
1630
1631 class Google_Service_Appengine_StaticFilesHandler extends Google_Model
1632 {
1633 protected $internal_gapi_mappings = array(
1634 );
1635 public $applicationReadable;
1636 public $expiration;
1637 public $httpHeaders;
1638 public $mimeType;
1639 public $path;
1640 public $requireMatchingFile;
1641 public $uploadPathRegex;
1642
1643
1644 public function setApplicationReadable($applicationReadable)
1645 {
1646 $this->applicationReadable = $applicationReadable;
1647 }
1648 public function getApplicationReadable()
1649 {
1650 return $this->applicationReadable;
1651 }
1652 public function setExpiration($expiration)
1653 {
1654 $this->expiration = $expiration;
1655 }
1656 public function getExpiration()
1657 {
1658 return $this->expiration;
1659 }
1660 public function setHttpHeaders($httpHeaders)
1661 {
1662 $this->httpHeaders = $httpHeaders;
1663 }
1664 public function getHttpHeaders()
1665 {
1666 return $this->httpHeaders;
1667 }
1668 public function setMimeType($mimeType)
1669 {
1670 $this->mimeType = $mimeType;
1671 }
1672 public function getMimeType()
1673 {
1674 return $this->mimeType;
1675 }
1676 public function setPath($path)
1677 {
1678 $this->path = $path;
1679 }
1680 public function getPath()
1681 {
1682 return $this->path;
1683 }
1684 public function setRequireMatchingFile($requireMatchingFile)
1685 {
1686 $this->requireMatchingFile = $requireMatchingFile;
1687 }
1688 public function getRequireMatchingFile()
1689 {
1690 return $this->requireMatchingFile;
1691 }
1692 public function setUploadPathRegex($uploadPathRegex)
1693 {
1694 $this->uploadPathRegex = $uploadPathRegex;
1695 }
1696 public function getUploadPathRegex()
1697 {
1698 return $this->uploadPathRegex;
1699 }
1700 }
1701
1702 class Google_Service_Appengine_Status extends Google_Collection
1703 {
1704 protected $collection_key = 'details';
1705 protected $internal_gapi_mappings = array(
1706 );
1707 public $code;
1708 public $details;
1709 public $message;
1710
1711
1712 public function setCode($code)
1713 {
1714 $this->code = $code;
1715 }
1716 public function getCode()
1717 {
1718 return $this->code;
1719 }
1720 public function setDetails($details)
1721 {
1722 $this->details = $details;
1723 }
1724 public function getDetails()
1725 {
1726 return $this->details;
1727 }
1728 public function setMessage($message)
1729 {
1730 $this->message = $message;
1731 }
1732 public function getMessage()
1733 {
1734 return $this->message;
1735 }
1736 }
1737
1738 class Google_Service_Appengine_TrafficSplit extends Google_Model
1739 {
1740 protected $internal_gapi_mappings = array(
1741 );
1742 public $allocations;
1743 public $shardBy;
1744
1745
1746 public function setAllocations($allocations)
1747 {
1748 $this->allocations = $allocations;
1749 }
1750 public function getAllocations()
1751 {
1752 return $this->allocations;
1753 }
1754 public function setShardBy($shardBy)
1755 {
1756 $this->shardBy = $shardBy;
1757 }
1758 public function getShardBy()
1759 {
1760 return $this->shardBy;
1761 }
1762 }
1763
1764 class Google_Service_Appengine_UrlDispatchRule extends Google_Model
1765 {
1766 protected $internal_gapi_mappings = array(
1767 );
1768 public $domain;
1769 public $path;
1770 public $service;
1771
1772
1773 public function setDomain($domain)
1774 {
1775 $this->domain = $domain;
1776 }
1777 public function getDomain()
1778 {
1779 return $this->domain;
1780 }
1781 public function setPath($path)
1782 {
1783 $this->path = $path;
1784 }
1785 public function getPath()
1786 {
1787 return $this->path;
1788 }
1789 public function setService($service)
1790 {
1791 $this->service = $service;
1792 }
1793 public function getService()
1794 {
1795 return $this->service;
1796 }
1797 }
1798
1799 class Google_Service_Appengine_UrlMap extends Google_Model
1800 {
1801 protected $internal_gapi_mappings = array(
1802 );
1803 protected $apiEndpointType = 'Google_Service_Appengine_ApiEndpointHandler';
1804 protected $apiEndpointDataType = '';
1805 public $authFailAction;
1806 public $login;
1807 public $redirectHttpResponseCode;
1808 protected $scriptType = 'Google_Service_Appengine_ScriptHandler';
1809 protected $scriptDataType = '';
1810 public $securityLevel;
1811 protected $staticFilesType = 'Google_Service_Appengine_StaticFilesHandler';
1812 protected $staticFilesDataType = '';
1813 public $urlRegex;
1814
1815
1816 public function setApiEndpoint(Google_Service_Appengine_ApiEndpointHandler $apiEndpoint)
1817 {
1818 $this->apiEndpoint = $apiEndpoint;
1819 }
1820 public function getApiEndpoint()
1821 {
1822 return $this->apiEndpoint;
1823 }
1824 public function setAuthFailAction($authFailAction)
1825 {
1826 $this->authFailAction = $authFailAction;
1827 }
1828 public function getAuthFailAction()
1829 {
1830 return $this->authFailAction;
1831 }
1832 public function setLogin($login)
1833 {
1834 $this->login = $login;
1835 }
1836 public function getLogin()
1837 {
1838 return $this->login;
1839 }
1840 public function setRedirectHttpResponseCode($redirectHttpResponseCode)
1841 {
1842 $this->redirectHttpResponseCode = $redirectHttpResponseCode;
1843 }
1844 public function getRedirectHttpResponseCode()
1845 {
1846 return $this->redirectHttpResponseCode;
1847 }
1848 public function setScript(Google_Service_Appengine_ScriptHandler $script)
1849 {
1850 $this->script = $script;
1851 }
1852 public function getScript()
1853 {
1854 return $this->script;
1855 }
1856 public function setSecurityLevel($securityLevel)
1857 {
1858 $this->securityLevel = $securityLevel;
1859 }
1860 public function getSecurityLevel()
1861 {
1862 return $this->securityLevel;
1863 }
1864 public function setStaticFiles(Google_Service_Appengine_StaticFilesHandler $staticFiles)
1865 {
1866 $this->staticFiles = $staticFiles;
1867 }
1868 public function getStaticFiles()
1869 {
1870 return $this->staticFiles;
1871 }
1872 public function setUrlRegex($urlRegex)
1873 {
1874 $this->urlRegex = $urlRegex;
1875 }
1876 public function getUrlRegex()
1877 {
1878 return $this->urlRegex;
1879 }
1880 }
1881
1882 class Google_Service_Appengine_Version extends Google_Collection
1883 {
1884 protected $collection_key = 'libraries';
1885 protected $internal_gapi_mappings = array(
1886 );
1887 protected $apiConfigType = 'Google_Service_Appengine_ApiConfigHandler';
1888 protected $apiConfigDataType = '';
1889 protected $automaticScalingType = 'Google_Service_Appengine_AutomaticScaling';
1890 protected $automaticScalingDataType = '';
1891 protected $basicScalingType = 'Google_Service_Appengine_BasicScaling';
1892 protected $basicScalingDataType = '';
1893 public $betaSettings;
1894 public $creationTime;
1895 public $defaultExpiration;
1896 public $deployer;
1897 protected $deploymentType = 'Google_Service_Appengine_Deployment';
1898 protected $deploymentDataType = '';
1899 public $diskUsageBytes;
1900 public $env;
1901 public $envVariables;
1902 protected $errorHandlersType = 'Google_Service_Appengine_ErrorHandler';
1903 protected $errorHandlersDataType = 'array';
1904 protected $handlersType = 'Google_Service_Appengine_UrlMap';
1905 protected $handlersDataType = 'array';
1906 protected $healthCheckType = 'Google_Service_Appengine_HealthCheck';
1907 protected $healthCheckDataType = '';
1908 public $id;
1909 public $inboundServices;
1910 public $instanceClass;
1911 protected $librariesType = 'Google_Service_Appengine_Library';
1912 protected $librariesDataType = 'array';
1913 protected $manualScalingType = 'Google_Service_Appengine_ManualScaling';
1914 protected $manualScalingDataType = '';
1915 public $name;
1916 protected $networkType = 'Google_Service_Appengine_Network';
1917 protected $networkDataType = '';
1918 public $nobuildFilesRegex;
1919 protected $resourcesType = 'Google_Service_Appengine_Resources';
1920 protected $resourcesDataType = '';
1921 public $runtime;
1922 public $servingStatus;
1923 public $threadsafe;
1924 public $vm;
1925
1926
1927 public function setApiConfig(Google_Service_Appengine_ApiConfigHandler $apiConfig)
1928 {
1929 $this->apiConfig = $apiConfig;
1930 }
1931 public function getApiConfig()
1932 {
1933 return $this->apiConfig;
1934 }
1935 public function setAutomaticScaling(Google_Service_Appengine_AutomaticScaling $automaticScaling)
1936 {
1937 $this->automaticScaling = $automaticScaling;
1938 }
1939 public function getAutomaticScaling()
1940 {
1941 return $this->automaticScaling;
1942 }
1943 public function setBasicScaling(Google_Service_Appengine_BasicScaling $basicScaling)
1944 {
1945 $this->basicScaling = $basicScaling;
1946 }
1947 public function getBasicScaling()
1948 {
1949 return $this->basicScaling;
1950 }
1951 public function setBetaSettings($betaSettings)
1952 {
1953 $this->betaSettings = $betaSettings;
1954 }
1955 public function getBetaSettings()
1956 {
1957 return $this->betaSettings;
1958 }
1959 public function setCreationTime($creationTime)
1960 {
1961 $this->creationTime = $creationTime;
1962 }
1963 public function getCreationTime()
1964 {
1965 return $this->creationTime;
1966 }
1967 public function setDefaultExpiration($defaultExpiration)
1968 {
1969 $this->defaultExpiration = $defaultExpiration;
1970 }
1971 public function getDefaultExpiration()
1972 {
1973 return $this->defaultExpiration;
1974 }
1975 public function setDeployer($deployer)
1976 {
1977 $this->deployer = $deployer;
1978 }
1979 public function getDeployer()
1980 {
1981 return $this->deployer;
1982 }
1983 public function setDeployment(Google_Service_Appengine_Deployment $deployment)
1984 {
1985 $this->deployment = $deployment;
1986 }
1987 public function getDeployment()
1988 {
1989 return $this->deployment;
1990 }
1991 public function setDiskUsageBytes($diskUsageBytes)
1992 {
1993 $this->diskUsageBytes = $diskUsageBytes;
1994 }
1995 public function getDiskUsageBytes()
1996 {
1997 return $this->diskUsageBytes;
1998 }
1999 public function setEnv($env)
2000 {
2001 $this->env = $env;
2002 }
2003 public function getEnv()
2004 {
2005 return $this->env;
2006 }
2007 public function setEnvVariables($envVariables)
2008 {
2009 $this->envVariables = $envVariables;
2010 }
2011 public function getEnvVariables()
2012 {
2013 return $this->envVariables;
2014 }
2015 public function setErrorHandlers($errorHandlers)
2016 {
2017 $this->errorHandlers = $errorHandlers;
2018 }
2019 public function getErrorHandlers()
2020 {
2021 return $this->errorHandlers;
2022 }
2023 public function setHandlers($handlers)
2024 {
2025 $this->handlers = $handlers;
2026 }
2027 public function getHandlers()
2028 {
2029 return $this->handlers;
2030 }
2031 public function setHealthCheck(Google_Service_Appengine_HealthCheck $healthCheck)
2032 {
2033 $this->healthCheck = $healthCheck;
2034 }
2035 public function getHealthCheck()
2036 {
2037 return $this->healthCheck;
2038 }
2039 public function setId($id)
2040 {
2041 $this->id = $id;
2042 }
2043 public function getId()
2044 {
2045 return $this->id;
2046 }
2047 public function setInboundServices($inboundServices)
2048 {
2049 $this->inboundServices = $inboundServices;
2050 }
2051 public function getInboundServices()
2052 {
2053 return $this->inboundServices;
2054 }
2055 public function setInstanceClass($instanceClass)
2056 {
2057 $this->instanceClass = $instanceClass;
2058 }
2059 public function getInstanceClass()
2060 {
2061 return $this->instanceClass;
2062 }
2063 public function setLibraries($libraries)
2064 {
2065 $this->libraries = $libraries;
2066 }
2067 public function getLibraries()
2068 {
2069 return $this->libraries;
2070 }
2071 public function setManualScaling(Google_Service_Appengine_ManualScaling $manualScaling)
2072 {
2073 $this->manualScaling = $manualScaling;
2074 }
2075 public function getManualScaling()
2076 {
2077 return $this->manualScaling;
2078 }
2079 public function setName($name)
2080 {
2081 $this->name = $name;
2082 }
2083 public function getName()
2084 {
2085 return $this->name;
2086 }
2087 public function setNetwork(Google_Service_Appengine_Network $network)
2088 {
2089 $this->network = $network;
2090 }
2091 public function getNetwork()
2092 {
2093 return $this->network;
2094 }
2095 public function setNobuildFilesRegex($nobuildFilesRegex)
2096 {
2097 $this->nobuildFilesRegex = $nobuildFilesRegex;
2098 }
2099 public function getNobuildFilesRegex()
2100 {
2101 return $this->nobuildFilesRegex;
2102 }
2103 public function setResources(Google_Service_Appengine_Resources $resources)
2104 {
2105 $this->resources = $resources;
2106 }
2107 public function getResources()
2108 {
2109 return $this->resources;
2110 }
2111 public function setRuntime($runtime)
2112 {
2113 $this->runtime = $runtime;
2114 }
2115 public function getRuntime()
2116 {
2117 return $this->runtime;
2118 }
2119 public function setServingStatus($servingStatus)
2120 {
2121 $this->servingStatus = $servingStatus;
2122 }
2123 public function getServingStatus()
2124 {
2125 return $this->servingStatus;
2126 }
2127 public function setThreadsafe($threadsafe)
2128 {
2129 $this->threadsafe = $threadsafe;
2130 }
2131 public function getThreadsafe()
2132 {
2133 return $this->threadsafe;
2134 }
2135 public function setVm($vm)
2136 {
2137 $this->vm = $vm;
2138 }
2139 public function getVm()
2140 {
2141 return $this->vm;
2142 }
2143 }
2144