Liking cljdoc? Tell your friends :D

happygapi.bigquery.jobs

BigQuery API: jobs. A data platform for customers to create, manage, share and query data. See: https://cloud.google.com/bigquery/api/reference/rest/v2/jobs

BigQuery API: jobs.
A data platform for customers to create, manage, share and query data.
See: https://cloud.google.com/bigquery/api/reference/rest/v2/jobs
raw docstring

cancel$clj

(cancel$ auth parameters)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/cancel

Required parameters: projectId, jobId

Optional parameters: location

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.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/cancel

Required parameters: projectId, jobId

Optional parameters: location

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.
sourceraw docstring

delete$clj

(delete$ auth parameters)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/delete

Required parameters: jobId, projectId

Optional parameters: location

Requests that a job is deleted. This call will return when the job is deleted. This method is available in limited preview.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/delete

Required parameters: jobId, projectId

Optional parameters: location

Requests that a job is deleted. This call will return when the job is deleted. This method is available in limited preview.
sourceraw docstring

get$clj

(get$ auth parameters)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/get

Required parameters: jobId, projectId

Optional parameters: location

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.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/get

Required parameters: jobId, projectId

Optional parameters: location

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.
sourceraw docstring

getQueryResults$clj

(getQueryResults$ auth parameters)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/getQueryResults

Required parameters: jobId, projectId

Optional parameters: timeoutMs, pageToken, maxResults, startIndex, location

Retrieves the results of a query job.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/getQueryResults

Required parameters: jobId, projectId

Optional parameters: timeoutMs, pageToken, maxResults, startIndex, location

Retrieves the results of a query job.
sourceraw docstring

insert$clj

(insert$ auth parameters body)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/insert

Required parameters: projectId

Optional parameters: none

Body:

{:selfLink string, :etag string, :user_email string, :jobReference {:jobId string, :location string, :projectId string}, :statistics {:reservation_id string, :creationTime string, :load JobStatistics3, :transactionInfo TransactionInfo, :startTime string, :reservationUsage [{:slotMs string, :name string}], :endTime string, :totalSlotMs string, :completionRatio number, :numChildJobs string, :parentJobId string, :rowLevelSecurityStatistics RowLevelSecurityStatistics, :extract JobStatistics4, :totalBytesProcessed string, :scriptStatistics ScriptStatistics, :quotaDeferments [string], :query JobStatistics2, :sessionInfo SessionInfo}, :status {:errors [ErrorProto], :errorResult ErrorProto, :state string}, :id string, :kind string, :configuration {:extract JobConfigurationExtract, :load JobConfigurationLoad, :jobType string, :copy JobConfigurationTableCopy, :query JobConfigurationQuery, :dryRun boolean, :labels {}, :jobTimeoutMs string}}

Starts a new asynchronous job. Requires the Can View project role.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/insert

Required parameters: projectId

Optional parameters: none

Body: 

{:selfLink string,
 :etag string,
 :user_email string,
 :jobReference {:jobId string, :location string, :projectId string},
 :statistics {:reservation_id string,
              :creationTime string,
              :load JobStatistics3,
              :transactionInfo TransactionInfo,
              :startTime string,
              :reservationUsage [{:slotMs string, :name string}],
              :endTime string,
              :totalSlotMs string,
              :completionRatio number,
              :numChildJobs string,
              :parentJobId string,
              :rowLevelSecurityStatistics RowLevelSecurityStatistics,
              :extract JobStatistics4,
              :totalBytesProcessed string,
              :scriptStatistics ScriptStatistics,
              :quotaDeferments [string],
              :query JobStatistics2,
              :sessionInfo SessionInfo},
 :status {:errors [ErrorProto],
          :errorResult ErrorProto,
          :state string},
 :id string,
 :kind string,
 :configuration {:extract JobConfigurationExtract,
                 :load JobConfigurationLoad,
                 :jobType string,
                 :copy JobConfigurationTableCopy,
                 :query JobConfigurationQuery,
                 :dryRun boolean,
                 :labels {},
                 :jobTimeoutMs string}}

Starts a new asynchronous job. Requires the Can View project role.
sourceraw docstring

list$clj

(list$ auth parameters)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/list

Required parameters: projectId

Optional parameters: allUsers, maxCreationTime, pageToken, parentJobId, stateFilter, projection, maxResults, minCreationTime

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.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/list

Required parameters: projectId

Optional parameters: allUsers, maxCreationTime, pageToken, parentJobId, stateFilter, projection, maxResults, minCreationTime

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.
sourceraw docstring

query$clj

(query$ auth parameters body)

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/query

Required parameters: projectId

Optional parameters: none

Body:

{:dryRun boolean, :labels {}, :maximumBytesBilled string, :queryParameters [{:name string, :parameterType QueryParameterType, :parameterValue QueryParameterValue}], :parameterMode string, :connectionProperties [{:key string, :value string}], :defaultDataset {:projectId string, :datasetId string}, :preserveNulls boolean, :timeoutMs integer, :requestId string, :kind string, :useQueryCache boolean, :query string, :useLegacySql boolean, :location string, :createSession boolean, :maxResults integer}

Runs a BigQuery SQL query synchronously and returns query results if the query completes within a specified timeout.

https://cloud.google.com/bigquery/api/reference/rest/v2/jobs/query

Required parameters: projectId

Optional parameters: none

Body: 

{:dryRun boolean,
 :labels {},
 :maximumBytesBilled string,
 :queryParameters [{:name string,
                    :parameterType QueryParameterType,
                    :parameterValue QueryParameterValue}],
 :parameterMode string,
 :connectionProperties [{:key string, :value string}],
 :defaultDataset {:projectId string, :datasetId string},
 :preserveNulls boolean,
 :timeoutMs integer,
 :requestId string,
 :kind string,
 :useQueryCache boolean,
 :query string,
 :useLegacySql boolean,
 :location string,
 :createSession boolean,
 :maxResults integer}

Runs a BigQuery SQL query synchronously and returns query results if the query completes within a specified timeout.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close