source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1TrainingPipeline.php

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

Upload project files

  • Property mode set to 100644
File size: 6.1 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 GoogleCloudAiplatformV1TrainingPipeline extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $createTime;
26 /**
27 * @var string
28 */
29 public $displayName;
30 protected $encryptionSpecType = GoogleCloudAiplatformV1EncryptionSpec::class;
31 protected $encryptionSpecDataType = '';
32 /**
33 * @var string
34 */
35 public $endTime;
36 protected $errorType = GoogleRpcStatus::class;
37 protected $errorDataType = '';
38 protected $inputDataConfigType = GoogleCloudAiplatformV1InputDataConfig::class;
39 protected $inputDataConfigDataType = '';
40 /**
41 * @var string[]
42 */
43 public $labels;
44 /**
45 * @var string
46 */
47 public $modelId;
48 protected $modelToUploadType = GoogleCloudAiplatformV1Model::class;
49 protected $modelToUploadDataType = '';
50 /**
51 * @var string
52 */
53 public $name;
54 /**
55 * @var string
56 */
57 public $parentModel;
58 /**
59 * @var string
60 */
61 public $startTime;
62 /**
63 * @var string
64 */
65 public $state;
66 /**
67 * @var string
68 */
69 public $trainingTaskDefinition;
70 /**
71 * @var array
72 */
73 public $trainingTaskInputs;
74 /**
75 * @var array
76 */
77 public $trainingTaskMetadata;
78 /**
79 * @var string
80 */
81 public $updateTime;
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 setDisplayName($displayName)
101 {
102 $this->displayName = $displayName;
103 }
104 /**
105 * @return string
106 */
107 public function getDisplayName()
108 {
109 return $this->displayName;
110 }
111 /**
112 * @param GoogleCloudAiplatformV1EncryptionSpec
113 */
114 public function setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec $encryptionSpec)
115 {
116 $this->encryptionSpec = $encryptionSpec;
117 }
118 /**
119 * @return GoogleCloudAiplatformV1EncryptionSpec
120 */
121 public function getEncryptionSpec()
122 {
123 return $this->encryptionSpec;
124 }
125 /**
126 * @param string
127 */
128 public function setEndTime($endTime)
129 {
130 $this->endTime = $endTime;
131 }
132 /**
133 * @return string
134 */
135 public function getEndTime()
136 {
137 return $this->endTime;
138 }
139 /**
140 * @param GoogleRpcStatus
141 */
142 public function setError(GoogleRpcStatus $error)
143 {
144 $this->error = $error;
145 }
146 /**
147 * @return GoogleRpcStatus
148 */
149 public function getError()
150 {
151 return $this->error;
152 }
153 /**
154 * @param GoogleCloudAiplatformV1InputDataConfig
155 */
156 public function setInputDataConfig(GoogleCloudAiplatformV1InputDataConfig $inputDataConfig)
157 {
158 $this->inputDataConfig = $inputDataConfig;
159 }
160 /**
161 * @return GoogleCloudAiplatformV1InputDataConfig
162 */
163 public function getInputDataConfig()
164 {
165 return $this->inputDataConfig;
166 }
167 /**
168 * @param string[]
169 */
170 public function setLabels($labels)
171 {
172 $this->labels = $labels;
173 }
174 /**
175 * @return string[]
176 */
177 public function getLabels()
178 {
179 return $this->labels;
180 }
181 /**
182 * @param string
183 */
184 public function setModelId($modelId)
185 {
186 $this->modelId = $modelId;
187 }
188 /**
189 * @return string
190 */
191 public function getModelId()
192 {
193 return $this->modelId;
194 }
195 /**
196 * @param GoogleCloudAiplatformV1Model
197 */
198 public function setModelToUpload(GoogleCloudAiplatformV1Model $modelToUpload)
199 {
200 $this->modelToUpload = $modelToUpload;
201 }
202 /**
203 * @return GoogleCloudAiplatformV1Model
204 */
205 public function getModelToUpload()
206 {
207 return $this->modelToUpload;
208 }
209 /**
210 * @param string
211 */
212 public function setName($name)
213 {
214 $this->name = $name;
215 }
216 /**
217 * @return string
218 */
219 public function getName()
220 {
221 return $this->name;
222 }
223 /**
224 * @param string
225 */
226 public function setParentModel($parentModel)
227 {
228 $this->parentModel = $parentModel;
229 }
230 /**
231 * @return string
232 */
233 public function getParentModel()
234 {
235 return $this->parentModel;
236 }
237 /**
238 * @param string
239 */
240 public function setStartTime($startTime)
241 {
242 $this->startTime = $startTime;
243 }
244 /**
245 * @return string
246 */
247 public function getStartTime()
248 {
249 return $this->startTime;
250 }
251 /**
252 * @param string
253 */
254 public function setState($state)
255 {
256 $this->state = $state;
257 }
258 /**
259 * @return string
260 */
261 public function getState()
262 {
263 return $this->state;
264 }
265 /**
266 * @param string
267 */
268 public function setTrainingTaskDefinition($trainingTaskDefinition)
269 {
270 $this->trainingTaskDefinition = $trainingTaskDefinition;
271 }
272 /**
273 * @return string
274 */
275 public function getTrainingTaskDefinition()
276 {
277 return $this->trainingTaskDefinition;
278 }
279 /**
280 * @param array
281 */
282 public function setTrainingTaskInputs($trainingTaskInputs)
283 {
284 $this->trainingTaskInputs = $trainingTaskInputs;
285 }
286 /**
287 * @return array
288 */
289 public function getTrainingTaskInputs()
290 {
291 return $this->trainingTaskInputs;
292 }
293 /**
294 * @param array
295 */
296 public function setTrainingTaskMetadata($trainingTaskMetadata)
297 {
298 $this->trainingTaskMetadata = $trainingTaskMetadata;
299 }
300 /**
301 * @return array
302 */
303 public function getTrainingTaskMetadata()
304 {
305 return $this->trainingTaskMetadata;
306 }
307 /**
308 * @param string
309 */
310 public function setUpdateTime($updateTime)
311 {
312 $this->updateTime = $updateTime;
313 }
314 /**
315 * @return string
316 */
317 public function getUpdateTime()
318 {
319 return $this->updateTime;
320 }
321}
322
323// Adding a class alias for backwards compatibility with the previous class name.
324class_alias(GoogleCloudAiplatformV1TrainingPipeline::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1TrainingPipeline');
Note: See TracBrowser for help on using the repository browser.