source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1PipelineTaskDetail.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: 5.3 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 GoogleCloudAiplatformV1PipelineTaskDetail extends \Google\Collection
21{
22 protected $collection_key = 'pipelineTaskStatus';
23 /**
24 * @var string
25 */
26 public $createTime;
27 /**
28 * @var string
29 */
30 public $endTime;
31 protected $errorType = GoogleRpcStatus::class;
32 protected $errorDataType = '';
33 protected $executionType = GoogleCloudAiplatformV1Execution::class;
34 protected $executionDataType = '';
35 protected $executorDetailType = GoogleCloudAiplatformV1PipelineTaskExecutorDetail::class;
36 protected $executorDetailDataType = '';
37 protected $inputsType = GoogleCloudAiplatformV1PipelineTaskDetailArtifactList::class;
38 protected $inputsDataType = 'map';
39 protected $outputsType = GoogleCloudAiplatformV1PipelineTaskDetailArtifactList::class;
40 protected $outputsDataType = 'map';
41 /**
42 * @var string
43 */
44 public $parentTaskId;
45 protected $pipelineTaskStatusType = GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus::class;
46 protected $pipelineTaskStatusDataType = 'array';
47 /**
48 * @var string
49 */
50 public $startTime;
51 /**
52 * @var string
53 */
54 public $state;
55 /**
56 * @var string
57 */
58 public $taskId;
59 /**
60 * @var string
61 */
62 public $taskName;
63
64 /**
65 * @param string
66 */
67 public function setCreateTime($createTime)
68 {
69 $this->createTime = $createTime;
70 }
71 /**
72 * @return string
73 */
74 public function getCreateTime()
75 {
76 return $this->createTime;
77 }
78 /**
79 * @param string
80 */
81 public function setEndTime($endTime)
82 {
83 $this->endTime = $endTime;
84 }
85 /**
86 * @return string
87 */
88 public function getEndTime()
89 {
90 return $this->endTime;
91 }
92 /**
93 * @param GoogleRpcStatus
94 */
95 public function setError(GoogleRpcStatus $error)
96 {
97 $this->error = $error;
98 }
99 /**
100 * @return GoogleRpcStatus
101 */
102 public function getError()
103 {
104 return $this->error;
105 }
106 /**
107 * @param GoogleCloudAiplatformV1Execution
108 */
109 public function setExecution(GoogleCloudAiplatformV1Execution $execution)
110 {
111 $this->execution = $execution;
112 }
113 /**
114 * @return GoogleCloudAiplatformV1Execution
115 */
116 public function getExecution()
117 {
118 return $this->execution;
119 }
120 /**
121 * @param GoogleCloudAiplatformV1PipelineTaskExecutorDetail
122 */
123 public function setExecutorDetail(GoogleCloudAiplatformV1PipelineTaskExecutorDetail $executorDetail)
124 {
125 $this->executorDetail = $executorDetail;
126 }
127 /**
128 * @return GoogleCloudAiplatformV1PipelineTaskExecutorDetail
129 */
130 public function getExecutorDetail()
131 {
132 return $this->executorDetail;
133 }
134 /**
135 * @param GoogleCloudAiplatformV1PipelineTaskDetailArtifactList[]
136 */
137 public function setInputs($inputs)
138 {
139 $this->inputs = $inputs;
140 }
141 /**
142 * @return GoogleCloudAiplatformV1PipelineTaskDetailArtifactList[]
143 */
144 public function getInputs()
145 {
146 return $this->inputs;
147 }
148 /**
149 * @param GoogleCloudAiplatformV1PipelineTaskDetailArtifactList[]
150 */
151 public function setOutputs($outputs)
152 {
153 $this->outputs = $outputs;
154 }
155 /**
156 * @return GoogleCloudAiplatformV1PipelineTaskDetailArtifactList[]
157 */
158 public function getOutputs()
159 {
160 return $this->outputs;
161 }
162 /**
163 * @param string
164 */
165 public function setParentTaskId($parentTaskId)
166 {
167 $this->parentTaskId = $parentTaskId;
168 }
169 /**
170 * @return string
171 */
172 public function getParentTaskId()
173 {
174 return $this->parentTaskId;
175 }
176 /**
177 * @param GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus[]
178 */
179 public function setPipelineTaskStatus($pipelineTaskStatus)
180 {
181 $this->pipelineTaskStatus = $pipelineTaskStatus;
182 }
183 /**
184 * @return GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus[]
185 */
186 public function getPipelineTaskStatus()
187 {
188 return $this->pipelineTaskStatus;
189 }
190 /**
191 * @param string
192 */
193 public function setStartTime($startTime)
194 {
195 $this->startTime = $startTime;
196 }
197 /**
198 * @return string
199 */
200 public function getStartTime()
201 {
202 return $this->startTime;
203 }
204 /**
205 * @param string
206 */
207 public function setState($state)
208 {
209 $this->state = $state;
210 }
211 /**
212 * @return string
213 */
214 public function getState()
215 {
216 return $this->state;
217 }
218 /**
219 * @param string
220 */
221 public function setTaskId($taskId)
222 {
223 $this->taskId = $taskId;
224 }
225 /**
226 * @return string
227 */
228 public function getTaskId()
229 {
230 return $this->taskId;
231 }
232 /**
233 * @param string
234 */
235 public function setTaskName($taskName)
236 {
237 $this->taskName = $taskName;
238 }
239 /**
240 * @return string
241 */
242 public function getTaskName()
243 {
244 return $this->taskName;
245 }
246}
247
248// Adding a class alias for backwards compatibility with the previous class name.
249class_alias(GoogleCloudAiplatformV1PipelineTaskDetail::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1PipelineTaskDetail');
Note: See TracBrowser for help on using the repository browser.