Struct googapis::google::cloud::aiplatform::v1::PipelineTaskDetail[][src]

pub struct PipelineTaskDetail {
Show 13 fields pub task_id: i64, pub parent_task_id: i64, pub task_name: String, pub create_time: Option<Timestamp>, pub start_time: Option<Timestamp>, pub end_time: Option<Timestamp>, pub executor_detail: Option<PipelineTaskExecutorDetail>, pub state: i32, pub execution: Option<Execution>, pub error: Option<Status>, pub pipeline_task_status: Vec<PipelineTaskStatus>, pub inputs: HashMap<String, ArtifactList>, pub outputs: HashMap<String, ArtifactList>,
}
Expand description

The runtime detail of a task execution.

Fields

task_id: i64

Output only. The system generated ID of the task.

parent_task_id: i64

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.

task_name: String

Output only. The user specified name of the task that is defined in [PipelineJob.spec][].

create_time: Option<Timestamp>

Output only. Task create time.

start_time: Option<Timestamp>

Output only. Task start time.

end_time: Option<Timestamp>

Output only. Task end time.

executor_detail: Option<PipelineTaskExecutorDetail>

Output only. The detailed execution info.

state: i32

Output only. State of the task.

execution: Option<Execution>

Output only. The execution metadata of the task.

error: Option<Status>

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

pipeline_task_status: Vec<PipelineTaskStatus>

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

inputs: HashMap<String, ArtifactList>

Output only. The runtime input artifacts of the task.

outputs: HashMap<String, ArtifactList>

Output only. The runtime output artifacts of the task.

Implementations

Returns the enum value of state, or the default if the field is set to an invalid enum value.

Sets state to the provided enum value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more