Struct gapi_grpc::google::cloud::aiplatform::v1beta1::PipelineTaskDetail[][src]

pub struct PipelineTaskDetail {
    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 inputs: HashMap<String, ArtifactList>,
    pub outputs: HashMap<String, ArtifactList>,
}

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.

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

impl PipelineTaskDetail[src]

pub fn state(&self) -> State[src]

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

pub fn set_state(&mut self, value: State)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for PipelineTaskDetail[src]

impl Debug for PipelineTaskDetail[src]

impl Default for PipelineTaskDetail[src]

impl Message for PipelineTaskDetail[src]

impl PartialEq<PipelineTaskDetail> for PipelineTaskDetail[src]

impl StructuralPartialEq for PipelineTaskDetail[src]

Auto Trait Implementations

impl RefUnwindSafe for PipelineTaskDetail

impl Send for PipelineTaskDetail

impl Sync for PipelineTaskDetail

impl Unpin for PipelineTaskDetail

impl UnwindSafe for PipelineTaskDetail

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]