Modifier and Type | Class and Description |
---|---|
class |
Bigquery.Datasets.Delete |
class |
Bigquery.Datasets.Get |
class |
Bigquery.Datasets.Insert |
class |
Bigquery.Datasets.List |
class |
Bigquery.Datasets.Patch |
class |
Bigquery.Datasets.Update |
Constructor and Description |
---|
Bigquery.Datasets() |
Modifier and Type | Method and Description |
---|---|
Bigquery.Datasets.Delete |
delete(String projectId,
String datasetId)
Deletes the dataset specified by the datasetId value.
|
Bigquery.Datasets.Get |
get(String projectId,
String datasetId)
Returns the dataset specified by datasetID.
|
Bigquery.Datasets.Insert |
insert(String projectId,
Dataset content)
Creates a new empty dataset.
|
Bigquery.Datasets.List |
list(String projectId)
Lists all the datasets in the specified project to which the caller has read access; however, a
project owner can list (but not necessarily get) all datasets in his project.
|
Bigquery.Datasets.Patch |
patch(String projectId,
String datasetId,
Dataset content)
Updates information in an existing dataset.
|
Bigquery.Datasets.Update |
update(String projectId,
String datasetId,
Dataset content)
Updates information in an existing dataset.
|
public Bigquery.Datasets.Delete delete(String projectId, String datasetId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the dataset being deleteddatasetId
- Dataset ID of dataset being deletedIOException
public Bigquery.Datasets.Get get(String projectId, String datasetId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the requested datasetdatasetId
- Dataset ID of the requested datasetIOException
public Bigquery.Datasets.Insert insert(String projectId, Dataset content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the new datasetcontent
- the Dataset
IOException
public Bigquery.Datasets.List list(String projectId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the datasets to be listedIOException
public Bigquery.Datasets.Patch patch(String projectId, String datasetId, Dataset content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the dataset being updateddatasetId
- Dataset ID of the dataset being updatedcontent
- the Dataset
IOException
public Bigquery.Datasets.Update update(String projectId, String datasetId, Dataset content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.projectId
- Project ID of the dataset being updateddatasetId
- Dataset ID of the dataset being updatedcontent
- the Dataset
IOException