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 |
|
---|
18 | namespace Google\Service\Aiplatform;
|
---|
19 |
|
---|
20 | class GoogleCloudAiplatformV1Schedule extends \Google\Model
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * @var bool
|
---|
24 | */
|
---|
25 | public $allowQueueing;
|
---|
26 | /**
|
---|
27 | * @var bool
|
---|
28 | */
|
---|
29 | public $catchUp;
|
---|
30 | protected $createNotebookExecutionJobRequestType = GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest::class;
|
---|
31 | protected $createNotebookExecutionJobRequestDataType = '';
|
---|
32 | protected $createPipelineJobRequestType = GoogleCloudAiplatformV1CreatePipelineJobRequest::class;
|
---|
33 | protected $createPipelineJobRequestDataType = '';
|
---|
34 | /**
|
---|
35 | * @var string
|
---|
36 | */
|
---|
37 | public $createTime;
|
---|
38 | /**
|
---|
39 | * @var string
|
---|
40 | */
|
---|
41 | public $cron;
|
---|
42 | /**
|
---|
43 | * @var string
|
---|
44 | */
|
---|
45 | public $displayName;
|
---|
46 | /**
|
---|
47 | * @var string
|
---|
48 | */
|
---|
49 | public $endTime;
|
---|
50 | /**
|
---|
51 | * @var string
|
---|
52 | */
|
---|
53 | public $lastPauseTime;
|
---|
54 | /**
|
---|
55 | * @var string
|
---|
56 | */
|
---|
57 | public $lastResumeTime;
|
---|
58 | protected $lastScheduledRunResponseType = GoogleCloudAiplatformV1ScheduleRunResponse::class;
|
---|
59 | protected $lastScheduledRunResponseDataType = '';
|
---|
60 | /**
|
---|
61 | * @var string
|
---|
62 | */
|
---|
63 | public $maxConcurrentRunCount;
|
---|
64 | /**
|
---|
65 | * @var string
|
---|
66 | */
|
---|
67 | public $maxRunCount;
|
---|
68 | /**
|
---|
69 | * @var string
|
---|
70 | */
|
---|
71 | public $name;
|
---|
72 | /**
|
---|
73 | * @var string
|
---|
74 | */
|
---|
75 | public $nextRunTime;
|
---|
76 | /**
|
---|
77 | * @var string
|
---|
78 | */
|
---|
79 | public $startTime;
|
---|
80 | /**
|
---|
81 | * @var string
|
---|
82 | */
|
---|
83 | public $startedRunCount;
|
---|
84 | /**
|
---|
85 | * @var string
|
---|
86 | */
|
---|
87 | public $state;
|
---|
88 | /**
|
---|
89 | * @var string
|
---|
90 | */
|
---|
91 | public $updateTime;
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * @param bool
|
---|
95 | */
|
---|
96 | public function setAllowQueueing($allowQueueing)
|
---|
97 | {
|
---|
98 | $this->allowQueueing = $allowQueueing;
|
---|
99 | }
|
---|
100 | /**
|
---|
101 | * @return bool
|
---|
102 | */
|
---|
103 | public function getAllowQueueing()
|
---|
104 | {
|
---|
105 | return $this->allowQueueing;
|
---|
106 | }
|
---|
107 | /**
|
---|
108 | * @param bool
|
---|
109 | */
|
---|
110 | public function setCatchUp($catchUp)
|
---|
111 | {
|
---|
112 | $this->catchUp = $catchUp;
|
---|
113 | }
|
---|
114 | /**
|
---|
115 | * @return bool
|
---|
116 | */
|
---|
117 | public function getCatchUp()
|
---|
118 | {
|
---|
119 | return $this->catchUp;
|
---|
120 | }
|
---|
121 | /**
|
---|
122 | * @param GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest
|
---|
123 | */
|
---|
124 | public function setCreateNotebookExecutionJobRequest(GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest $createNotebookExecutionJobRequest)
|
---|
125 | {
|
---|
126 | $this->createNotebookExecutionJobRequest = $createNotebookExecutionJobRequest;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @return GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest
|
---|
130 | */
|
---|
131 | public function getCreateNotebookExecutionJobRequest()
|
---|
132 | {
|
---|
133 | return $this->createNotebookExecutionJobRequest;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * @param GoogleCloudAiplatformV1CreatePipelineJobRequest
|
---|
137 | */
|
---|
138 | public function setCreatePipelineJobRequest(GoogleCloudAiplatformV1CreatePipelineJobRequest $createPipelineJobRequest)
|
---|
139 | {
|
---|
140 | $this->createPipelineJobRequest = $createPipelineJobRequest;
|
---|
141 | }
|
---|
142 | /**
|
---|
143 | * @return GoogleCloudAiplatformV1CreatePipelineJobRequest
|
---|
144 | */
|
---|
145 | public function getCreatePipelineJobRequest()
|
---|
146 | {
|
---|
147 | return $this->createPipelineJobRequest;
|
---|
148 | }
|
---|
149 | /**
|
---|
150 | * @param string
|
---|
151 | */
|
---|
152 | public function setCreateTime($createTime)
|
---|
153 | {
|
---|
154 | $this->createTime = $createTime;
|
---|
155 | }
|
---|
156 | /**
|
---|
157 | * @return string
|
---|
158 | */
|
---|
159 | public function getCreateTime()
|
---|
160 | {
|
---|
161 | return $this->createTime;
|
---|
162 | }
|
---|
163 | /**
|
---|
164 | * @param string
|
---|
165 | */
|
---|
166 | public function setCron($cron)
|
---|
167 | {
|
---|
168 | $this->cron = $cron;
|
---|
169 | }
|
---|
170 | /**
|
---|
171 | * @return string
|
---|
172 | */
|
---|
173 | public function getCron()
|
---|
174 | {
|
---|
175 | return $this->cron;
|
---|
176 | }
|
---|
177 | /**
|
---|
178 | * @param string
|
---|
179 | */
|
---|
180 | public function setDisplayName($displayName)
|
---|
181 | {
|
---|
182 | $this->displayName = $displayName;
|
---|
183 | }
|
---|
184 | /**
|
---|
185 | * @return string
|
---|
186 | */
|
---|
187 | public function getDisplayName()
|
---|
188 | {
|
---|
189 | return $this->displayName;
|
---|
190 | }
|
---|
191 | /**
|
---|
192 | * @param string
|
---|
193 | */
|
---|
194 | public function setEndTime($endTime)
|
---|
195 | {
|
---|
196 | $this->endTime = $endTime;
|
---|
197 | }
|
---|
198 | /**
|
---|
199 | * @return string
|
---|
200 | */
|
---|
201 | public function getEndTime()
|
---|
202 | {
|
---|
203 | return $this->endTime;
|
---|
204 | }
|
---|
205 | /**
|
---|
206 | * @param string
|
---|
207 | */
|
---|
208 | public function setLastPauseTime($lastPauseTime)
|
---|
209 | {
|
---|
210 | $this->lastPauseTime = $lastPauseTime;
|
---|
211 | }
|
---|
212 | /**
|
---|
213 | * @return string
|
---|
214 | */
|
---|
215 | public function getLastPauseTime()
|
---|
216 | {
|
---|
217 | return $this->lastPauseTime;
|
---|
218 | }
|
---|
219 | /**
|
---|
220 | * @param string
|
---|
221 | */
|
---|
222 | public function setLastResumeTime($lastResumeTime)
|
---|
223 | {
|
---|
224 | $this->lastResumeTime = $lastResumeTime;
|
---|
225 | }
|
---|
226 | /**
|
---|
227 | * @return string
|
---|
228 | */
|
---|
229 | public function getLastResumeTime()
|
---|
230 | {
|
---|
231 | return $this->lastResumeTime;
|
---|
232 | }
|
---|
233 | /**
|
---|
234 | * @param GoogleCloudAiplatformV1ScheduleRunResponse
|
---|
235 | */
|
---|
236 | public function setLastScheduledRunResponse(GoogleCloudAiplatformV1ScheduleRunResponse $lastScheduledRunResponse)
|
---|
237 | {
|
---|
238 | $this->lastScheduledRunResponse = $lastScheduledRunResponse;
|
---|
239 | }
|
---|
240 | /**
|
---|
241 | * @return GoogleCloudAiplatformV1ScheduleRunResponse
|
---|
242 | */
|
---|
243 | public function getLastScheduledRunResponse()
|
---|
244 | {
|
---|
245 | return $this->lastScheduledRunResponse;
|
---|
246 | }
|
---|
247 | /**
|
---|
248 | * @param string
|
---|
249 | */
|
---|
250 | public function setMaxConcurrentRunCount($maxConcurrentRunCount)
|
---|
251 | {
|
---|
252 | $this->maxConcurrentRunCount = $maxConcurrentRunCount;
|
---|
253 | }
|
---|
254 | /**
|
---|
255 | * @return string
|
---|
256 | */
|
---|
257 | public function getMaxConcurrentRunCount()
|
---|
258 | {
|
---|
259 | return $this->maxConcurrentRunCount;
|
---|
260 | }
|
---|
261 | /**
|
---|
262 | * @param string
|
---|
263 | */
|
---|
264 | public function setMaxRunCount($maxRunCount)
|
---|
265 | {
|
---|
266 | $this->maxRunCount = $maxRunCount;
|
---|
267 | }
|
---|
268 | /**
|
---|
269 | * @return string
|
---|
270 | */
|
---|
271 | public function getMaxRunCount()
|
---|
272 | {
|
---|
273 | return $this->maxRunCount;
|
---|
274 | }
|
---|
275 | /**
|
---|
276 | * @param string
|
---|
277 | */
|
---|
278 | public function setName($name)
|
---|
279 | {
|
---|
280 | $this->name = $name;
|
---|
281 | }
|
---|
282 | /**
|
---|
283 | * @return string
|
---|
284 | */
|
---|
285 | public function getName()
|
---|
286 | {
|
---|
287 | return $this->name;
|
---|
288 | }
|
---|
289 | /**
|
---|
290 | * @param string
|
---|
291 | */
|
---|
292 | public function setNextRunTime($nextRunTime)
|
---|
293 | {
|
---|
294 | $this->nextRunTime = $nextRunTime;
|
---|
295 | }
|
---|
296 | /**
|
---|
297 | * @return string
|
---|
298 | */
|
---|
299 | public function getNextRunTime()
|
---|
300 | {
|
---|
301 | return $this->nextRunTime;
|
---|
302 | }
|
---|
303 | /**
|
---|
304 | * @param string
|
---|
305 | */
|
---|
306 | public function setStartTime($startTime)
|
---|
307 | {
|
---|
308 | $this->startTime = $startTime;
|
---|
309 | }
|
---|
310 | /**
|
---|
311 | * @return string
|
---|
312 | */
|
---|
313 | public function getStartTime()
|
---|
314 | {
|
---|
315 | return $this->startTime;
|
---|
316 | }
|
---|
317 | /**
|
---|
318 | * @param string
|
---|
319 | */
|
---|
320 | public function setStartedRunCount($startedRunCount)
|
---|
321 | {
|
---|
322 | $this->startedRunCount = $startedRunCount;
|
---|
323 | }
|
---|
324 | /**
|
---|
325 | * @return string
|
---|
326 | */
|
---|
327 | public function getStartedRunCount()
|
---|
328 | {
|
---|
329 | return $this->startedRunCount;
|
---|
330 | }
|
---|
331 | /**
|
---|
332 | * @param string
|
---|
333 | */
|
---|
334 | public function setState($state)
|
---|
335 | {
|
---|
336 | $this->state = $state;
|
---|
337 | }
|
---|
338 | /**
|
---|
339 | * @return string
|
---|
340 | */
|
---|
341 | public function getState()
|
---|
342 | {
|
---|
343 | return $this->state;
|
---|
344 | }
|
---|
345 | /**
|
---|
346 | * @param string
|
---|
347 | */
|
---|
348 | public function setUpdateTime($updateTime)
|
---|
349 | {
|
---|
350 | $this->updateTime = $updateTime;
|
---|
351 | }
|
---|
352 | /**
|
---|
353 | * @return string
|
---|
354 | */
|
---|
355 | public function getUpdateTime()
|
---|
356 | {
|
---|
357 | return $this->updateTime;
|
---|
358 | }
|
---|
359 | }
|
---|
360 |
|
---|
361 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
362 | class_alias(GoogleCloudAiplatformV1Schedule::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1Schedule');
|
---|