BigQueryTable(mapping=None, *, ignore_unknown_fields=False, **kwargs)
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>
.
Attributes |
|
---|---|
Name | Description |
project_id |
str
The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call. |
dataset_id |
str
Dataset ID of the table. |
table_id |
str
Name of the table. |