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