source: vendor/google/apiclient-services/src/CloudComposer/ImageVersion.php

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

Upload project files

  • Property mode set to 100644
File size: 2.7 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\CloudComposer;
19
20class ImageVersion extends \Google\Collection
21{
22 protected $collection_key = 'supportedPythonVersions';
23 /**
24 * @var bool
25 */
26 public $creationDisabled;
27 /**
28 * @var string
29 */
30 public $imageVersionId;
31 /**
32 * @var bool
33 */
34 public $isDefault;
35 protected $releaseDateType = Date::class;
36 protected $releaseDateDataType = '';
37 /**
38 * @var string[]
39 */
40 public $supportedPythonVersions;
41 /**
42 * @var bool
43 */
44 public $upgradeDisabled;
45
46 /**
47 * @param bool
48 */
49 public function setCreationDisabled($creationDisabled)
50 {
51 $this->creationDisabled = $creationDisabled;
52 }
53 /**
54 * @return bool
55 */
56 public function getCreationDisabled()
57 {
58 return $this->creationDisabled;
59 }
60 /**
61 * @param string
62 */
63 public function setImageVersionId($imageVersionId)
64 {
65 $this->imageVersionId = $imageVersionId;
66 }
67 /**
68 * @return string
69 */
70 public function getImageVersionId()
71 {
72 return $this->imageVersionId;
73 }
74 /**
75 * @param bool
76 */
77 public function setIsDefault($isDefault)
78 {
79 $this->isDefault = $isDefault;
80 }
81 /**
82 * @return bool
83 */
84 public function getIsDefault()
85 {
86 return $this->isDefault;
87 }
88 /**
89 * @param Date
90 */
91 public function setReleaseDate(Date $releaseDate)
92 {
93 $this->releaseDate = $releaseDate;
94 }
95 /**
96 * @return Date
97 */
98 public function getReleaseDate()
99 {
100 return $this->releaseDate;
101 }
102 /**
103 * @param string[]
104 */
105 public function setSupportedPythonVersions($supportedPythonVersions)
106 {
107 $this->supportedPythonVersions = $supportedPythonVersions;
108 }
109 /**
110 * @return string[]
111 */
112 public function getSupportedPythonVersions()
113 {
114 return $this->supportedPythonVersions;
115 }
116 /**
117 * @param bool
118 */
119 public function setUpgradeDisabled($upgradeDisabled)
120 {
121 $this->upgradeDisabled = $upgradeDisabled;
122 }
123 /**
124 * @return bool
125 */
126 public function getUpgradeDisabled()
127 {
128 return $this->upgradeDisabled;
129 }
130}
131
132// Adding a class alias for backwards compatibility with the previous class name.
133class_alias(ImageVersion::class, 'Google_Service_CloudComposer_ImageVersion');
Note: See TracBrowser for help on using the repository browser.