[][src]Struct gcp_client::google::cloud::dataproc::v1::Job

pub struct Job {
    pub reference: Option<JobReference>,
    pub placement: Option<JobPlacement>,
    pub status: Option<JobStatus>,
    pub status_history: Vec<JobStatus>,
    pub yarn_applications: Vec<YarnApplication>,
    pub driver_output_resource_uri: String,
    pub driver_control_files_uri: String,
    pub labels: HashMap<String, String>,
    pub scheduling: Option<JobScheduling>,
    pub job_uuid: String,
    pub done: bool,
    pub type_job: Option<TypeJob>,
}

A Dataproc job resource.

Fields

reference: Option<JobReference>

Optional. The fully qualified reference to the job, which can be used to obtain the equivalent REST path of the job resource. If this property is not specified when a job is created, the server generates a job_id.

placement: Option<JobPlacement>

Required. Job information, including how, when, and where to run the job.

status: Option<JobStatus>

Output only. The job status. Additional application-specific status information may be contained in the type_job and yarn_applications fields.

status_history: Vec<JobStatus>

Output only. The previous job status.

yarn_applications: Vec<YarnApplication>

Output only. The collection of YARN applications spun up by this job.

Beta Feature: This report is available for testing purposes only. It may be changed before final release.

driver_output_resource_uri: String

Output only. A URI pointing to the location of the stdout of the job's driver program.

driver_control_files_uri: String

Output only. If present, the location of miscellaneous control files which may be used as part of job setup and handling. If not present, control files may be placed in the same location as driver_output_uri.

labels: HashMap<String, String>

Optional. The labels to associate with this job. Label keys must contain 1 to 63 characters, and must conform to RFC 1035. Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035. No more than 32 labels can be associated with a job.

scheduling: Option<JobScheduling>

Optional. Job scheduling configuration.

job_uuid: String

Output only. A UUID that uniquely identifies a job within the project over time. This is in contrast to a user-settable reference.job_id that may be reused over time.

done: bool

Output only. Indicates whether the job is completed. If the value is false, the job is still in progress. If true, the job is completed, and status.state field will indicate if it was successful, failed, or cancelled.

type_job: Option<TypeJob>

Required. The application/framework-specific portion of the job.

Trait Implementations

impl Clone for Job[src]

impl Debug for Job[src]

impl Default for Job[src]

impl Message for Job[src]

impl PartialEq<Job> for Job[src]

impl StructuralPartialEq for Job[src]

Auto Trait Implementations

impl RefUnwindSafe for Job

impl Send for Job

impl Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

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]