Struct google_dataproc1::JobReference[][src]

pub struct JobReference {
    pub project_id: Option<String>,
    pub job_id: Option<String>,
}

Encapsulates the full scoping used to reference a job.

This type is not used in any activity, and only used as part of another schema.

Fields

Required. The ID of the Google Cloud Platform project that the job belongs to.

Optional. The job ID, which must be unique within the project. The job ID is generated by the server upon job submission or provided by the user as a means to perform retries without creating duplicate jobs. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or hyphens (-). The maximum length is 100 characters.

Trait Implementations

impl Default for JobReference
[src]

Returns the "default value" for a type. Read more

impl Clone for JobReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobReference
[src]

Formats the value using the given formatter. Read more

impl Part for JobReference
[src]

Auto Trait Implementations