Package | Description |
---|---|
com.google.cloud.bigquery |
A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for
analytics.
|
Modifier and Type | Method and Description |
---|---|
Table |
Table.Builder.build() |
Table |
Dataset.create(String tableId,
TableDefinition definition,
BigQuery.TableOption... options)
Creates a new table in this dataset.
|
Table |
BigQuery.create(TableInfo tableInfo,
BigQuery.TableOption... options)
Creates a new table.
|
Table |
Dataset.get(String tableId,
BigQuery.TableOption... options)
Returns the requested table in this dataset or
null if not found. |
Table |
BigQuery.getTable(String datasetId,
String tableId,
BigQuery.TableOption... options)
Returns the requested table or
null if not found. |
Table |
BigQuery.getTable(TableId tableId,
BigQuery.TableOption... options)
Returns the requested table or
null if not found. |
Table |
Table.reload(BigQuery.TableOption... options)
Fetches current table's latest information.
|
Table |
Table.update(BigQuery.TableOption... options)
Updates the table's information with this table's information.
|
Table |
BigQuery.update(TableInfo tableInfo,
BigQuery.TableOption... options)
Updates table information.
|
Modifier and Type | Method and Description |
---|---|
Page<Table> |
Dataset.list(BigQuery.TableListOption... options)
Returns the paginated list of tables in this dataset.
|
Page<Table> |
BigQuery.listTables(DatasetId datasetId,
BigQuery.TableListOption... options)
Lists the tables in the dataset.
|
Page<Table> |
BigQuery.listTables(String datasetId,
BigQuery.TableListOption... options)
Lists the tables in the dataset.
|
Copyright © 2019 Google LLC. All rights reserved.