Struct google_dataproc1::Job
source · pub struct Job {Show 15 fields
pub status: Option<JobStatus>,
pub spark_sql_job: Option<SparkSqlJob>,
pub labels: Option<HashMap<String, String>>,
pub placement: Option<JobPlacement>,
pub reference: Option<JobReference>,
pub hadoop_job: Option<HadoopJob>,
pub pig_job: Option<PigJob>,
pub driver_output_resource_uri: Option<String>,
pub driver_control_files_uri: Option<String>,
pub spark_job: Option<SparkJob>,
pub yarn_applications: Option<Vec<YarnApplication>>,
pub scheduling: Option<JobScheduling>,
pub status_history: Option<Vec<JobStatus>>,
pub pyspark_job: Option<PySparkJob>,
pub hive_job: Option<HiveJob>,
}Expand description
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).
- regions jobs submit projects (response)
- regions jobs get projects (response)
- regions jobs patch projects (request|response)
- regions jobs cancel projects (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.
spark_sql_job: Option<SparkSqlJob>Job is a SparkSql 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.
placement: Option<JobPlacement>Required. Job information, including how, when, and where to run the 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.
hadoop_job: Option<HadoopJob>Job is a Hadoop job.
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.
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>Job is a Spark 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.
scheduling: Option<JobScheduling>Optional. Job scheduling configuration.
status_history: Option<Vec<JobStatus>>Output-only. The previous job status.
pyspark_job: Option<PySparkJob>Job is a Pyspark job.
hive_job: Option<HiveJob>Job is a Hive job.
Trait Implementations§
source§impl Deserialize for Job
impl Deserialize for Job
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
impl RequestValue for Job
impl ResponseResult for Job
Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnwindSafe for Job
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more