source: vendor/google/apiclient-services/src/Appengine/Version.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 14.0 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Appengine;
19
20class Version extends \Google\Collection
21{
22 protected $collection_key = 'zones';
23 protected $apiConfigType = ApiConfigHandler::class;
24 protected $apiConfigDataType = '';
25 /**
26 * @var bool
27 */
28 public $appEngineApis;
29 protected $automaticScalingType = AutomaticScaling::class;
30 protected $automaticScalingDataType = '';
31 protected $basicScalingType = BasicScaling::class;
32 protected $basicScalingDataType = '';
33 /**
34 * @var string[]
35 */
36 public $betaSettings;
37 /**
38 * @var string[]
39 */
40 public $buildEnvVariables;
41 /**
42 * @var string
43 */
44 public $createTime;
45 /**
46 * @var string
47 */
48 public $createdBy;
49 /**
50 * @var string
51 */
52 public $defaultExpiration;
53 protected $deploymentType = Deployment::class;
54 protected $deploymentDataType = '';
55 /**
56 * @var string
57 */
58 public $diskUsageBytes;
59 protected $endpointsApiServiceType = EndpointsApiService::class;
60 protected $endpointsApiServiceDataType = '';
61 protected $entrypointType = Entrypoint::class;
62 protected $entrypointDataType = '';
63 /**
64 * @var string
65 */
66 public $env;
67 /**
68 * @var string[]
69 */
70 public $envVariables;
71 protected $errorHandlersType = ErrorHandler::class;
72 protected $errorHandlersDataType = 'array';
73 protected $flexibleRuntimeSettingsType = FlexibleRuntimeSettings::class;
74 protected $flexibleRuntimeSettingsDataType = '';
75 /**
76 * @var array[]
77 */
78 public $generatedCustomerMetadata;
79 protected $handlersType = UrlMap::class;
80 protected $handlersDataType = 'array';
81 protected $healthCheckType = HealthCheck::class;
82 protected $healthCheckDataType = '';
83 /**
84 * @var string
85 */
86 public $id;
87 /**
88 * @var string[]
89 */
90 public $inboundServices;
91 /**
92 * @var string
93 */
94 public $instanceClass;
95 protected $librariesType = Library::class;
96 protected $librariesDataType = 'array';
97 protected $livenessCheckType = LivenessCheck::class;
98 protected $livenessCheckDataType = '';
99 protected $manualScalingType = ManualScaling::class;
100 protected $manualScalingDataType = '';
101 /**
102 * @var string
103 */
104 public $name;
105 protected $networkType = Network::class;
106 protected $networkDataType = '';
107 /**
108 * @var string
109 */
110 public $nobuildFilesRegex;
111 protected $readinessCheckType = ReadinessCheck::class;
112 protected $readinessCheckDataType = '';
113 protected $resourcesType = Resources::class;
114 protected $resourcesDataType = '';
115 /**
116 * @var string
117 */
118 public $runtime;
119 /**
120 * @var string
121 */
122 public $runtimeApiVersion;
123 /**
124 * @var string
125 */
126 public $runtimeChannel;
127 /**
128 * @var string
129 */
130 public $runtimeMainExecutablePath;
131 /**
132 * @var string
133 */
134 public $serviceAccount;
135 /**
136 * @var string
137 */
138 public $servingStatus;
139 /**
140 * @var bool
141 */
142 public $threadsafe;
143 /**
144 * @var string
145 */
146 public $versionUrl;
147 /**
148 * @var bool
149 */
150 public $vm;
151 protected $vpcAccessConnectorType = VpcAccessConnector::class;
152 protected $vpcAccessConnectorDataType = '';
153 /**
154 * @var string[]
155 */
156 public $zones;
157
158 /**
159 * @param ApiConfigHandler
160 */
161 public function setApiConfig(ApiConfigHandler $apiConfig)
162 {
163 $this->apiConfig = $apiConfig;
164 }
165 /**
166 * @return ApiConfigHandler
167 */
168 public function getApiConfig()
169 {
170 return $this->apiConfig;
171 }
172 /**
173 * @param bool
174 */
175 public function setAppEngineApis($appEngineApis)
176 {
177 $this->appEngineApis = $appEngineApis;
178 }
179 /**
180 * @return bool
181 */
182 public function getAppEngineApis()
183 {
184 return $this->appEngineApis;
185 }
186 /**
187 * @param AutomaticScaling
188 */
189 public function setAutomaticScaling(AutomaticScaling $automaticScaling)
190 {
191 $this->automaticScaling = $automaticScaling;
192 }
193 /**
194 * @return AutomaticScaling
195 */
196 public function getAutomaticScaling()
197 {
198 return $this->automaticScaling;
199 }
200 /**
201 * @param BasicScaling
202 */
203 public function setBasicScaling(BasicScaling $basicScaling)
204 {
205 $this->basicScaling = $basicScaling;
206 }
207 /**
208 * @return BasicScaling
209 */
210 public function getBasicScaling()
211 {
212 return $this->basicScaling;
213 }
214 /**
215 * @param string[]
216 */
217 public function setBetaSettings($betaSettings)
218 {
219 $this->betaSettings = $betaSettings;
220 }
221 /**
222 * @return string[]
223 */
224 public function getBetaSettings()
225 {
226 return $this->betaSettings;
227 }
228 /**
229 * @param string[]
230 */
231 public function setBuildEnvVariables($buildEnvVariables)
232 {
233 $this->buildEnvVariables = $buildEnvVariables;
234 }
235 /**
236 * @return string[]
237 */
238 public function getBuildEnvVariables()
239 {
240 return $this->buildEnvVariables;
241 }
242 /**
243 * @param string
244 */
245 public function setCreateTime($createTime)
246 {
247 $this->createTime = $createTime;
248 }
249 /**
250 * @return string
251 */
252 public function getCreateTime()
253 {
254 return $this->createTime;
255 }
256 /**
257 * @param string
258 */
259 public function setCreatedBy($createdBy)
260 {
261 $this->createdBy = $createdBy;
262 }
263 /**
264 * @return string
265 */
266 public function getCreatedBy()
267 {
268 return $this->createdBy;
269 }
270 /**
271 * @param string
272 */
273 public function setDefaultExpiration($defaultExpiration)
274 {
275 $this->defaultExpiration = $defaultExpiration;
276 }
277 /**
278 * @return string
279 */
280 public function getDefaultExpiration()
281 {
282 return $this->defaultExpiration;
283 }
284 /**
285 * @param Deployment
286 */
287 public function setDeployment(Deployment $deployment)
288 {
289 $this->deployment = $deployment;
290 }
291 /**
292 * @return Deployment
293 */
294 public function getDeployment()
295 {
296 return $this->deployment;
297 }
298 /**
299 * @param string
300 */
301 public function setDiskUsageBytes($diskUsageBytes)
302 {
303 $this->diskUsageBytes = $diskUsageBytes;
304 }
305 /**
306 * @return string
307 */
308 public function getDiskUsageBytes()
309 {
310 return $this->diskUsageBytes;
311 }
312 /**
313 * @param EndpointsApiService
314 */
315 public function setEndpointsApiService(EndpointsApiService $endpointsApiService)
316 {
317 $this->endpointsApiService = $endpointsApiService;
318 }
319 /**
320 * @return EndpointsApiService
321 */
322 public function getEndpointsApiService()
323 {
324 return $this->endpointsApiService;
325 }
326 /**
327 * @param Entrypoint
328 */
329 public function setEntrypoint(Entrypoint $entrypoint)
330 {
331 $this->entrypoint = $entrypoint;
332 }
333 /**
334 * @return Entrypoint
335 */
336 public function getEntrypoint()
337 {
338 return $this->entrypoint;
339 }
340 /**
341 * @param string
342 */
343 public function setEnv($env)
344 {
345 $this->env = $env;
346 }
347 /**
348 * @return string
349 */
350 public function getEnv()
351 {
352 return $this->env;
353 }
354 /**
355 * @param string[]
356 */
357 public function setEnvVariables($envVariables)
358 {
359 $this->envVariables = $envVariables;
360 }
361 /**
362 * @return string[]
363 */
364 public function getEnvVariables()
365 {
366 return $this->envVariables;
367 }
368 /**
369 * @param ErrorHandler[]
370 */
371 public function setErrorHandlers($errorHandlers)
372 {
373 $this->errorHandlers = $errorHandlers;
374 }
375 /**
376 * @return ErrorHandler[]
377 */
378 public function getErrorHandlers()
379 {
380 return $this->errorHandlers;
381 }
382 /**
383 * @param FlexibleRuntimeSettings
384 */
385 public function setFlexibleRuntimeSettings(FlexibleRuntimeSettings $flexibleRuntimeSettings)
386 {
387 $this->flexibleRuntimeSettings = $flexibleRuntimeSettings;
388 }
389 /**
390 * @return FlexibleRuntimeSettings
391 */
392 public function getFlexibleRuntimeSettings()
393 {
394 return $this->flexibleRuntimeSettings;
395 }
396 /**
397 * @param array[]
398 */
399 public function setGeneratedCustomerMetadata($generatedCustomerMetadata)
400 {
401 $this->generatedCustomerMetadata = $generatedCustomerMetadata;
402 }
403 /**
404 * @return array[]
405 */
406 public function getGeneratedCustomerMetadata()
407 {
408 return $this->generatedCustomerMetadata;
409 }
410 /**
411 * @param UrlMap[]
412 */
413 public function setHandlers($handlers)
414 {
415 $this->handlers = $handlers;
416 }
417 /**
418 * @return UrlMap[]
419 */
420 public function getHandlers()
421 {
422 return $this->handlers;
423 }
424 /**
425 * @param HealthCheck
426 */
427 public function setHealthCheck(HealthCheck $healthCheck)
428 {
429 $this->healthCheck = $healthCheck;
430 }
431 /**
432 * @return HealthCheck
433 */
434 public function getHealthCheck()
435 {
436 return $this->healthCheck;
437 }
438 /**
439 * @param string
440 */
441 public function setId($id)
442 {
443 $this->id = $id;
444 }
445 /**
446 * @return string
447 */
448 public function getId()
449 {
450 return $this->id;
451 }
452 /**
453 * @param string[]
454 */
455 public function setInboundServices($inboundServices)
456 {
457 $this->inboundServices = $inboundServices;
458 }
459 /**
460 * @return string[]
461 */
462 public function getInboundServices()
463 {
464 return $this->inboundServices;
465 }
466 /**
467 * @param string
468 */
469 public function setInstanceClass($instanceClass)
470 {
471 $this->instanceClass = $instanceClass;
472 }
473 /**
474 * @return string
475 */
476 public function getInstanceClass()
477 {
478 return $this->instanceClass;
479 }
480 /**
481 * @param Library[]
482 */
483 public function setLibraries($libraries)
484 {
485 $this->libraries = $libraries;
486 }
487 /**
488 * @return Library[]
489 */
490 public function getLibraries()
491 {
492 return $this->libraries;
493 }
494 /**
495 * @param LivenessCheck
496 */
497 public function setLivenessCheck(LivenessCheck $livenessCheck)
498 {
499 $this->livenessCheck = $livenessCheck;
500 }
501 /**
502 * @return LivenessCheck
503 */
504 public function getLivenessCheck()
505 {
506 return $this->livenessCheck;
507 }
508 /**
509 * @param ManualScaling
510 */
511 public function setManualScaling(ManualScaling $manualScaling)
512 {
513 $this->manualScaling = $manualScaling;
514 }
515 /**
516 * @return ManualScaling
517 */
518 public function getManualScaling()
519 {
520 return $this->manualScaling;
521 }
522 /**
523 * @param string
524 */
525 public function setName($name)
526 {
527 $this->name = $name;
528 }
529 /**
530 * @return string
531 */
532 public function getName()
533 {
534 return $this->name;
535 }
536 /**
537 * @param Network
538 */
539 public function setNetwork(Network $network)
540 {
541 $this->network = $network;
542 }
543 /**
544 * @return Network
545 */
546 public function getNetwork()
547 {
548 return $this->network;
549 }
550 /**
551 * @param string
552 */
553 public function setNobuildFilesRegex($nobuildFilesRegex)
554 {
555 $this->nobuildFilesRegex = $nobuildFilesRegex;
556 }
557 /**
558 * @return string
559 */
560 public function getNobuildFilesRegex()
561 {
562 return $this->nobuildFilesRegex;
563 }
564 /**
565 * @param ReadinessCheck
566 */
567 public function setReadinessCheck(ReadinessCheck $readinessCheck)
568 {
569 $this->readinessCheck = $readinessCheck;
570 }
571 /**
572 * @return ReadinessCheck
573 */
574 public function getReadinessCheck()
575 {
576 return $this->readinessCheck;
577 }
578 /**
579 * @param Resources
580 */
581 public function setResources(Resources $resources)
582 {
583 $this->resources = $resources;
584 }
585 /**
586 * @return Resources
587 */
588 public function getResources()
589 {
590 return $this->resources;
591 }
592 /**
593 * @param string
594 */
595 public function setRuntime($runtime)
596 {
597 $this->runtime = $runtime;
598 }
599 /**
600 * @return string
601 */
602 public function getRuntime()
603 {
604 return $this->runtime;
605 }
606 /**
607 * @param string
608 */
609 public function setRuntimeApiVersion($runtimeApiVersion)
610 {
611 $this->runtimeApiVersion = $runtimeApiVersion;
612 }
613 /**
614 * @return string
615 */
616 public function getRuntimeApiVersion()
617 {
618 return $this->runtimeApiVersion;
619 }
620 /**
621 * @param string
622 */
623 public function setRuntimeChannel($runtimeChannel)
624 {
625 $this->runtimeChannel = $runtimeChannel;
626 }
627 /**
628 * @return string
629 */
630 public function getRuntimeChannel()
631 {
632 return $this->runtimeChannel;
633 }
634 /**
635 * @param string
636 */
637 public function setRuntimeMainExecutablePath($runtimeMainExecutablePath)
638 {
639 $this->runtimeMainExecutablePath = $runtimeMainExecutablePath;
640 }
641 /**
642 * @return string
643 */
644 public function getRuntimeMainExecutablePath()
645 {
646 return $this->runtimeMainExecutablePath;
647 }
648 /**
649 * @param string
650 */
651 public function setServiceAccount($serviceAccount)
652 {
653 $this->serviceAccount = $serviceAccount;
654 }
655 /**
656 * @return string
657 */
658 public function getServiceAccount()
659 {
660 return $this->serviceAccount;
661 }
662 /**
663 * @param string
664 */
665 public function setServingStatus($servingStatus)
666 {
667 $this->servingStatus = $servingStatus;
668 }
669 /**
670 * @return string
671 */
672 public function getServingStatus()
673 {
674 return $this->servingStatus;
675 }
676 /**
677 * @param bool
678 */
679 public function setThreadsafe($threadsafe)
680 {
681 $this->threadsafe = $threadsafe;
682 }
683 /**
684 * @return bool
685 */
686 public function getThreadsafe()
687 {
688 return $this->threadsafe;
689 }
690 /**
691 * @param string
692 */
693 public function setVersionUrl($versionUrl)
694 {
695 $this->versionUrl = $versionUrl;
696 }
697 /**
698 * @return string
699 */
700 public function getVersionUrl()
701 {
702 return $this->versionUrl;
703 }
704 /**
705 * @param bool
706 */
707 public function setVm($vm)
708 {
709 $this->vm = $vm;
710 }
711 /**
712 * @return bool
713 */
714 public function getVm()
715 {
716 return $this->vm;
717 }
718 /**
719 * @param VpcAccessConnector
720 */
721 public function setVpcAccessConnector(VpcAccessConnector $vpcAccessConnector)
722 {
723 $this->vpcAccessConnector = $vpcAccessConnector;
724 }
725 /**
726 * @return VpcAccessConnector
727 */
728 public function getVpcAccessConnector()
729 {
730 return $this->vpcAccessConnector;
731 }
732 /**
733 * @param string[]
734 */
735 public function setZones($zones)
736 {
737 $this->zones = $zones;
738 }
739 /**
740 * @return string[]
741 */
742 public function getZones()
743 {
744 return $this->zones;
745 }
746}
747
748// Adding a class alias for backwards compatibility with the previous class name.
749class_alias(Version::class, 'Google_Service_Appengine_Version');
Note: See TracBrowser for help on using the repository browser.