source: vendor/google/apiclient-services/src/GKEOnPrem/BareMetalNodePool.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.5 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\GKEOnPrem;
19
20class BareMetalNodePool extends \Google\Model
21{
22 /**
23 * @var string[]
24 */
25 public $annotations;
26 /**
27 * @var string
28 */
29 public $createTime;
30 /**
31 * @var string
32 */
33 public $deleteTime;
34 /**
35 * @var string
36 */
37 public $displayName;
38 /**
39 * @var string
40 */
41 public $etag;
42 /**
43 * @var string
44 */
45 public $name;
46 protected $nodePoolConfigType = BareMetalNodePoolConfig::class;
47 protected $nodePoolConfigDataType = '';
48 /**
49 * @var bool
50 */
51 public $reconciling;
52 /**
53 * @var string
54 */
55 public $state;
56 protected $statusType = ResourceStatus::class;
57 protected $statusDataType = '';
58 /**
59 * @var string
60 */
61 public $uid;
62 /**
63 * @var string
64 */
65 public $updateTime;
66 protected $upgradePolicyType = BareMetalNodePoolUpgradePolicy::class;
67 protected $upgradePolicyDataType = '';
68
69 /**
70 * @param string[]
71 */
72 public function setAnnotations($annotations)
73 {
74 $this->annotations = $annotations;
75 }
76 /**
77 * @return string[]
78 */
79 public function getAnnotations()
80 {
81 return $this->annotations;
82 }
83 /**
84 * @param string
85 */
86 public function setCreateTime($createTime)
87 {
88 $this->createTime = $createTime;
89 }
90 /**
91 * @return string
92 */
93 public function getCreateTime()
94 {
95 return $this->createTime;
96 }
97 /**
98 * @param string
99 */
100 public function setDeleteTime($deleteTime)
101 {
102 $this->deleteTime = $deleteTime;
103 }
104 /**
105 * @return string
106 */
107 public function getDeleteTime()
108 {
109 return $this->deleteTime;
110 }
111 /**
112 * @param string
113 */
114 public function setDisplayName($displayName)
115 {
116 $this->displayName = $displayName;
117 }
118 /**
119 * @return string
120 */
121 public function getDisplayName()
122 {
123 return $this->displayName;
124 }
125 /**
126 * @param string
127 */
128 public function setEtag($etag)
129 {
130 $this->etag = $etag;
131 }
132 /**
133 * @return string
134 */
135 public function getEtag()
136 {
137 return $this->etag;
138 }
139 /**
140 * @param string
141 */
142 public function setName($name)
143 {
144 $this->name = $name;
145 }
146 /**
147 * @return string
148 */
149 public function getName()
150 {
151 return $this->name;
152 }
153 /**
154 * @param BareMetalNodePoolConfig
155 */
156 public function setNodePoolConfig(BareMetalNodePoolConfig $nodePoolConfig)
157 {
158 $this->nodePoolConfig = $nodePoolConfig;
159 }
160 /**
161 * @return BareMetalNodePoolConfig
162 */
163 public function getNodePoolConfig()
164 {
165 return $this->nodePoolConfig;
166 }
167 /**
168 * @param bool
169 */
170 public function setReconciling($reconciling)
171 {
172 $this->reconciling = $reconciling;
173 }
174 /**
175 * @return bool
176 */
177 public function getReconciling()
178 {
179 return $this->reconciling;
180 }
181 /**
182 * @param string
183 */
184 public function setState($state)
185 {
186 $this->state = $state;
187 }
188 /**
189 * @return string
190 */
191 public function getState()
192 {
193 return $this->state;
194 }
195 /**
196 * @param ResourceStatus
197 */
198 public function setStatus(ResourceStatus $status)
199 {
200 $this->status = $status;
201 }
202 /**
203 * @return ResourceStatus
204 */
205 public function getStatus()
206 {
207 return $this->status;
208 }
209 /**
210 * @param string
211 */
212 public function setUid($uid)
213 {
214 $this->uid = $uid;
215 }
216 /**
217 * @return string
218 */
219 public function getUid()
220 {
221 return $this->uid;
222 }
223 /**
224 * @param string
225 */
226 public function setUpdateTime($updateTime)
227 {
228 $this->updateTime = $updateTime;
229 }
230 /**
231 * @return string
232 */
233 public function getUpdateTime()
234 {
235 return $this->updateTime;
236 }
237 /**
238 * @param BareMetalNodePoolUpgradePolicy
239 */
240 public function setUpgradePolicy(BareMetalNodePoolUpgradePolicy $upgradePolicy)
241 {
242 $this->upgradePolicy = $upgradePolicy;
243 }
244 /**
245 * @return BareMetalNodePoolUpgradePolicy
246 */
247 public function getUpgradePolicy()
248 {
249 return $this->upgradePolicy;
250 }
251}
252
253// Adding a class alias for backwards compatibility with the previous class name.
254class_alias(BareMetalNodePool::class, 'Google_Service_GKEOnPrem_BareMetalNodePool');
Note: See TracBrowser for help on using the repository browser.