Struct google_bigquery2::Table[][src]

pub struct Table {
    pub description: Option<String>,
    pub creation_time: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub num_bytes: Option<String>,
    pub time_partitioning: Option<TimePartitioning>,
    pub last_modified_time: Option<String>,
    pub num_long_term_bytes: Option<String>,
    pub id: Option<String>,
    pub encryption_configuration: Option<EncryptionConfiguration>,
    pub kind: Option<String>,
    pub streaming_buffer: Option<Streamingbuffer>,
    pub external_data_configuration: Option<ExternalDataConfiguration>,
    pub table_reference: Option<TableReference>,
    pub num_rows: Option<String>,
    pub etag: Option<String>,
    pub location: Option<String>,
    pub friendly_name: Option<String>,
    pub expiration_time: Option<String>,
    pub view: Option<ViewDefinition>,
    pub type_: Option<String>,
    pub self_link: Option<String>,
    pub schema: Option<TableSchema>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

[Optional] A user-friendly description of this table.

[Output-only] The time when this table was created, in milliseconds since the epoch.

[Experimental] The labels associated with this table. You can use these to organize and group your tables. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.

[Output-only] The size of this table in bytes, excluding any data in the streaming buffer.

If specified, configures time-based partitioning for this table.

[Output-only] The time when this table was last modified, in milliseconds since the epoch.

[Output-only] The number of bytes in the table that are considered "long-term storage".

[Output-only] An opaque ID uniquely identifying the table.

[Experimental] Custom encryption configuration (e.g., Cloud KMS keys).

[Output-only] The type of the resource.

[Output-only] Contains information regarding this table's streaming buffer, if one is present. This field will be absent if the table is not being streamed to or if there is no data in the streaming buffer.

[Optional] Describes the data format, location, and other properties of a table stored outside of BigQuery. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.

[Required] Reference describing the ID of this table.

[Output-only] The number of rows of data in this table, excluding any data in the streaming buffer.

[Output-only] A hash of this resource.

[Output-only] The geographic location where the table resides. This value is inherited from the dataset.

[Optional] A descriptive name for this table.

[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.

[Optional] The view definition.

[Output-only] Describes the table type. The following values are supported: TABLE: A normal BigQuery table. VIEW: A virtual table defined by a SQL query. EXTERNAL: A table that references data stored in an external storage system, such as Google Cloud Storage. The default value is TABLE.

[Output-only] A URL that can be used to access this resource again.

[Optional] Describes the schema of this table.

Trait Implementations

impl Default for Table
[src]

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

impl Clone for Table
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Table
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Table
[src]

impl Resource for Table
[src]

impl ResponseResult for Table
[src]

Auto Trait Implementations

impl Send for Table

impl Sync for Table