[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec

pub struct GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec {
    pub dataset: Option<String>,
    pub table_prefix: Option<String>,
    pub shard_count: Option<String>,
}

Spec for a group of BigQuery tables with name pattern [prefix]YYYYMMDD. Context: https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding

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

Fields

dataset: Option<String>

Output only. The Data Catalog resource name of the dataset entry the current table belongs to, for example, projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}.

table_prefix: Option<String>

Output only. The table name prefix of the shards. The name of any given shard is [table_prefix]YYYYMMDD, for example, for shard MyTable20180101, the table_prefix is MyTable.

shard_count: Option<String>

Output only. Total number of shards.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec[src]

impl Debug for GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec[src]

impl Default for GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec[src]

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

impl Part for GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec[src]

impl Serialize for GoogleCloudDatacatalogV1beta1BigQueryDateShardedSpec[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