module TablesResource: sig .. end
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the table to delete
datasetId : Dataset ID of the table to delete
tableId : Table ID of the table to delete
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Table.t * GapiConversation.Session.t
Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.
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 table
datasetId : Dataset ID of the requested table
tableId : Table ID of the requested table
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
GapiBigqueryV2Model.Table.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Table.t * GapiConversation.Session.t
Creates a new, empty table in the 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 table
datasetId : Dataset ID of the new table
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
projectId:string ->
datasetId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.TableList.t * GapiConversation.Session.t
Lists all tables in the specified dataset. Requires the READER dataset role.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
maxResults : 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 tables to list
datasetId : Dataset ID of the tables to list
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiBigqueryV2Model.Table.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Table.t * GapiConversation.Session.t
Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table 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 table to update
datasetId : Dataset ID of the table to update
tableId : Table ID of the table to update
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiBigqueryV2Model.Table.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Table.t * GapiConversation.Session.t
Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table 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 table to update
datasetId : Dataset ID of the table to update
tableId : Table ID of the table to update