[][src]Struct google_dataproc1::Job

pub struct Job {
    pub status: Option<JobStatus>,
    pub hadoop_job: Option<HadoopJob>,
    pub labels: Option<HashMap<String, String>>,
    pub reference: Option<JobReference>,
    pub pig_job: Option<PigJob>,
    pub presto_job: Option<PrestoJob>,
    pub driver_output_resource_uri: Option<String>,
    pub done: Option<bool>,
    pub yarn_applications: Option<Vec<YarnApplication>>,
    pub scheduling: Option<JobScheduling>,
    pub placement: Option<JobPlacement>,
    pub status_history: Option<Vec<JobStatus>>,
    pub spark_sql_job: Option<SparkSqlJob>,
    pub job_uuid: Option<String>,
    pub spark_r_job: Option<SparkRJob>,
    pub driver_control_files_uri: Option<String>,
    pub spark_job: Option<SparkJob>,
    pub pyspark_job: Option<PySparkJob>,
    pub hive_job: Option<HiveJob>,
}

A Dataproc job resource.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<JobStatus>

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

hadoop_job: Option<HadoopJob>

Optional. Job is a Hadoop job.

labels: Option<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 (https://www.ietf.org/rfc/rfc1035.txt). Label values may be empty, but, if present, must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a job.

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.

pig_job: Option<PigJob>

Optional. Job is a Pig job.

presto_job: Option<PrestoJob>

Optional. Job is a Presto job.

driver_output_resource_uri: Option<String>

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

done: Option<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.

yarn_applications: Option<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.

scheduling: Option<JobScheduling>

Optional. Job scheduling configuration.

placement: Option<JobPlacement>

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

status_history: Option<Vec<JobStatus>>

Output only. The previous job status.

spark_sql_job: Option<SparkSqlJob>

Optional. Job is a SparkSql job.

job_uuid: Option<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.

spark_r_job: Option<SparkRJob>

Optional. Job is a SparkR job.

driver_control_files_uri: Option<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.

spark_job: Option<SparkJob>

Optional. Job is a Spark job.

pyspark_job: Option<PySparkJob>

Optional. Job is a PySpark job.

hive_job: Option<HiveJob>

Optional. Job is a Hive job.

Trait Implementations

impl Clone for Job[src]

impl Debug for Job[src]

impl Default for Job[src]

impl<'de> Deserialize<'de> for Job[src]

impl RequestValue for Job[src]

impl ResponseResult for Job[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any