[][src]Struct google_cloudasset1::BigQueryDestination

pub struct BigQueryDestination {
    pub table: Option<String>,
    pub force: Option<bool>,
    pub dataset: Option<String>,
}

A BigQuery destination for exporting assets to.

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

Fields

table: Option<String>

Required. The BigQuery table to which the snapshot result should be written. If this table does not exist, a new table with the given name will be created.

force: Option<bool>

If the destination table already exists and this flag is TRUE, the table will be overwritten by the contents of assets snapshot. If the flag is FALSE or unset and the destination table already exists, the export call returns an INVALID_ARGUMEMT error.

dataset: Option<String>

Required. The BigQuery dataset in format "projects/projectId/datasets/datasetId", to which the snapshot result should be exported. If this dataset does not exist, the export call returns an INVALID_ARGUMENT error.

Trait Implementations

impl Clone for BigQueryDestination[src]

impl Debug for BigQueryDestination[src]

impl Default for BigQueryDestination[src]

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

impl Part for BigQueryDestination[src]

impl Serialize for BigQueryDestination[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any