DatasetReference(project, dataset_id)DatasetReferences are pointers to datasets.
See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets#datasetreference
Parameters
| Name | Description |
| project |
str
The ID of the project |
| dataset_id |
str
The ID of the dataset |
Inheritance
builtins.object > DatasetReferenceProperties
dataset_id
str: Dataset ID.
path
str: URL path for the dataset based on project and dataset ID.
project
str: Project ID of the dataset.
Methods
from_api_repr
from_api_repr(resource: dict)Factory: construct a dataset reference given its API representation
| Name | Description |
| resource |
Dict[str, str]
Dataset reference resource representation returned from the API |
| Type | Description |
| google.cloud.bigquery.dataset.DatasetReference | Dataset reference parsed from ``resource``. |
from_string
from_string(dataset_id: str, default_project: Optional[str] = None)Construct a dataset reference from dataset ID string.
| Name | Description |
| dataset_id |
str
A dataset ID in standard SQL format. If |
| default_project |
Optional[str]
The project ID to use when |
| Type | Description |
| ValueError | If ``dataset_id`` is not a fully-qualified dataset ID in standard SQL format. |
| Type | Description |
| DatasetReference .. rubric:: Examples >>> DatasetReference.from_string('my-project-id.some_dataset') DatasetReference('my-project-id', 'some_dataset') | Dataset reference parsed from ``dataset_id``. |
model
model(model_id)Constructs a ModelReference.
| Name | Description |
| model_id |
str
the ID of the model. |
| Type | Description |
| google.cloud.bigquery.model.ModelReference | A ModelReference for a model in this dataset. |
routine
routine(routine_id)Constructs a RoutineReference.
| Name | Description |
| routine_id |
str
the ID of the routine. |
| Type | Description |
| google.cloud.bigquery.routine.RoutineReference | A RoutineReference for a routine in this dataset. |
table
table(table_id)Constructs a TableReference.
| Name | Description |
| table_id |
str
The ID of the table. |
| Type | Description |
| google.cloud.bigquery.table.TableReference | A table reference for a table in this dataset. |
to_api_repr
to_api_repr()Construct the API resource representation of this dataset reference
| Type | Description |
| Dict[str, str] | dataset reference represented as an API resource |
__init__
__init__(project, dataset_id)Initialize self. See help(type(self)) for accurate signature.
DatasetReference
DatasetReference(project, dataset_id)DatasetReferences are pointers to datasets.
See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets#datasetreference
| Name | Description |
| project |
str
The ID of the project |
| dataset_id |
str
The ID of the dataset |
| Type | Description |
| ValueError | If either argument is not of type ``str``. |