GapiBigqueryV2Service.TablesResource
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.
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.
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.
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.
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.
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.