[][src]Struct gcp_client::google::cloud::datacatalog::v1::BigQueryDateShardedSpec

pub struct BigQueryDateShardedSpec {
    pub dataset: String,
    pub table_prefix: String,
    pub shard_count: i64,
}

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

Fields

dataset: 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: 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: i64

Output only. Total number of shards.

Trait Implementations

impl Clone for BigQueryDateShardedSpec[src]

impl Debug for BigQueryDateShardedSpec[src]

impl Default for BigQueryDateShardedSpec[src]

impl Message for BigQueryDateShardedSpec[src]

impl PartialEq<BigQueryDateShardedSpec> for BigQueryDateShardedSpec[src]

impl StructuralPartialEq for BigQueryDateShardedSpec[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> From<T> 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>, 

impl<T> WithSubscriber for T[src]