source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1CustomJob.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: 4.9 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 GoogleCloudAiplatformV1CustomJob 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 $jobSpecType = GoogleCloudAiplatformV1CustomJobSpec::class;
39 protected $jobSpecDataType = '';
40 /**
41 * @var string[]
42 */
43 public $labels;
44 /**
45 * @var string
46 */
47 public $name;
48 /**
49 * @var bool
50 */
51 public $satisfiesPzi;
52 /**
53 * @var bool
54 */
55 public $satisfiesPzs;
56 /**
57 * @var string
58 */
59 public $startTime;
60 /**
61 * @var string
62 */
63 public $state;
64 /**
65 * @var string
66 */
67 public $updateTime;
68 /**
69 * @var string[]
70 */
71 public $webAccessUris;
72
73 /**
74 * @param string
75 */
76 public function setCreateTime($createTime)
77 {
78 $this->createTime = $createTime;
79 }
80 /**
81 * @return string
82 */
83 public function getCreateTime()
84 {
85 return $this->createTime;
86 }
87 /**
88 * @param string
89 */
90 public function setDisplayName($displayName)
91 {
92 $this->displayName = $displayName;
93 }
94 /**
95 * @return string
96 */
97 public function getDisplayName()
98 {
99 return $this->displayName;
100 }
101 /**
102 * @param GoogleCloudAiplatformV1EncryptionSpec
103 */
104 public function setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec $encryptionSpec)
105 {
106 $this->encryptionSpec = $encryptionSpec;
107 }
108 /**
109 * @return GoogleCloudAiplatformV1EncryptionSpec
110 */
111 public function getEncryptionSpec()
112 {
113 return $this->encryptionSpec;
114 }
115 /**
116 * @param string
117 */
118 public function setEndTime($endTime)
119 {
120 $this->endTime = $endTime;
121 }
122 /**
123 * @return string
124 */
125 public function getEndTime()
126 {
127 return $this->endTime;
128 }
129 /**
130 * @param GoogleRpcStatus
131 */
132 public function setError(GoogleRpcStatus $error)
133 {
134 $this->error = $error;
135 }
136 /**
137 * @return GoogleRpcStatus
138 */
139 public function getError()
140 {
141 return $this->error;
142 }
143 /**
144 * @param GoogleCloudAiplatformV1CustomJobSpec
145 */
146 public function setJobSpec(GoogleCloudAiplatformV1CustomJobSpec $jobSpec)
147 {
148 $this->jobSpec = $jobSpec;
149 }
150 /**
151 * @return GoogleCloudAiplatformV1CustomJobSpec
152 */
153 public function getJobSpec()
154 {
155 return $this->jobSpec;
156 }
157 /**
158 * @param string[]
159 */
160 public function setLabels($labels)
161 {
162 $this->labels = $labels;
163 }
164 /**
165 * @return string[]
166 */
167 public function getLabels()
168 {
169 return $this->labels;
170 }
171 /**
172 * @param string
173 */
174 public function setName($name)
175 {
176 $this->name = $name;
177 }
178 /**
179 * @return string
180 */
181 public function getName()
182 {
183 return $this->name;
184 }
185 /**
186 * @param bool
187 */
188 public function setSatisfiesPzi($satisfiesPzi)
189 {
190 $this->satisfiesPzi = $satisfiesPzi;
191 }
192 /**
193 * @return bool
194 */
195 public function getSatisfiesPzi()
196 {
197 return $this->satisfiesPzi;
198 }
199 /**
200 * @param bool
201 */
202 public function setSatisfiesPzs($satisfiesPzs)
203 {
204 $this->satisfiesPzs = $satisfiesPzs;
205 }
206 /**
207 * @return bool
208 */
209 public function getSatisfiesPzs()
210 {
211 return $this->satisfiesPzs;
212 }
213 /**
214 * @param string
215 */
216 public function setStartTime($startTime)
217 {
218 $this->startTime = $startTime;
219 }
220 /**
221 * @return string
222 */
223 public function getStartTime()
224 {
225 return $this->startTime;
226 }
227 /**
228 * @param string
229 */
230 public function setState($state)
231 {
232 $this->state = $state;
233 }
234 /**
235 * @return string
236 */
237 public function getState()
238 {
239 return $this->state;
240 }
241 /**
242 * @param string
243 */
244 public function setUpdateTime($updateTime)
245 {
246 $this->updateTime = $updateTime;
247 }
248 /**
249 * @return string
250 */
251 public function getUpdateTime()
252 {
253 return $this->updateTime;
254 }
255 /**
256 * @param string[]
257 */
258 public function setWebAccessUris($webAccessUris)
259 {
260 $this->webAccessUris = $webAccessUris;
261 }
262 /**
263 * @return string[]
264 */
265 public function getWebAccessUris()
266 {
267 return $this->webAccessUris;
268 }
269}
270
271// Adding a class alias for backwards compatibility with the previous class name.
272class_alias(GoogleCloudAiplatformV1CustomJob::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1CustomJob');
Note: See TracBrowser for help on using the repository browser.