Struct google_bigquery2::api::JobConfiguration[][src]

pub struct JobConfiguration {
    pub copy: Option<JobConfigurationTableCopy>,
    pub dry_run: Option<bool>,
    pub extract: Option<JobConfigurationExtract>,
    pub job_timeout_ms: Option<String>,
    pub job_type: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub load: Option<JobConfigurationLoad>,
    pub query: Option<JobConfigurationQuery>,
}

There is no detailed description.

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

Fields

copy: Option<JobConfigurationTableCopy>

[Pick one] Copies a table.

dry_run: Option<bool>

[Optional] If set, don’t actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn’t a dry run. Behavior of non-query jobs is undefined.

extract: Option<JobConfigurationExtract>

[Pick one] Configures an extract job.

job_timeout_ms: Option<String>

[Optional] Job timeout in milliseconds. If this time limit is exceeded, BigQuery may attempt to terminate the job.

job_type: Option<String>

[Output-only] The type of the job. Can be QUERY, LOAD, EXTRACT, COPY or UNKNOWN.

labels: Option<HashMap<String, String>>

The labels associated with this job. You can use these to organize and group your jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.

load: Option<JobConfigurationLoad>

[Pick one] Configures a load job.

query: Option<JobConfigurationQuery>

[Pick one] Configures a query job.

Trait Implementations

impl Clone for JobConfiguration[src]

impl Debug for JobConfiguration[src]

impl Default for JobConfiguration[src]

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

impl Part for JobConfiguration[src]

impl Serialize for JobConfiguration[src]

Auto Trait Implementations

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> Instrument 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.