Modifier and Type | Class and Description |
---|---|
class |
Bigquery.Tables.Delete |
class |
Bigquery.Tables.Get |
class |
Bigquery.Tables.Insert |
class |
Bigquery.Tables.List |
class |
Bigquery.Tables.Patch |
class |
Bigquery.Tables.Update |
Constructor and Description |
---|
Bigquery.Tables() |
Modifier and Type | Method and Description |
---|---|
Bigquery.Tables.Delete |
delete(String projectId,
String datasetId,
String tableId)
Deletes the table specified by tableId from the dataset.
|
Bigquery.Tables.Get |
get(String projectId,
String datasetId,
String tableId)
Gets the specified table resource by table ID.
|
Bigquery.Tables.Insert |
insert(String projectId,
String datasetId,
Table content)
Creates a new, empty table in the dataset.
|
Bigquery.Tables.List |
list(String projectId,
String datasetId)
Lists all tables in the specified dataset.
|
Bigquery.Tables.Patch |
patch(String projectId,
String datasetId,
String tableId,
Table content)
Updates information in an existing table.
|
Bigquery.Tables.Update |
update(String projectId,
String datasetId,
String tableId,
Table content)
Updates information in an existing table.
|
public Bigquery.Tables.Delete delete(String projectId, String datasetId, String tableId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the table to deletedatasetId
- Dataset ID of the table to deletetableId
- Table ID of the table to deleteIOException
public Bigquery.Tables.Get get(String projectId, String datasetId, String tableId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the requested tabledatasetId
- Dataset ID of the requested tabletableId
- Table ID of the requested tableIOException
public Bigquery.Tables.Insert insert(String projectId, String datasetId, Table content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the new tabledatasetId
- Dataset ID of the new tablecontent
- the Table
IOException
public Bigquery.Tables.List list(String projectId, String datasetId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the tables to listdatasetId
- Dataset ID of the tables to listIOException
public Bigquery.Tables.Patch patch(String projectId, String datasetId, String tableId, Table content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the table to updatedatasetId
- Dataset ID of the table to updatetableId
- Table ID of the table to updatecontent
- the Table
IOException
public Bigquery.Tables.Update update(String projectId, String datasetId, String tableId, Table content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the table to updatedatasetId
- Dataset ID of the table to updatetableId
- Table ID of the table to updatecontent
- the Table
IOException