module JobsResource: sig .. end
module StateFilter: sig .. end
module Projection: sig .. end
val cancel : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
jobId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.JobCancelResponse.t * GapiConversation.Session.t
Requests that a job be cancelled. This call will return immediately, and the client will need to poll for the job status to see if the cancel completed successfully. Cancelled jobs may still incur costs.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the job to cancel
jobId : Job ID of the job to cancel
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
jobId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Job.t * GapiConversation.Session.t
Returns information about a specific job. Job information is available for a six month period after creation. Requires that you're the person who ran the job, or have the Is Owner project role.
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 job
jobId : Job ID of the requested job
val getQueryResults : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
?startIndex:string ->
?timeoutMs:int ->
projectId:string ->
jobId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.GetQueryResultsResponse.t * GapiConversation.Session.t
Retrieves the results of a query job.
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 read
pageToken : Page token, returned by a previous call, to request the next page of results
startIndex : Zero-based index of the starting row
timeoutMs : How long to wait for the query to complete, in milliseconds, before returning. Default is 10 seconds. If the timeout passes before the job completes, the 'jobComplete' field in the response will be false
projectId : Project ID of the query job
jobId : Job ID of the query job
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?media_source:GapiMediaResource.t ->
projectId:string ->
GapiBigqueryV2Model.Job.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.Job.t * GapiConversation.Session.t
Starts a new asynchronous job. Requires the Can View project 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 project that will be billed for the job
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?allUsers:bool ->
?maxResults:int ->
?pageToken:string ->
?projection:Projection.t ->
?stateFilter:StateFilter.t list ->
projectId:string ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.JobList.t * GapiConversation.Session.t
Lists all jobs that you started in the specified project. Job information is available for a six month period after creation. The job list is sorted in reverse chronological order, by job creation time. Requires the Can View project role, or the Is Owner project role if you set the allUsers property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
allUsers : Whether to display jobs owned by all users in the project. Default false
maxResults : Maximum number of results to return
pageToken : Page token, returned by a previous call, to request the next page of results
projection : Restrict information returned to a set of selected fields
stateFilter : Filter for job state
projectId : Project ID of the jobs to list
val query : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
projectId:string ->
GapiBigqueryV2Model.QueryRequest.t ->
GapiConversation.Session.t ->
GapiBigqueryV2Model.QueryResponse.t * GapiConversation.Session.t
Runs a BigQuery SQL query synchronously and returns query results if the query completes within a specified timeout.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/bigquery/v2/").
std_params : Optional standard parameters.
projectId : Project ID of the project billed for the query