Struct gapi_grpc::google::cloud::retail::v2alpha::BigQuerySource[][src]

pub struct BigQuerySource {
    pub project_id: String,
    pub dataset_id: String,
    pub table_id: String,
    pub gcs_staging_dir: String,
    pub data_schema: String,
}

BigQuery source import data from.

Fields

project_id: String

The project id (can be project # or id) that the BigQuery source is in with a length limit of 128 characters. If not specified, inherits the project id from the parent request.

dataset_id: String

Required. The BigQuery data set to copy the data from with a length limit of 1,024 characters.

table_id: String

Required. The BigQuery table to copy the data from with a length limit of 1,024 characters.

gcs_staging_dir: String

Intermediate Cloud Storage directory used for the import with a length limit of 2,000 characters. Can be specified if one wants to have the BigQuery export to a specific Cloud Storage directory.

data_schema: String

The schema to use when parsing the data from the source.

Supported values for product imports:

Supported values for user events imports:

Trait Implementations

impl Clone for BigQuerySource[src]

impl Debug for BigQuerySource[src]

impl Default for BigQuerySource[src]

impl Message for BigQuerySource[src]

impl PartialEq<BigQuerySource> for BigQuerySource[src]

impl StructuralPartialEq for BigQuerySource[src]

Auto Trait Implementations

impl RefUnwindSafe for BigQuerySource

impl Send for BigQuerySource

impl Sync for BigQuerySource

impl Unpin for BigQuerySource

impl UnwindSafe for BigQuerySource

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]