Show / Hide Table of Contents

Class GoogleCloudAiplatformV1PipelineTaskDetail

The runtime detail of a task execution.

Inheritance
object
GoogleCloudAiplatformV1PipelineTaskDetail
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1PipelineTaskDetail : IDirectResponseSchema

Properties

CreateTime

object representation of CreateTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

CreateTimeDateTimeOffset

DateTimeOffset representation of CreateTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreateTimeRaw

Output only. Task create time.

Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

EndTime

object representation of EndTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use EndTimeDateTimeOffset instead.")]
public virtual object EndTime { get; set; }
Property Value
Type Description
object

EndTimeDateTimeOffset

DateTimeOffset representation of EndTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? EndTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

EndTimeRaw

Output only. Task end time.

Declaration
[JsonProperty("endTime")]
public virtual string EndTimeRaw { get; set; }
Property Value
Type Description
string

Error

Output only. The error that occurred during task execution. Only populated when the task's state is FAILED or CANCELLED.

Declaration
[JsonProperty("error")]
public virtual GoogleRpcStatus Error { get; set; }
Property Value
Type Description
GoogleRpcStatus

Execution

Output only. The execution metadata of the task.

Declaration
[JsonProperty("execution")]
public virtual GoogleCloudAiplatformV1Execution Execution { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1Execution

ExecutorDetail

Output only. The detailed execution info.

Declaration
[JsonProperty("executorDetail")]
public virtual GoogleCloudAiplatformV1PipelineTaskExecutorDetail ExecutorDetail { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1PipelineTaskExecutorDetail

Inputs

Output only. The runtime input artifacts of the task.

Declaration
[JsonProperty("inputs")]
public virtual IDictionary<string, GoogleCloudAiplatformV1PipelineTaskDetailArtifactList> Inputs { get; set; }
Property Value
Type Description
IDictionary<string, GoogleCloudAiplatformV1PipelineTaskDetailArtifactList>

Outputs

Output only. The runtime output artifacts of the task.

Declaration
[JsonProperty("outputs")]
public virtual IDictionary<string, GoogleCloudAiplatformV1PipelineTaskDetailArtifactList> Outputs { get; set; }
Property Value
Type Description
IDictionary<string, GoogleCloudAiplatformV1PipelineTaskDetailArtifactList>

ParentTaskId

Output only. The id of the parent task if the task is within a component scope. Empty if the task is at the root level.

Declaration
[JsonProperty("parentTaskId")]
public virtual long? ParentTaskId { get; set; }
Property Value
Type Description
long?

PipelineTaskStatus

Output only. A list of task status. This field keeps a record of task status evolving over time.

Declaration
[JsonProperty("pipelineTaskStatus")]
public virtual IList<GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus> PipelineTaskStatus { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus>

StartTime

object representation of StartTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeDateTimeOffset instead.")]
public virtual object StartTime { get; set; }
Property Value
Type Description
object

StartTimeDateTimeOffset

DateTimeOffset representation of StartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

StartTimeRaw

Output only. Task start time.

Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type Description
string

State

Output only. State of the task.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
string

TaskId

Output only. The system generated ID of the task.

Declaration
[JsonProperty("taskId")]
public virtual long? TaskId { get; set; }
Property Value
Type Description
long?

TaskName

Output only. The user specified name of the task that is defined in pipeline_spec.

Declaration
[JsonProperty("taskName")]
public virtual string TaskName { get; set; }
Property Value
Type Description
string

TaskUniqueName

Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by concatenating all the parent tasks name with the task name. For example, if a task named "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task".

Declaration
[JsonProperty("taskUniqueName")]
public virtual string TaskUniqueName { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX