pub struct TableListTables {Show 13 fields
pub clustering: Option<Clustering>,
pub creation_time: Option<i64>,
pub expiration_time: Option<i64>,
pub friendly_name: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub range_partitioning: Option<RangePartitioning>,
pub require_partition_filter: Option<bool>,
pub table_reference: Option<TableReference>,
pub time_partitioning: Option<TimePartitioning>,
pub type_: Option<String>,
pub view: Option<TableListTablesView>,
}Expand description
Tables in the requested dataset.
This type is not used in any activity, and only used as part of another schema.
Fields§
§clustering: Option<Clustering>Clustering specification for this table, if configured.
creation_time: Option<i64>Output only. The time when this table was created, in milliseconds since the epoch.
expiration_time: Option<i64>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.
friendly_name: Option<String>The user-friendly name for this table.
id: Option<String>An opaque ID of the table.
kind: Option<String>The resource type.
labels: Option<HashMap<String, String>>The labels associated with this table. You can use these to organize and group your tables.
range_partitioning: Option<RangePartitioning>The range partitioning for this table.
require_partition_filter: Option<bool>Optional. If set to true, queries including this table must specify a partition filter. This filter is used for partition elimination.
table_reference: Option<TableReference>A reference uniquely identifying table.
time_partitioning: Option<TimePartitioning>The time-based partitioning for this table.
type_: Option<String>The type of table.
view: Option<TableListTablesView>Information about a logical view.
Trait Implementations§
Source§impl Clone for TableListTables
impl Clone for TableListTables
Source§fn clone(&self) -> TableListTables
fn clone(&self) -> TableListTables
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more