source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1DeployedModel.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: 7.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 GoogleCloudAiplatformV1DeployedModel extends \Google\Model
21{
22 protected $automaticResourcesType = GoogleCloudAiplatformV1AutomaticResources::class;
23 protected $automaticResourcesDataType = '';
24 /**
25 * @var string
26 */
27 public $createTime;
28 protected $dedicatedResourcesType = GoogleCloudAiplatformV1DedicatedResources::class;
29 protected $dedicatedResourcesDataType = '';
30 /**
31 * @var bool
32 */
33 public $disableContainerLogging;
34 /**
35 * @var bool
36 */
37 public $disableExplanations;
38 /**
39 * @var string
40 */
41 public $displayName;
42 /**
43 * @var bool
44 */
45 public $enableAccessLogging;
46 protected $explanationSpecType = GoogleCloudAiplatformV1ExplanationSpec::class;
47 protected $explanationSpecDataType = '';
48 protected $fasterDeploymentConfigType = GoogleCloudAiplatformV1FasterDeploymentConfig::class;
49 protected $fasterDeploymentConfigDataType = '';
50 /**
51 * @var string
52 */
53 public $id;
54 /**
55 * @var string
56 */
57 public $model;
58 /**
59 * @var string
60 */
61 public $modelVersionId;
62 protected $privateEndpointsType = GoogleCloudAiplatformV1PrivateEndpoints::class;
63 protected $privateEndpointsDataType = '';
64 /**
65 * @var string
66 */
67 public $serviceAccount;
68 /**
69 * @var string
70 */
71 public $sharedResources;
72 protected $statusType = GoogleCloudAiplatformV1DeployedModelStatus::class;
73 protected $statusDataType = '';
74 /**
75 * @var string[]
76 */
77 public $systemLabels;
78
79 /**
80 * @param GoogleCloudAiplatformV1AutomaticResources
81 */
82 public function setAutomaticResources(GoogleCloudAiplatformV1AutomaticResources $automaticResources)
83 {
84 $this->automaticResources = $automaticResources;
85 }
86 /**
87 * @return GoogleCloudAiplatformV1AutomaticResources
88 */
89 public function getAutomaticResources()
90 {
91 return $this->automaticResources;
92 }
93 /**
94 * @param string
95 */
96 public function setCreateTime($createTime)
97 {
98 $this->createTime = $createTime;
99 }
100 /**
101 * @return string
102 */
103 public function getCreateTime()
104 {
105 return $this->createTime;
106 }
107 /**
108 * @param GoogleCloudAiplatformV1DedicatedResources
109 */
110 public function setDedicatedResources(GoogleCloudAiplatformV1DedicatedResources $dedicatedResources)
111 {
112 $this->dedicatedResources = $dedicatedResources;
113 }
114 /**
115 * @return GoogleCloudAiplatformV1DedicatedResources
116 */
117 public function getDedicatedResources()
118 {
119 return $this->dedicatedResources;
120 }
121 /**
122 * @param bool
123 */
124 public function setDisableContainerLogging($disableContainerLogging)
125 {
126 $this->disableContainerLogging = $disableContainerLogging;
127 }
128 /**
129 * @return bool
130 */
131 public function getDisableContainerLogging()
132 {
133 return $this->disableContainerLogging;
134 }
135 /**
136 * @param bool
137 */
138 public function setDisableExplanations($disableExplanations)
139 {
140 $this->disableExplanations = $disableExplanations;
141 }
142 /**
143 * @return bool
144 */
145 public function getDisableExplanations()
146 {
147 return $this->disableExplanations;
148 }
149 /**
150 * @param string
151 */
152 public function setDisplayName($displayName)
153 {
154 $this->displayName = $displayName;
155 }
156 /**
157 * @return string
158 */
159 public function getDisplayName()
160 {
161 return $this->displayName;
162 }
163 /**
164 * @param bool
165 */
166 public function setEnableAccessLogging($enableAccessLogging)
167 {
168 $this->enableAccessLogging = $enableAccessLogging;
169 }
170 /**
171 * @return bool
172 */
173 public function getEnableAccessLogging()
174 {
175 return $this->enableAccessLogging;
176 }
177 /**
178 * @param GoogleCloudAiplatformV1ExplanationSpec
179 */
180 public function setExplanationSpec(GoogleCloudAiplatformV1ExplanationSpec $explanationSpec)
181 {
182 $this->explanationSpec = $explanationSpec;
183 }
184 /**
185 * @return GoogleCloudAiplatformV1ExplanationSpec
186 */
187 public function getExplanationSpec()
188 {
189 return $this->explanationSpec;
190 }
191 /**
192 * @param GoogleCloudAiplatformV1FasterDeploymentConfig
193 */
194 public function setFasterDeploymentConfig(GoogleCloudAiplatformV1FasterDeploymentConfig $fasterDeploymentConfig)
195 {
196 $this->fasterDeploymentConfig = $fasterDeploymentConfig;
197 }
198 /**
199 * @return GoogleCloudAiplatformV1FasterDeploymentConfig
200 */
201 public function getFasterDeploymentConfig()
202 {
203 return $this->fasterDeploymentConfig;
204 }
205 /**
206 * @param string
207 */
208 public function setId($id)
209 {
210 $this->id = $id;
211 }
212 /**
213 * @return string
214 */
215 public function getId()
216 {
217 return $this->id;
218 }
219 /**
220 * @param string
221 */
222 public function setModel($model)
223 {
224 $this->model = $model;
225 }
226 /**
227 * @return string
228 */
229 public function getModel()
230 {
231 return $this->model;
232 }
233 /**
234 * @param string
235 */
236 public function setModelVersionId($modelVersionId)
237 {
238 $this->modelVersionId = $modelVersionId;
239 }
240 /**
241 * @return string
242 */
243 public function getModelVersionId()
244 {
245 return $this->modelVersionId;
246 }
247 /**
248 * @param GoogleCloudAiplatformV1PrivateEndpoints
249 */
250 public function setPrivateEndpoints(GoogleCloudAiplatformV1PrivateEndpoints $privateEndpoints)
251 {
252 $this->privateEndpoints = $privateEndpoints;
253 }
254 /**
255 * @return GoogleCloudAiplatformV1PrivateEndpoints
256 */
257 public function getPrivateEndpoints()
258 {
259 return $this->privateEndpoints;
260 }
261 /**
262 * @param string
263 */
264 public function setServiceAccount($serviceAccount)
265 {
266 $this->serviceAccount = $serviceAccount;
267 }
268 /**
269 * @return string
270 */
271 public function getServiceAccount()
272 {
273 return $this->serviceAccount;
274 }
275 /**
276 * @param string
277 */
278 public function setSharedResources($sharedResources)
279 {
280 $this->sharedResources = $sharedResources;
281 }
282 /**
283 * @return string
284 */
285 public function getSharedResources()
286 {
287 return $this->sharedResources;
288 }
289 /**
290 * @param GoogleCloudAiplatformV1DeployedModelStatus
291 */
292 public function setStatus(GoogleCloudAiplatformV1DeployedModelStatus $status)
293 {
294 $this->status = $status;
295 }
296 /**
297 * @return GoogleCloudAiplatformV1DeployedModelStatus
298 */
299 public function getStatus()
300 {
301 return $this->status;
302 }
303 /**
304 * @param string[]
305 */
306 public function setSystemLabels($systemLabels)
307 {
308 $this->systemLabels = $systemLabels;
309 }
310 /**
311 * @return string[]
312 */
313 public function getSystemLabels()
314 {
315 return $this->systemLabels;
316 }
317}
318
319// Adding a class alias for backwards compatibility with the previous class name.
320class_alias(GoogleCloudAiplatformV1DeployedModel::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1DeployedModel');
Note: See TracBrowser for help on using the repository browser.