Method |
Description |
|
__construct ( Google\Cloud\BigQuery\Connection\ConnectionInterface $connection, string $id, string $projectId, array $info = [] ) |
|
|
createTable ( $id, array $options = [] ) : Google\Cloud\BigQuery\Table |
Creates a table. |
|
delete ( array $options = [] ) |
Delete the dataset. |
|
exists ( ) : boolean |
Check whether or not the dataset exists. |
|
id ( ) : string |
Retrieves the dataset's ID. |
|
identity ( ) : array |
Retrieves the dataset's identity. |
|
info ( array $options = [] ) : array |
Retrieves the dataset's details. If no dataset data is cached a network
request will be made to retrieve it. |
|
reload ( array $options = [] ) : array |
Triggers a network request to reload the dataset's details. |
|
table ( string $id ) : Dataset |
Lazily instantiates a table. There are no network requests made at this
point. To see the operations that can be performed on a dataset please
see {@see Google\Cloud\BigQuery\Table}. |
|
tables ( array $options = [] ) : Generator |
Fetches tables in the dataset. |
|
update ( array $metadata, array $options = [] ) |
Update the dataset. |
|