source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1PersistentResource.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: 6.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\Aiplatform;
19
20class GoogleCloudAiplatformV1PersistentResource extends \Google\Collection
21{
22 protected $collection_key = 'resourcePools';
23 /**
24 * @var string
25 */
26 public $createTime;
27 /**
28 * @var string
29 */
30 public $displayName;
31 protected $encryptionSpecType = GoogleCloudAiplatformV1EncryptionSpec::class;
32 protected $encryptionSpecDataType = '';
33 protected $errorType = GoogleRpcStatus::class;
34 protected $errorDataType = '';
35 /**
36 * @var string[]
37 */
38 public $labels;
39 /**
40 * @var string
41 */
42 public $name;
43 /**
44 * @var string
45 */
46 public $network;
47 /**
48 * @var string[]
49 */
50 public $reservedIpRanges;
51 protected $resourcePoolsType = GoogleCloudAiplatformV1ResourcePool::class;
52 protected $resourcePoolsDataType = 'array';
53 protected $resourceRuntimeType = GoogleCloudAiplatformV1ResourceRuntime::class;
54 protected $resourceRuntimeDataType = '';
55 protected $resourceRuntimeSpecType = GoogleCloudAiplatformV1ResourceRuntimeSpec::class;
56 protected $resourceRuntimeSpecDataType = '';
57 /**
58 * @var bool
59 */
60 public $satisfiesPzi;
61 /**
62 * @var bool
63 */
64 public $satisfiesPzs;
65 /**
66 * @var string
67 */
68 public $startTime;
69 /**
70 * @var string
71 */
72 public $state;
73 /**
74 * @var string
75 */
76 public $updateTime;
77
78 /**
79 * @param string
80 */
81 public function setCreateTime($createTime)
82 {
83 $this->createTime = $createTime;
84 }
85 /**
86 * @return string
87 */
88 public function getCreateTime()
89 {
90 return $this->createTime;
91 }
92 /**
93 * @param string
94 */
95 public function setDisplayName($displayName)
96 {
97 $this->displayName = $displayName;
98 }
99 /**
100 * @return string
101 */
102 public function getDisplayName()
103 {
104 return $this->displayName;
105 }
106 /**
107 * @param GoogleCloudAiplatformV1EncryptionSpec
108 */
109 public function setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec $encryptionSpec)
110 {
111 $this->encryptionSpec = $encryptionSpec;
112 }
113 /**
114 * @return GoogleCloudAiplatformV1EncryptionSpec
115 */
116 public function getEncryptionSpec()
117 {
118 return $this->encryptionSpec;
119 }
120 /**
121 * @param GoogleRpcStatus
122 */
123 public function setError(GoogleRpcStatus $error)
124 {
125 $this->error = $error;
126 }
127 /**
128 * @return GoogleRpcStatus
129 */
130 public function getError()
131 {
132 return $this->error;
133 }
134 /**
135 * @param string[]
136 */
137 public function setLabels($labels)
138 {
139 $this->labels = $labels;
140 }
141 /**
142 * @return string[]
143 */
144 public function getLabels()
145 {
146 return $this->labels;
147 }
148 /**
149 * @param string
150 */
151 public function setName($name)
152 {
153 $this->name = $name;
154 }
155 /**
156 * @return string
157 */
158 public function getName()
159 {
160 return $this->name;
161 }
162 /**
163 * @param string
164 */
165 public function setNetwork($network)
166 {
167 $this->network = $network;
168 }
169 /**
170 * @return string
171 */
172 public function getNetwork()
173 {
174 return $this->network;
175 }
176 /**
177 * @param string[]
178 */
179 public function setReservedIpRanges($reservedIpRanges)
180 {
181 $this->reservedIpRanges = $reservedIpRanges;
182 }
183 /**
184 * @return string[]
185 */
186 public function getReservedIpRanges()
187 {
188 return $this->reservedIpRanges;
189 }
190 /**
191 * @param GoogleCloudAiplatformV1ResourcePool[]
192 */
193 public function setResourcePools($resourcePools)
194 {
195 $this->resourcePools = $resourcePools;
196 }
197 /**
198 * @return GoogleCloudAiplatformV1ResourcePool[]
199 */
200 public function getResourcePools()
201 {
202 return $this->resourcePools;
203 }
204 /**
205 * @param GoogleCloudAiplatformV1ResourceRuntime
206 */
207 public function setResourceRuntime(GoogleCloudAiplatformV1ResourceRuntime $resourceRuntime)
208 {
209 $this->resourceRuntime = $resourceRuntime;
210 }
211 /**
212 * @return GoogleCloudAiplatformV1ResourceRuntime
213 */
214 public function getResourceRuntime()
215 {
216 return $this->resourceRuntime;
217 }
218 /**
219 * @param GoogleCloudAiplatformV1ResourceRuntimeSpec
220 */
221 public function setResourceRuntimeSpec(GoogleCloudAiplatformV1ResourceRuntimeSpec $resourceRuntimeSpec)
222 {
223 $this->resourceRuntimeSpec = $resourceRuntimeSpec;
224 }
225 /**
226 * @return GoogleCloudAiplatformV1ResourceRuntimeSpec
227 */
228 public function getResourceRuntimeSpec()
229 {
230 return $this->resourceRuntimeSpec;
231 }
232 /**
233 * @param bool
234 */
235 public function setSatisfiesPzi($satisfiesPzi)
236 {
237 $this->satisfiesPzi = $satisfiesPzi;
238 }
239 /**
240 * @return bool
241 */
242 public function getSatisfiesPzi()
243 {
244 return $this->satisfiesPzi;
245 }
246 /**
247 * @param bool
248 */
249 public function setSatisfiesPzs($satisfiesPzs)
250 {
251 $this->satisfiesPzs = $satisfiesPzs;
252 }
253 /**
254 * @return bool
255 */
256 public function getSatisfiesPzs()
257 {
258 return $this->satisfiesPzs;
259 }
260 /**
261 * @param string
262 */
263 public function setStartTime($startTime)
264 {
265 $this->startTime = $startTime;
266 }
267 /**
268 * @return string
269 */
270 public function getStartTime()
271 {
272 return $this->startTime;
273 }
274 /**
275 * @param string
276 */
277 public function setState($state)
278 {
279 $this->state = $state;
280 }
281 /**
282 * @return string
283 */
284 public function getState()
285 {
286 return $this->state;
287 }
288 /**
289 * @param string
290 */
291 public function setUpdateTime($updateTime)
292 {
293 $this->updateTime = $updateTime;
294 }
295 /**
296 * @return string
297 */
298 public function getUpdateTime()
299 {
300 return $this->updateTime;
301 }
302}
303
304// Adding a class alias for backwards compatibility with the previous class name.
305class_alias(GoogleCloudAiplatformV1PersistentResource::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1PersistentResource');
Note: See TracBrowser for help on using the repository browser.