source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1NotebookRuntime.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: 7.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\Aiplatform;
19
20class GoogleCloudAiplatformV1NotebookRuntime extends \Google\Collection
21{
22 protected $collection_key = 'networkTags';
23 /**
24 * @var string
25 */
26 public $createTime;
27 /**
28 * @var string
29 */
30 public $description;
31 /**
32 * @var string
33 */
34 public $displayName;
35 protected $encryptionSpecType = GoogleCloudAiplatformV1EncryptionSpec::class;
36 protected $encryptionSpecDataType = '';
37 /**
38 * @var string
39 */
40 public $expirationTime;
41 /**
42 * @var string
43 */
44 public $healthState;
45 protected $idleShutdownConfigType = GoogleCloudAiplatformV1NotebookIdleShutdownConfig::class;
46 protected $idleShutdownConfigDataType = '';
47 /**
48 * @var bool
49 */
50 public $isUpgradable;
51 /**
52 * @var string[]
53 */
54 public $labels;
55 /**
56 * @var string
57 */
58 public $name;
59 /**
60 * @var string[]
61 */
62 public $networkTags;
63 protected $notebookRuntimeTemplateRefType = GoogleCloudAiplatformV1NotebookRuntimeTemplateRef::class;
64 protected $notebookRuntimeTemplateRefDataType = '';
65 /**
66 * @var string
67 */
68 public $notebookRuntimeType;
69 /**
70 * @var string
71 */
72 public $proxyUri;
73 /**
74 * @var string
75 */
76 public $runtimeState;
77 /**
78 * @var string
79 */
80 public $runtimeUser;
81 /**
82 * @var bool
83 */
84 public $satisfiesPzi;
85 /**
86 * @var bool
87 */
88 public $satisfiesPzs;
89 /**
90 * @var string
91 */
92 public $serviceAccount;
93 /**
94 * @var string
95 */
96 public $updateTime;
97 /**
98 * @var string
99 */
100 public $version;
101
102 /**
103 * @param string
104 */
105 public function setCreateTime($createTime)
106 {
107 $this->createTime = $createTime;
108 }
109 /**
110 * @return string
111 */
112 public function getCreateTime()
113 {
114 return $this->createTime;
115 }
116 /**
117 * @param string
118 */
119 public function setDescription($description)
120 {
121 $this->description = $description;
122 }
123 /**
124 * @return string
125 */
126 public function getDescription()
127 {
128 return $this->description;
129 }
130 /**
131 * @param string
132 */
133 public function setDisplayName($displayName)
134 {
135 $this->displayName = $displayName;
136 }
137 /**
138 * @return string
139 */
140 public function getDisplayName()
141 {
142 return $this->displayName;
143 }
144 /**
145 * @param GoogleCloudAiplatformV1EncryptionSpec
146 */
147 public function setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec $encryptionSpec)
148 {
149 $this->encryptionSpec = $encryptionSpec;
150 }
151 /**
152 * @return GoogleCloudAiplatformV1EncryptionSpec
153 */
154 public function getEncryptionSpec()
155 {
156 return $this->encryptionSpec;
157 }
158 /**
159 * @param string
160 */
161 public function setExpirationTime($expirationTime)
162 {
163 $this->expirationTime = $expirationTime;
164 }
165 /**
166 * @return string
167 */
168 public function getExpirationTime()
169 {
170 return $this->expirationTime;
171 }
172 /**
173 * @param string
174 */
175 public function setHealthState($healthState)
176 {
177 $this->healthState = $healthState;
178 }
179 /**
180 * @return string
181 */
182 public function getHealthState()
183 {
184 return $this->healthState;
185 }
186 /**
187 * @param GoogleCloudAiplatformV1NotebookIdleShutdownConfig
188 */
189 public function setIdleShutdownConfig(GoogleCloudAiplatformV1NotebookIdleShutdownConfig $idleShutdownConfig)
190 {
191 $this->idleShutdownConfig = $idleShutdownConfig;
192 }
193 /**
194 * @return GoogleCloudAiplatformV1NotebookIdleShutdownConfig
195 */
196 public function getIdleShutdownConfig()
197 {
198 return $this->idleShutdownConfig;
199 }
200 /**
201 * @param bool
202 */
203 public function setIsUpgradable($isUpgradable)
204 {
205 $this->isUpgradable = $isUpgradable;
206 }
207 /**
208 * @return bool
209 */
210 public function getIsUpgradable()
211 {
212 return $this->isUpgradable;
213 }
214 /**
215 * @param string[]
216 */
217 public function setLabels($labels)
218 {
219 $this->labels = $labels;
220 }
221 /**
222 * @return string[]
223 */
224 public function getLabels()
225 {
226 return $this->labels;
227 }
228 /**
229 * @param string
230 */
231 public function setName($name)
232 {
233 $this->name = $name;
234 }
235 /**
236 * @return string
237 */
238 public function getName()
239 {
240 return $this->name;
241 }
242 /**
243 * @param string[]
244 */
245 public function setNetworkTags($networkTags)
246 {
247 $this->networkTags = $networkTags;
248 }
249 /**
250 * @return string[]
251 */
252 public function getNetworkTags()
253 {
254 return $this->networkTags;
255 }
256 /**
257 * @param GoogleCloudAiplatformV1NotebookRuntimeTemplateRef
258 */
259 public function setNotebookRuntimeTemplateRef(GoogleCloudAiplatformV1NotebookRuntimeTemplateRef $notebookRuntimeTemplateRef)
260 {
261 $this->notebookRuntimeTemplateRef = $notebookRuntimeTemplateRef;
262 }
263 /**
264 * @return GoogleCloudAiplatformV1NotebookRuntimeTemplateRef
265 */
266 public function getNotebookRuntimeTemplateRef()
267 {
268 return $this->notebookRuntimeTemplateRef;
269 }
270 /**
271 * @param string
272 */
273 public function setNotebookRuntimeType($notebookRuntimeType)
274 {
275 $this->notebookRuntimeType = $notebookRuntimeType;
276 }
277 /**
278 * @return string
279 */
280 public function getNotebookRuntimeType()
281 {
282 return $this->notebookRuntimeType;
283 }
284 /**
285 * @param string
286 */
287 public function setProxyUri($proxyUri)
288 {
289 $this->proxyUri = $proxyUri;
290 }
291 /**
292 * @return string
293 */
294 public function getProxyUri()
295 {
296 return $this->proxyUri;
297 }
298 /**
299 * @param string
300 */
301 public function setRuntimeState($runtimeState)
302 {
303 $this->runtimeState = $runtimeState;
304 }
305 /**
306 * @return string
307 */
308 public function getRuntimeState()
309 {
310 return $this->runtimeState;
311 }
312 /**
313 * @param string
314 */
315 public function setRuntimeUser($runtimeUser)
316 {
317 $this->runtimeUser = $runtimeUser;
318 }
319 /**
320 * @return string
321 */
322 public function getRuntimeUser()
323 {
324 return $this->runtimeUser;
325 }
326 /**
327 * @param bool
328 */
329 public function setSatisfiesPzi($satisfiesPzi)
330 {
331 $this->satisfiesPzi = $satisfiesPzi;
332 }
333 /**
334 * @return bool
335 */
336 public function getSatisfiesPzi()
337 {
338 return $this->satisfiesPzi;
339 }
340 /**
341 * @param bool
342 */
343 public function setSatisfiesPzs($satisfiesPzs)
344 {
345 $this->satisfiesPzs = $satisfiesPzs;
346 }
347 /**
348 * @return bool
349 */
350 public function getSatisfiesPzs()
351 {
352 return $this->satisfiesPzs;
353 }
354 /**
355 * @param string
356 */
357 public function setServiceAccount($serviceAccount)
358 {
359 $this->serviceAccount = $serviceAccount;
360 }
361 /**
362 * @return string
363 */
364 public function getServiceAccount()
365 {
366 return $this->serviceAccount;
367 }
368 /**
369 * @param string
370 */
371 public function setUpdateTime($updateTime)
372 {
373 $this->updateTime = $updateTime;
374 }
375 /**
376 * @return string
377 */
378 public function getUpdateTime()
379 {
380 return $this->updateTime;
381 }
382 /**
383 * @param string
384 */
385 public function setVersion($version)
386 {
387 $this->version = $version;
388 }
389 /**
390 * @return string
391 */
392 public function getVersion()
393 {
394 return $this->version;
395 }
396}
397
398// Adding a class alias for backwards compatibility with the previous class name.
399class_alias(GoogleCloudAiplatformV1NotebookRuntime::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1NotebookRuntime');
Note: See TracBrowser for help on using the repository browser.