module DatasetsResource: sig .. end
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?deleteContents:bool ->
projectId:string ->
datasetId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Deletes the dataset specified by the datasetId value. Before you can delete a dataset, you must delete all its tables, either manually or by specifying deleteContents. Immediately after deletion, you can create another dataset with the same name.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
deleteContents : If True, delete all the tables in the dataset. If False and the dataset contains tables, the request will fail. Default is False
projectId : Project ID of the dataset being deleted
datasetId : Dataset ID of dataset being deleted
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Dataset.t * GapiConversation.Session.t
Returns the dataset specified by datasetID.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
projectId : Project ID of the requested dataset
datasetId : Dataset ID of the requested dataset
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
GapiBigqueryV2Model.Dataset.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Dataset.t * GapiConversation.Session.t
Creates a new empty dataset.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the new dataset
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?all:bool ->
?maxResults:int ->
?pageToken:string ->
projectId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.DatasetList.t * GapiConversation.Session.t
Lists all datasets in the specified project to which you have been granted the READER dataset role.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
all : Whether to list all datasets, including hidden ones
maxResults : The maximum number of results to return
pageToken : Page token, returned by a previous call, to request the next page of results
projectId : Project ID of the datasets to be listed
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
GapiBigqueryV2Model.Dataset.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Dataset.t * GapiConversation.Session.t
Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted dataset resource. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the dataset being updated
datasetId : Dataset ID of the dataset being updated
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
GapiBigqueryV2Model.Dataset.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Dataset.t * GapiConversation.Session.t
Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted dataset resource.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the dataset being updated
datasetId : Dataset ID of the dataset being updated