Module GapiBigqueryV2Service.TabledataResource

module TabledataResource: sig .. end

val insertAll : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiBigqueryV2Model.TableDataInsertAllRequest.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.TableDataInsertAllResponse.t * GapiConversation.Session.t
Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the destination table.
datasetId : Dataset ID of the destination table.
tableId : Table ID of the destination table.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
?startIndex:string ->
projectId:string ->
datasetId:string ->
tableId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.TableDataList.t * GapiConversation.Session.t
Retrieves table data from a specified set of rows. 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, identifying the result set
startIndex : Zero-based index of the starting row to read
projectId : Project ID of the table to read
datasetId : Dataset ID of the table to read
tableId : Table ID of the table to read