[][src]Struct google_dataproc1::Job

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

A Cloud 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>

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.

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.

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>

Job is a Pig job.

driver_output_resource_uri: Option<String>

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

spark_job: Option<SparkJob>

Job is a Spark 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.

scheduling: Option<JobScheduling>

Optional. Job scheduling configuration.

status_history: Option<Vec<JobStatus>>

Output only. The previous job status.

spark_sql_job: Option<SparkSqlJob>

Job is a SparkSql job.

placement: Option<JobPlacement>

Required. Job information, including how, when, and where to run the 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.

pyspark_job: Option<PySparkJob>

Job is a Pyspark job.

hive_job: Option<HiveJob>

Job is a Hive job.

Trait Implementations

impl ResponseResult for Job[src]

impl RequestValue for Job[src]

impl Clone for Job[src]

impl Default for Job[src]

impl Debug for Job[src]

impl Serialize for Job[src]

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

Auto Trait Implementations

impl Send for Job

impl Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

impl RefUnwindSafe for Job

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]