[][src]Struct google_bigquery2::JobConfiguration

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

There is no detailed description.

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

Fields

load: Option<JobConfigurationLoad>

[Pick one] Configures a load job.

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.

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.

job_timeout_ms: Option<String>

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

query: Option<JobConfigurationQuery>

[Pick one] Configures a query job.

copy: Option<JobConfigurationTableCopy>

[Pick one] Copies a table.

extract: Option<JobConfigurationExtract>

[Pick one] Configures an extract job.

job_type: Option<String>

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

Trait Implementations

impl Part for JobConfiguration[src]

impl Default for JobConfiguration[src]

impl Clone for JobConfiguration[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for JobConfiguration[src]

impl Serialize for JobConfiguration[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

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

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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