Struct google_dlp2::GooglePrivacyDlpV2BigQueryTable[][src]

pub struct GooglePrivacyDlpV2BigQueryTable {
    pub project_id: Option<String>,
    pub table_id: Option<String>,
    pub dataset_id: Option<String>,
}

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: <project_id>:<dataset_id>.<table_id> or <project_id>.<dataset_id>.<table_id>.

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

Fields

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.

Name of the table.

Dataset ID of the table.

Trait Implementations

impl Default for GooglePrivacyDlpV2BigQueryTable
[src]

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

impl Clone for GooglePrivacyDlpV2BigQueryTable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2BigQueryTable
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2BigQueryTable
[src]

Auto Trait Implementations