Struct gapi_grpc::google::cloud::bigquery::logging::v1::job_configuration::Load[][src]

pub struct Load {
    pub source_uris: Vec<String>,
    pub schema_json: String,
    pub destination_table: Option<TableName>,
    pub create_disposition: String,
    pub write_disposition: String,
    pub destination_table_encryption: Option<EncryptionInfo>,
}

Describes a load job, which loads data from an external source via the import pipeline.

Fields

source_uris: Vec<String>

URIs for the data to be imported. Only Google Cloud Storage URIs are supported.

schema_json: String

The table schema in JSON format representation of a TableSchema.

destination_table: Option<TableName>

The table where the imported data is written.

create_disposition: String

Describes when a job is allowed to create a table: CREATE_IF_NEEDED, CREATE_NEVER.

write_disposition: String

Describes how writes affect existing tables: WRITE_TRUNCATE, WRITE_APPEND, WRITE_EMPTY.

destination_table_encryption: Option<EncryptionInfo>

Result table encryption information. Set when non-default encryption is used.

Trait Implementations

impl Clone for Load[src]

impl Debug for Load[src]

impl Default for Load[src]

impl Message for Load[src]

impl PartialEq<Load> for Load[src]

impl StructuralPartialEq for Load[src]

Auto Trait Implementations

impl RefUnwindSafe for Load

impl Send for Load

impl Sync for Load

impl Unpin for Load

impl UnwindSafe for Load

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]