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

pub struct PipelineJob {
    pub name: String,
    pub display_name: String,
    pub create_time: Option<Timestamp>,
    pub start_time: Option<Timestamp>,
    pub end_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub pipeline_spec: Option<Struct>,
    pub state: i32,
    pub job_detail: Option<PipelineJobDetail>,
    pub error: Option<Status>,
    pub labels: HashMap<String, String>,
    pub runtime_config: Option<RuntimeConfig>,
    pub encryption_spec: Option<EncryptionSpec>,
    pub service_account: String,
    pub network: String,
}

An instance of a machine learning PipelineJob.

Fields

name: String

Output only. The resource name of the PipelineJob.

display_name: String

The display name of the Pipeline. The name can be up to 128 characters long and can be consist of any UTF-8 characters.

create_time: Option<Timestamp>

Output only. Pipeline creation time.

start_time: Option<Timestamp>

Output only. Pipeline start time.

end_time: Option<Timestamp>

Output only. Pipeline end time.

update_time: Option<Timestamp>

Output only. Timestamp when this PipelineJob was most recently updated.

pipeline_spec: Option<Struct>

Required. The spec of the pipeline.

state: i32

Output only. The detailed state of the job.

job_detail: Option<PipelineJobDetail>

Output only. The details of pipeline run. Not available in the list view.

error: Option<Status>

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

labels: HashMap<String, String>

The labels with user-defined metadata to organize PipelineJob.

Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.

See https://goo.gl/xmQnxf for more information and examples of labels.

runtime_config: Option<RuntimeConfig>

Runtime config of the pipeline.

encryption_spec: Option<EncryptionSpec>

Customer-managed encryption key spec for a pipelineJob. If set, this PipelineJob and all of its sub-resources will be secured by this key.

service_account: String

The service account that the pipeline workload runs as. If not specified, the Compute Engine default service account in the project will be used. See https://cloud.google.com/compute/docs/access/service-accounts#default_service_account

Users starting the pipeline must have the iam.serviceAccounts.actAs permission on this service account.

network: String

The full name of the Compute Engine network to which the Pipeline Job’s workload should be peered. For example, projects/12345/global/networks/myVPC. Format is of the form projects/{project}/global/networks/{network}. Where {project} is a project number, as in 12345, and {network} is a network name.

Private services access must already be configured for the network. Pipeline job will apply the network configuration to the GCP resources being launched, if applied, such as Vertex AI Training or Dataflow job. If left unspecified, the workload is not peered with any network.

Implementations

impl PipelineJob[src]

pub fn state(&self) -> PipelineState[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: PipelineState)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for PipelineJob[src]

impl Debug for PipelineJob[src]

impl Default for PipelineJob[src]

impl Message for PipelineJob[src]

impl PartialEq<PipelineJob> for PipelineJob[src]

impl StructuralPartialEq for PipelineJob[src]

Auto Trait Implementations

impl RefUnwindSafe for PipelineJob

impl Send for PipelineJob

impl Sync for PipelineJob

impl Unpin for PipelineJob

impl UnwindSafe for PipelineJob

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]