| Package | Description |
|---|---|
| com.google.cloud.bigquery |
A client to Google Cloud BigQuery.
|
| Modifier and Type | Method and Description |
|---|---|
TableId |
WriteChannelConfiguration.destinationTable() |
TableId |
QueryJobConfiguration.destinationTable()
Returns the table where to put query results.
|
TableId |
LoadJobConfiguration.destinationTable() |
TableId |
LoadConfiguration.destinationTable()
Returns the destination table to load the data into.
|
TableId |
CopyJobConfiguration.destinationTable()
Returns the destination table to load the data into.
|
TableId |
Acl.View.id()
Returns table's identity.
|
static TableId |
TableId.of(String dataset,
String table)
Creates a table identity given dataset's and table's user-defined ids.
|
static TableId |
TableId.of(String project,
String dataset,
String table)
Creates a table identity given project's, dataset's and table's user-defined ids.
|
TableId |
ExtractJobConfiguration.sourceTable()
Returns the table to export.
|
TableId |
InsertAllRequest.table()
Returns the destination table for rows insert request.
|
TableId |
TableInfo.tableId()
Returns the table identity.
|
| Modifier and Type | Method and Description |
|---|---|
List<TableId> |
CopyJobConfiguration.sourceTables()
Returns the source tables to copy.
|
| Modifier and Type | Method and Description |
|---|---|
static WriteChannelConfiguration.Builder |
WriteChannelConfiguration.builder(TableId destinationTable)
Creates a builder for a BigQuery Load Configuration given the destination table.
|
static InsertAllRequest.Builder |
InsertAllRequest.builder(TableId table)
Returns a builder for an
InsertAllRequest object given the destination table. |
static WriteChannelConfiguration.Builder |
WriteChannelConfiguration.builder(TableId destinationTable,
FormatOptions format)
Creates a builder for a BigQuery Load Configuration given the destination table and format.
|
static InsertAllRequest.Builder |
InsertAllRequest.builder(TableId table,
InsertAllRequest.RowToInsert... rows)
Returns a builder for an
InsertAllRequest object given the destination table and the
rows to insert. |
static InsertAllRequest.Builder |
InsertAllRequest.builder(TableId table,
Iterable<InsertAllRequest.RowToInsert> rows)
Returns a builder for an
InsertAllRequest object given the destination table and the
rows to insert. |
static LoadJobConfiguration.Builder |
LoadJobConfiguration.builder(TableId destinationTable,
List<String> sourceUris)
Creates a builder for a BigQuery Load Job configuration given the destination table and source
URIs.
|
static ExtractJobConfiguration.Builder |
ExtractJobConfiguration.builder(TableId sourceTable,
List<String> destinationUris)
Creates a builder for a BigQuery Extract Job configuration given source table and destination
URIs.
|
static LoadJobConfiguration.Builder |
LoadJobConfiguration.builder(TableId destinationTable,
List<String> sourceUris,
FormatOptions format)
Creates a builder for a BigQuery Load Job configuration given the destination table, format and
source URIs.
|
static CopyJobConfiguration.Builder |
CopyJobConfiguration.builder(TableId destinationTable,
List<TableId> sourceTables)
Creates a builder for a BigQuery Copy Job configuration given destination and source tables.
|
static LoadJobConfiguration.Builder |
LoadJobConfiguration.builder(TableId destinationTable,
String sourceUri)
Creates a builder for a BigQuery Load Job configuration given the destination table and source
URI.
|
static ExtractJobConfiguration.Builder |
ExtractJobConfiguration.builder(TableId sourceTable,
String destinationUri)
Creates a builder for a BigQuery Extract Job configuration given source table and destination
URI.
|
static LoadJobConfiguration.Builder |
LoadJobConfiguration.builder(TableId destinationTable,
String sourceUri,
FormatOptions format)
Creates a builder for a BigQuery Load Job configuration given the destination table, format and
source URI.
|
static TableInfo.Builder |
TableInfo.builder(TableId tableId,
TableDefinition definition)
Returns a builder for a
TableInfo object given table identity and definition. |
static CopyJobConfiguration.Builder |
CopyJobConfiguration.builder(TableId destinationTable,
TableId sourceTable)
Creates a builder for a BigQuery Copy Job configuration given destination and source table.
|
Job |
Table.copy(TableId destinationTable,
BigQuery.JobOption... options)
Starts a BigQuery Job to copy the current table to the provided destination table.
|
boolean |
BigQuery.delete(TableId tableId)
Deletes the requested table.
|
WriteChannelConfiguration.Builder |
WriteChannelConfiguration.Builder.destinationTable(TableId destinationTable) |
QueryJobConfiguration.Builder |
QueryJobConfiguration.Builder.destinationTable(TableId destinationTable)
Sets the table where to put query results.
|
LoadJobConfiguration.Builder |
LoadJobConfiguration.Builder.destinationTable(TableId destinationTable) |
LoadConfiguration.Builder |
LoadConfiguration.Builder.destinationTable(TableId destinationTable)
Sets the destination table to load the data into.
|
CopyJobConfiguration.Builder |
CopyJobConfiguration.Builder.destinationTable(TableId destinationTable)
Sets the destination table of the copy job.
|
Table |
BigQuery.getTable(TableId tableId,
BigQuery.TableOption... options)
Returns the requested table or
null if not found. |
Page<List<FieldValue>> |
BigQuery.listTableData(TableId tableId,
BigQuery.TableDataListOption... options)
Lists the table's rows.
|
static WriteChannelConfiguration |
WriteChannelConfiguration.of(TableId destinationTable)
Returns a BigQuery Load Configuration for the given destination table.
|
static WriteChannelConfiguration |
WriteChannelConfiguration.of(TableId destinationTable,
FormatOptions format)
Returns a BigQuery Load Configuration for the given destination table and format.
|
static InsertAllRequest |
InsertAllRequest.of(TableId tableId,
InsertAllRequest.RowToInsert... rows)
Returns a
InsertAllRequest object given the destination table and the rows to insert. |
static InsertAllRequest |
InsertAllRequest.of(TableId tableId,
Iterable<InsertAllRequest.RowToInsert> rows)
Returns a
InsertAllRequest object given the destination table and the rows to insert. |
static LoadJobConfiguration |
LoadJobConfiguration.of(TableId destinationTable,
List<String> sourceUris)
Returns a BigQuery Load Job Configuration for the given destination table and source URIs.
|
static ExtractJobConfiguration |
ExtractJobConfiguration.of(TableId sourceTable,
List<String> destinationUris)
Returns a BigQuery Extract Job configuration for the given source table and destination URIs.
|
static LoadJobConfiguration |
LoadJobConfiguration.of(TableId destinationTable,
List<String> sourceUris,
FormatOptions format)
Returns a BigQuery Load Job Configuration for the given destination table, format and source
URI.
|
static ExtractJobConfiguration |
ExtractJobConfiguration.of(TableId sourceTable,
List<String> destinationUris,
String format)
Returns a BigQuery Extract Job configuration for the given source table, format and destination
URIs.
|
static CopyJobConfiguration |
CopyJobConfiguration.of(TableId destinationTable,
List<TableId> sourceTables)
Returns a BigQuery Copy Job configuration for the given destination and source tables.
|
static LoadJobConfiguration |
LoadJobConfiguration.of(TableId destinationTable,
String sourceUri)
Returns a BigQuery Load Job Configuration for the given destination table and source URI.
|
static ExtractJobConfiguration |
ExtractJobConfiguration.of(TableId sourceTable,
String destinationUri)
Returns a BigQuery Extract Job configuration for the given source table and destination URI.
|
static LoadJobConfiguration |
LoadJobConfiguration.of(TableId destinationTable,
String sourceUri,
FormatOptions format)
Returns a BigQuery Load Job Configuration for the given destination table, format and source
URI.
|
static ExtractJobConfiguration |
ExtractJobConfiguration.of(TableId sourceTable,
String destinationUri,
String format)
Returns a BigQuery Extract Job configuration for the given source table, format and destination
URI.
|
static TableInfo |
TableInfo.of(TableId tableId,
TableDefinition definition)
Returns a
TableInfo object given table identity and definition. |
static CopyJobConfiguration |
CopyJobConfiguration.of(TableId destinationTable,
TableId sourceTable)
Returns a BigQuery Copy Job configuration for the given destination and source table.
|
ExtractJobConfiguration.Builder |
ExtractJobConfiguration.Builder.sourceTable(TableId sourceTable)
Sets the table to export.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.table(TableId table)
Sets the destination table for rows insert request.
|
abstract TableInfo.Builder |
TableInfo.Builder.tableId(TableId tableId)
Sets the table identity.
|
Table.Builder |
Table.Builder.tableId(TableId tableId) |
| Modifier and Type | Method and Description |
|---|---|
static CopyJobConfiguration.Builder |
CopyJobConfiguration.builder(TableId destinationTable,
List<TableId> sourceTables)
Creates a builder for a BigQuery Copy Job configuration given destination and source tables.
|
static CopyJobConfiguration |
CopyJobConfiguration.of(TableId destinationTable,
List<TableId> sourceTables)
Returns a BigQuery Copy Job configuration for the given destination and source tables.
|
CopyJobConfiguration.Builder |
CopyJobConfiguration.Builder.sourceTables(List<TableId> sourceTables)
Sets the source tables to copy.
|
| Constructor and Description |
|---|
Acl.View(TableId id)
Creates a View entity given the view's id.
|
Copyright © 2016 Google. All rights reserved.