pub struct SubmitJobRequest {
pub job: Option<Job>,
pub request_id: Option<String>,
}Expand description
A request to submit a job.
§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 (request)
- regions jobs submit as operation projects (request)
Fields§
§job: Option<Job>Required. The job resource.
request_id: Option<String>Optional. A unique id used to identify the request. If the server receives two SubmitJobRequest (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.SubmitJobRequest)s with the same id, then the second request will be ignored and the first Job created and stored in the backend is returned.It is recommended to always set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Trait Implementations§
Source§impl Clone for SubmitJobRequest
impl Clone for SubmitJobRequest
Source§fn clone(&self) -> SubmitJobRequest
fn clone(&self) -> SubmitJobRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more