Struct google_bigquery2::TableListTables[][src]

pub struct TableListTables {
    pub clustering: Option<Clustering>,
    pub kind: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub creation_time: Option<String>,
    pub id: Option<String>,
    pub friendly_name: Option<String>,
    pub time_partitioning: Option<TimePartitioning>,
    pub expiration_time: Option<String>,
    pub type_: Option<String>,
    pub table_reference: Option<TableReference>,
    pub view: Option<TableListTablesView>,
}

Tables in the requested dataset.

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

Fields

[Beta] Clustering specification for this table, if configured.

The resource type.

The labels associated with this table. You can use these to organize and group your tables.

The time when this table was created, in milliseconds since the epoch.

An opaque ID of the table

The user-friendly name for this table.

The time-based partitioning specification for this table, if configured.

[Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.

The type of table. Possible values are: TABLE, VIEW.

A reference uniquely identifying the table.

Additional details for a view.

Trait Implementations

impl Default for TableListTables
[src]

Returns the "default value" for a type. Read more

impl Clone for TableListTables
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TableListTables
[src]

Formats the value using the given formatter. Read more

impl NestedType for TableListTables
[src]

impl Part for TableListTables
[src]

Auto Trait Implementations