Struct google_bigquery2::JobConfigurationExtract[][src]

pub struct JobConfigurationExtract {
    pub destination_uri: Option<String>,
    pub destination_format: Option<String>,
    pub compression: Option<String>,
    pub destination_uris: Option<Vec<String>>,
    pub print_header: Option<bool>,
    pub field_delimiter: Option<String>,
    pub source_table: Option<TableReference>,
}

There is no detailed description.

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

Fields

[Pick one] DEPRECATED: Use destinationUris instead, passing only one URI as necessary. The fully-qualified Google Cloud Storage URI where the extracted table should be written.

[Optional] The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO. The default value is CSV. Tables with nested or repeated fields cannot be exported as CSV.

[Optional] The compression type to use for exported files. Possible values include GZIP and NONE. The default value is NONE.

[Pick one] A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written.

[Optional] Whether to print out a header row in the results. Default is true.

[Optional] Delimiter to use between fields in the exported data. Default is ','

[Required] A reference to the table being exported.

Trait Implementations

impl Default for JobConfigurationExtract
[src]

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

impl Clone for JobConfigurationExtract
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobConfigurationExtract
[src]

Formats the value using the given formatter. Read more

impl Part for JobConfigurationExtract
[src]

Auto Trait Implementations