pub struct GoogleCloudDatapipelinesV1Job {
    pub create_time: Option<String>,
    pub dataflow_job_details: Option<GoogleCloudDatapipelinesV1DataflowJobDetails>,
    pub end_time: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub state: Option<String>,
    pub status: Option<GoogleRpcStatus>,
}
Expand description

Definition of the job information maintained by the pipeline. Fields in this entity are retrieved from the executor API (e.g. Dataflow API).

This type is not used in any activity, and only used as part of another schema.

Fields

create_time: Option<String>

Output only. The time of job creation.

dataflow_job_details: Option<GoogleCloudDatapipelinesV1DataflowJobDetails>

All the details that are specific to a Dataflow job.

end_time: Option<String>

Output only. The time of job termination. This is absent if the job is still running.

id: Option<String>

Output only. The internal ID for the job.

name: Option<String>

Required. The fully qualified resource name for the job.

state: Option<String>

The current state of the job.

status: Option<GoogleRpcStatus>

Status capturing any error code or message related to job creation or execution.

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

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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)

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