[][src]Struct google_bigquery2::JobConfigurationExtract

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

destination_uri: Option<String>

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

destination_format: Option<String>

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

compression: Option<String>

[Optional] The compression type to use for exported files. Possible values include GZIP, DEFLATE, SNAPPY, and NONE. The default value is NONE. DEFLATE and SNAPPY are only supported for Avro.

destination_uris: Option<Vec<String>>

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

print_header: Option<bool>

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

field_delimiter: Option<String>

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

source_table: Option<TableReference>

[Required] A reference to the table being exported.

Trait Implementations

impl Part for JobConfigurationExtract[src]

impl Default for JobConfigurationExtract[src]

impl Clone for JobConfigurationExtract[src]

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

Performs copy-assignment from source. Read more

impl Debug for JobConfigurationExtract[src]

impl Serialize for JobConfigurationExtract[src]

impl<'de> Deserialize<'de> for JobConfigurationExtract[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]