Job |
Table.copy(TableId destinationTable,
BigQuery.JobOption... options) |
Starts a BigQuery Job to copy the current table to the provided destination table.
|
Job |
Table.copy(String destinationDataset,
String destinationTable,
BigQuery.JobOption... options) |
Starts a BigQuery Job to copy the current table to the provided destination table.
|
Job |
BigQuery.create(JobInfo jobInfo,
BigQuery.JobOption... options) |
Creates a new job.
|
Job |
Table.extract(String format,
String destinationUri,
BigQuery.JobOption... options) |
Starts a BigQuery Job to extract the current table to the provided destination URI.
|
Job |
Table.extract(String format,
List<String> destinationUris,
BigQuery.JobOption... options) |
Starts a BigQuery Job to extract the current table to the provided destination URIs.
|
Job |
BigQuery.getJob(JobId jobId,
BigQuery.JobOption... options) |
Returns the requested job or null if not found.
|
Job |
BigQuery.getJob(String jobId,
BigQuery.JobOption... options) |
Returns the requested job or null if not found.
|
Job |
Table.load(FormatOptions format,
String sourceUri,
BigQuery.JobOption... options) |
Starts a BigQuery Job to load data into the current table from the provided source URI.
|
Job |
Table.load(FormatOptions format,
List<String> sourceUris,
BigQuery.JobOption... options) |
Starts a BigQuery Job to load data into the current table from the provided source URIs.
|
TableResult |
BigQuery.query(QueryJobConfiguration configuration,
BigQuery.JobOption... options) |
Runs the query associated with the request, using an internally-generated random JobId.
|
TableResult |
BigQuery.query(QueryJobConfiguration configuration,
JobId jobId,
BigQuery.JobOption... options) |
Runs the query associated with the request, using the given JobId.
|
Job |
Job.reload(BigQuery.JobOption... options) |
Fetches current job's latest information.
|