Uses of Class
com.google.cloud.bigquery.JobId
-
Packages that use JobId Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of JobId in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return JobId Modifier and Type Method Description abstract JobId
JobId.Builder. build()
JobId
JobException. getId()
The ID for the failed job.JobId
JobInfo. getJobId()
Returns the job identity.JobId
TableResult. getJobId()
static JobId
JobId. of()
Creates a job identity with autogenerated id and no project specified.static JobId
JobId. of(String job)
Creates a job identity given only its user-defined id.static JobId
JobId. of(String project, String job)
Creates a job identity given project's and job's user-defined id.Methods in com.google.cloud.bigquery with parameters of type JobId Modifier and Type Method Description boolean
BigQuery. cancel(JobId jobId)
Sends a job cancel request.boolean
BigQuery. delete(JobId jobId)
Deletes the requested job.Job
BigQuery. getJob(JobId jobId, BigQuery.JobOption... options)
Returns the requested job ornull
if not found.QueryResponse
BigQuery. getQueryResults(JobId jobId, BigQuery.QueryResultsOption... options)
Returns results of the query associated with the provided job.static JobInfo
JobInfo. of(JobId jobId, JobConfiguration configuration)
Returns a builder for aJobInfo
object given the job identity and configuration.TableResult
BigQuery. query(QueryJobConfiguration configuration, JobId jobId, BigQuery.JobOption... options)
Runs the query associated with the request, using the given JobId.Job.Builder
Job.Builder. setJobId(JobId jobId)
abstract JobInfo.Builder
JobInfo.Builder. setJobId(JobId jobId)
Sets the job identity.TableDataWriteChannel
BigQuery. writer(JobId jobId, WriteChannelConfiguration writeChannelConfiguration)
Returns a channel to write data to be inserted into a BigQuery table.Constructors in com.google.cloud.bigquery with parameters of type JobId Constructor Description TableResult(Schema schema, long totalRows, com.google.api.gax.paging.Page<FieldValueList> pageNoSchema, JobId jobId)
-