source: vendor/google/apiclient-services/src/AIPlatformNotebooks/Instance.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: 5.6 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\AIPlatformNotebooks;
19
20class Instance extends \Google\Collection
21{
22 protected $collection_key = 'upgradeHistory';
23 /**
24 * @var string
25 */
26 public $createTime;
27 /**
28 * @var string
29 */
30 public $creator;
31 /**
32 * @var bool
33 */
34 public $disableProxyAccess;
35 protected $gceSetupType = GceSetup::class;
36 protected $gceSetupDataType = '';
37 /**
38 * @var string[]
39 */
40 public $healthInfo;
41 /**
42 * @var string
43 */
44 public $healthState;
45 /**
46 * @var string
47 */
48 public $id;
49 /**
50 * @var string[]
51 */
52 public $instanceOwners;
53 /**
54 * @var string[]
55 */
56 public $labels;
57 /**
58 * @var string
59 */
60 public $name;
61 /**
62 * @var string
63 */
64 public $proxyUri;
65 /**
66 * @var bool
67 */
68 public $satisfiesPzi;
69 /**
70 * @var bool
71 */
72 public $satisfiesPzs;
73 /**
74 * @var string
75 */
76 public $state;
77 /**
78 * @var string
79 */
80 public $thirdPartyProxyUrl;
81 /**
82 * @var string
83 */
84 public $updateTime;
85 protected $upgradeHistoryType = UpgradeHistoryEntry::class;
86 protected $upgradeHistoryDataType = 'array';
87
88 /**
89 * @param string
90 */
91 public function setCreateTime($createTime)
92 {
93 $this->createTime = $createTime;
94 }
95 /**
96 * @return string
97 */
98 public function getCreateTime()
99 {
100 return $this->createTime;
101 }
102 /**
103 * @param string
104 */
105 public function setCreator($creator)
106 {
107 $this->creator = $creator;
108 }
109 /**
110 * @return string
111 */
112 public function getCreator()
113 {
114 return $this->creator;
115 }
116 /**
117 * @param bool
118 */
119 public function setDisableProxyAccess($disableProxyAccess)
120 {
121 $this->disableProxyAccess = $disableProxyAccess;
122 }
123 /**
124 * @return bool
125 */
126 public function getDisableProxyAccess()
127 {
128 return $this->disableProxyAccess;
129 }
130 /**
131 * @param GceSetup
132 */
133 public function setGceSetup(GceSetup $gceSetup)
134 {
135 $this->gceSetup = $gceSetup;
136 }
137 /**
138 * @return GceSetup
139 */
140 public function getGceSetup()
141 {
142 return $this->gceSetup;
143 }
144 /**
145 * @param string[]
146 */
147 public function setHealthInfo($healthInfo)
148 {
149 $this->healthInfo = $healthInfo;
150 }
151 /**
152 * @return string[]
153 */
154 public function getHealthInfo()
155 {
156 return $this->healthInfo;
157 }
158 /**
159 * @param string
160 */
161 public function setHealthState($healthState)
162 {
163 $this->healthState = $healthState;
164 }
165 /**
166 * @return string
167 */
168 public function getHealthState()
169 {
170 return $this->healthState;
171 }
172 /**
173 * @param string
174 */
175 public function setId($id)
176 {
177 $this->id = $id;
178 }
179 /**
180 * @return string
181 */
182 public function getId()
183 {
184 return $this->id;
185 }
186 /**
187 * @param string[]
188 */
189 public function setInstanceOwners($instanceOwners)
190 {
191 $this->instanceOwners = $instanceOwners;
192 }
193 /**
194 * @return string[]
195 */
196 public function getInstanceOwners()
197 {
198 return $this->instanceOwners;
199 }
200 /**
201 * @param string[]
202 */
203 public function setLabels($labels)
204 {
205 $this->labels = $labels;
206 }
207 /**
208 * @return string[]
209 */
210 public function getLabels()
211 {
212 return $this->labels;
213 }
214 /**
215 * @param string
216 */
217 public function setName($name)
218 {
219 $this->name = $name;
220 }
221 /**
222 * @return string
223 */
224 public function getName()
225 {
226 return $this->name;
227 }
228 /**
229 * @param string
230 */
231 public function setProxyUri($proxyUri)
232 {
233 $this->proxyUri = $proxyUri;
234 }
235 /**
236 * @return string
237 */
238 public function getProxyUri()
239 {
240 return $this->proxyUri;
241 }
242 /**
243 * @param bool
244 */
245 public function setSatisfiesPzi($satisfiesPzi)
246 {
247 $this->satisfiesPzi = $satisfiesPzi;
248 }
249 /**
250 * @return bool
251 */
252 public function getSatisfiesPzi()
253 {
254 return $this->satisfiesPzi;
255 }
256 /**
257 * @param bool
258 */
259 public function setSatisfiesPzs($satisfiesPzs)
260 {
261 $this->satisfiesPzs = $satisfiesPzs;
262 }
263 /**
264 * @return bool
265 */
266 public function getSatisfiesPzs()
267 {
268 return $this->satisfiesPzs;
269 }
270 /**
271 * @param string
272 */
273 public function setState($state)
274 {
275 $this->state = $state;
276 }
277 /**
278 * @return string
279 */
280 public function getState()
281 {
282 return $this->state;
283 }
284 /**
285 * @param string
286 */
287 public function setThirdPartyProxyUrl($thirdPartyProxyUrl)
288 {
289 $this->thirdPartyProxyUrl = $thirdPartyProxyUrl;
290 }
291 /**
292 * @return string
293 */
294 public function getThirdPartyProxyUrl()
295 {
296 return $this->thirdPartyProxyUrl;
297 }
298 /**
299 * @param string
300 */
301 public function setUpdateTime($updateTime)
302 {
303 $this->updateTime = $updateTime;
304 }
305 /**
306 * @return string
307 */
308 public function getUpdateTime()
309 {
310 return $this->updateTime;
311 }
312 /**
313 * @param UpgradeHistoryEntry[]
314 */
315 public function setUpgradeHistory($upgradeHistory)
316 {
317 $this->upgradeHistory = $upgradeHistory;
318 }
319 /**
320 * @return UpgradeHistoryEntry[]
321 */
322 public function getUpgradeHistory()
323 {
324 return $this->upgradeHistory;
325 }
326}
327
328// Adding a class alias for backwards compatibility with the previous class name.
329class_alias(Instance::class, 'Google_Service_AIPlatformNotebooks_Instance');
Note: See TracBrowser for help on using the repository browser.