source: vendor/google/apiclient-services/src/CloudRun/GoogleCloudRunV2Task.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 9.7 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\CloudRun;
19
20class GoogleCloudRunV2Task extends \Google\Collection
21{
22 protected $collection_key = 'volumes';
23 /**
24 * @var string[]
25 */
26 public $annotations;
27 /**
28 * @var string
29 */
30 public $completionTime;
31 protected $conditionsType = GoogleCloudRunV2Condition::class;
32 protected $conditionsDataType = 'array';
33 protected $containersType = GoogleCloudRunV2Container::class;
34 protected $containersDataType = 'array';
35 /**
36 * @var string
37 */
38 public $createTime;
39 /**
40 * @var string
41 */
42 public $deleteTime;
43 /**
44 * @var string
45 */
46 public $encryptionKey;
47 /**
48 * @var string
49 */
50 public $etag;
51 /**
52 * @var string
53 */
54 public $execution;
55 /**
56 * @var string
57 */
58 public $executionEnvironment;
59 /**
60 * @var string
61 */
62 public $expireTime;
63 /**
64 * @var string
65 */
66 public $generation;
67 /**
68 * @var int
69 */
70 public $index;
71 /**
72 * @var string
73 */
74 public $job;
75 /**
76 * @var string[]
77 */
78 public $labels;
79 protected $lastAttemptResultType = GoogleCloudRunV2TaskAttemptResult::class;
80 protected $lastAttemptResultDataType = '';
81 /**
82 * @var string
83 */
84 public $logUri;
85 /**
86 * @var int
87 */
88 public $maxRetries;
89 /**
90 * @var string
91 */
92 public $name;
93 /**
94 * @var string
95 */
96 public $observedGeneration;
97 /**
98 * @var bool
99 */
100 public $reconciling;
101 /**
102 * @var int
103 */
104 public $retried;
105 /**
106 * @var bool
107 */
108 public $satisfiesPzs;
109 /**
110 * @var string
111 */
112 public $scheduledTime;
113 /**
114 * @var string
115 */
116 public $serviceAccount;
117 /**
118 * @var string
119 */
120 public $startTime;
121 /**
122 * @var string
123 */
124 public $timeout;
125 /**
126 * @var string
127 */
128 public $uid;
129 /**
130 * @var string
131 */
132 public $updateTime;
133 protected $volumesType = GoogleCloudRunV2Volume::class;
134 protected $volumesDataType = 'array';
135 protected $vpcAccessType = GoogleCloudRunV2VpcAccess::class;
136 protected $vpcAccessDataType = '';
137
138 /**
139 * @param string[]
140 */
141 public function setAnnotations($annotations)
142 {
143 $this->annotations = $annotations;
144 }
145 /**
146 * @return string[]
147 */
148 public function getAnnotations()
149 {
150 return $this->annotations;
151 }
152 /**
153 * @param string
154 */
155 public function setCompletionTime($completionTime)
156 {
157 $this->completionTime = $completionTime;
158 }
159 /**
160 * @return string
161 */
162 public function getCompletionTime()
163 {
164 return $this->completionTime;
165 }
166 /**
167 * @param GoogleCloudRunV2Condition[]
168 */
169 public function setConditions($conditions)
170 {
171 $this->conditions = $conditions;
172 }
173 /**
174 * @return GoogleCloudRunV2Condition[]
175 */
176 public function getConditions()
177 {
178 return $this->conditions;
179 }
180 /**
181 * @param GoogleCloudRunV2Container[]
182 */
183 public function setContainers($containers)
184 {
185 $this->containers = $containers;
186 }
187 /**
188 * @return GoogleCloudRunV2Container[]
189 */
190 public function getContainers()
191 {
192 return $this->containers;
193 }
194 /**
195 * @param string
196 */
197 public function setCreateTime($createTime)
198 {
199 $this->createTime = $createTime;
200 }
201 /**
202 * @return string
203 */
204 public function getCreateTime()
205 {
206 return $this->createTime;
207 }
208 /**
209 * @param string
210 */
211 public function setDeleteTime($deleteTime)
212 {
213 $this->deleteTime = $deleteTime;
214 }
215 /**
216 * @return string
217 */
218 public function getDeleteTime()
219 {
220 return $this->deleteTime;
221 }
222 /**
223 * @param string
224 */
225 public function setEncryptionKey($encryptionKey)
226 {
227 $this->encryptionKey = $encryptionKey;
228 }
229 /**
230 * @return string
231 */
232 public function getEncryptionKey()
233 {
234 return $this->encryptionKey;
235 }
236 /**
237 * @param string
238 */
239 public function setEtag($etag)
240 {
241 $this->etag = $etag;
242 }
243 /**
244 * @return string
245 */
246 public function getEtag()
247 {
248 return $this->etag;
249 }
250 /**
251 * @param string
252 */
253 public function setExecution($execution)
254 {
255 $this->execution = $execution;
256 }
257 /**
258 * @return string
259 */
260 public function getExecution()
261 {
262 return $this->execution;
263 }
264 /**
265 * @param string
266 */
267 public function setExecutionEnvironment($executionEnvironment)
268 {
269 $this->executionEnvironment = $executionEnvironment;
270 }
271 /**
272 * @return string
273 */
274 public function getExecutionEnvironment()
275 {
276 return $this->executionEnvironment;
277 }
278 /**
279 * @param string
280 */
281 public function setExpireTime($expireTime)
282 {
283 $this->expireTime = $expireTime;
284 }
285 /**
286 * @return string
287 */
288 public function getExpireTime()
289 {
290 return $this->expireTime;
291 }
292 /**
293 * @param string
294 */
295 public function setGeneration($generation)
296 {
297 $this->generation = $generation;
298 }
299 /**
300 * @return string
301 */
302 public function getGeneration()
303 {
304 return $this->generation;
305 }
306 /**
307 * @param int
308 */
309 public function setIndex($index)
310 {
311 $this->index = $index;
312 }
313 /**
314 * @return int
315 */
316 public function getIndex()
317 {
318 return $this->index;
319 }
320 /**
321 * @param string
322 */
323 public function setJob($job)
324 {
325 $this->job = $job;
326 }
327 /**
328 * @return string
329 */
330 public function getJob()
331 {
332 return $this->job;
333 }
334 /**
335 * @param string[]
336 */
337 public function setLabels($labels)
338 {
339 $this->labels = $labels;
340 }
341 /**
342 * @return string[]
343 */
344 public function getLabels()
345 {
346 return $this->labels;
347 }
348 /**
349 * @param GoogleCloudRunV2TaskAttemptResult
350 */
351 public function setLastAttemptResult(GoogleCloudRunV2TaskAttemptResult $lastAttemptResult)
352 {
353 $this->lastAttemptResult = $lastAttemptResult;
354 }
355 /**
356 * @return GoogleCloudRunV2TaskAttemptResult
357 */
358 public function getLastAttemptResult()
359 {
360 return $this->lastAttemptResult;
361 }
362 /**
363 * @param string
364 */
365 public function setLogUri($logUri)
366 {
367 $this->logUri = $logUri;
368 }
369 /**
370 * @return string
371 */
372 public function getLogUri()
373 {
374 return $this->logUri;
375 }
376 /**
377 * @param int
378 */
379 public function setMaxRetries($maxRetries)
380 {
381 $this->maxRetries = $maxRetries;
382 }
383 /**
384 * @return int
385 */
386 public function getMaxRetries()
387 {
388 return $this->maxRetries;
389 }
390 /**
391 * @param string
392 */
393 public function setName($name)
394 {
395 $this->name = $name;
396 }
397 /**
398 * @return string
399 */
400 public function getName()
401 {
402 return $this->name;
403 }
404 /**
405 * @param string
406 */
407 public function setObservedGeneration($observedGeneration)
408 {
409 $this->observedGeneration = $observedGeneration;
410 }
411 /**
412 * @return string
413 */
414 public function getObservedGeneration()
415 {
416 return $this->observedGeneration;
417 }
418 /**
419 * @param bool
420 */
421 public function setReconciling($reconciling)
422 {
423 $this->reconciling = $reconciling;
424 }
425 /**
426 * @return bool
427 */
428 public function getReconciling()
429 {
430 return $this->reconciling;
431 }
432 /**
433 * @param int
434 */
435 public function setRetried($retried)
436 {
437 $this->retried = $retried;
438 }
439 /**
440 * @return int
441 */
442 public function getRetried()
443 {
444 return $this->retried;
445 }
446 /**
447 * @param bool
448 */
449 public function setSatisfiesPzs($satisfiesPzs)
450 {
451 $this->satisfiesPzs = $satisfiesPzs;
452 }
453 /**
454 * @return bool
455 */
456 public function getSatisfiesPzs()
457 {
458 return $this->satisfiesPzs;
459 }
460 /**
461 * @param string
462 */
463 public function setScheduledTime($scheduledTime)
464 {
465 $this->scheduledTime = $scheduledTime;
466 }
467 /**
468 * @return string
469 */
470 public function getScheduledTime()
471 {
472 return $this->scheduledTime;
473 }
474 /**
475 * @param string
476 */
477 public function setServiceAccount($serviceAccount)
478 {
479 $this->serviceAccount = $serviceAccount;
480 }
481 /**
482 * @return string
483 */
484 public function getServiceAccount()
485 {
486 return $this->serviceAccount;
487 }
488 /**
489 * @param string
490 */
491 public function setStartTime($startTime)
492 {
493 $this->startTime = $startTime;
494 }
495 /**
496 * @return string
497 */
498 public function getStartTime()
499 {
500 return $this->startTime;
501 }
502 /**
503 * @param string
504 */
505 public function setTimeout($timeout)
506 {
507 $this->timeout = $timeout;
508 }
509 /**
510 * @return string
511 */
512 public function getTimeout()
513 {
514 return $this->timeout;
515 }
516 /**
517 * @param string
518 */
519 public function setUid($uid)
520 {
521 $this->uid = $uid;
522 }
523 /**
524 * @return string
525 */
526 public function getUid()
527 {
528 return $this->uid;
529 }
530 /**
531 * @param string
532 */
533 public function setUpdateTime($updateTime)
534 {
535 $this->updateTime = $updateTime;
536 }
537 /**
538 * @return string
539 */
540 public function getUpdateTime()
541 {
542 return $this->updateTime;
543 }
544 /**
545 * @param GoogleCloudRunV2Volume[]
546 */
547 public function setVolumes($volumes)
548 {
549 $this->volumes = $volumes;
550 }
551 /**
552 * @return GoogleCloudRunV2Volume[]
553 */
554 public function getVolumes()
555 {
556 return $this->volumes;
557 }
558 /**
559 * @param GoogleCloudRunV2VpcAccess
560 */
561 public function setVpcAccess(GoogleCloudRunV2VpcAccess $vpcAccess)
562 {
563 $this->vpcAccess = $vpcAccess;
564 }
565 /**
566 * @return GoogleCloudRunV2VpcAccess
567 */
568 public function getVpcAccess()
569 {
570 return $this->vpcAccess;
571 }
572}
573
574// Adding a class alias for backwards compatibility with the previous class name.
575class_alias(GoogleCloudRunV2Task::class, 'Google_Service_CloudRun_GoogleCloudRunV2Task');
Note: See TracBrowser for help on using the repository browser.