[][src]Struct gcp_client::google::cloud::dataproc::v1beta2::OrderedJob

pub struct OrderedJob {
    pub step_id: String,
    pub labels: HashMap<String, String>,
    pub scheduling: Option<JobScheduling>,
    pub prerequisite_step_ids: Vec<String>,
    pub job_type: Option<JobType>,
}

A job executed by the workflow.

Fields

step_id: String

Required. The step id. The id must be unique among all jobs within the template.

The step id is used as prefix for job id, as job goog-dataproc-workflow-step-id label, and in [prerequisiteStepIds][google.cloud.dataproc.v1beta2.OrderedJob.prerequisite_step_ids] field from other steps.

The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.

labels: HashMap<String, String>

Optional. The labels to associate with this job.

Label keys must be between 1 and 63 characters long, and must conform to the following regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62}

Label values must be between 1 and 63 characters long, and must conform to the following regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63}

No more than 32 labels can be associated with a given job.

scheduling: Option<JobScheduling>

Optional. Job scheduling configuration.

prerequisite_step_ids: Vec<String>

Optional. The optional list of prerequisite job step_ids. If not specified, the job will start at the beginning of workflow.

job_type: Option<JobType>

Required. The job definition.

Trait Implementations

impl Clone for OrderedJob[src]

impl Debug for OrderedJob[src]

impl Default for OrderedJob[src]

impl Message for OrderedJob[src]

impl PartialEq<OrderedJob> for OrderedJob[src]

impl StructuralPartialEq for OrderedJob[src]

Auto Trait Implementations

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, 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>, 

impl<T> WithSubscriber for T[src]