Struct google_bigquery2::JobConfiguration[][src]

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

There is no detailed description.

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

Fields

[Pick one] Configures a load job.

[Pick one] Copies a table.

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

[Pick one] Configures a query job.

[Experimental] 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.

[Pick one] Configures an extract job.

Trait Implementations

impl Default for JobConfiguration
[src]

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

impl Clone for JobConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for JobConfiguration
[src]

Auto Trait Implementations