InsertAllRequest.Builder |
InsertAllRequest.Builder.addRow(InsertAllRequest.RowToInsert rowToInsert) |
Adds a row to be inserted.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.addRow(String id,
Map<String,?> content) |
Adds a row to be inserted with associated id.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.addRow(Map<String,?> content) |
Adds a row to be inserted without an associated id.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(TableId table) |
Returns a builder for an InsertAllRequest object given the destination table.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(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.newBuilder(TableId table,
Iterable<InsertAllRequest.RowToInsert> rows) |
Returns a builder for an InsertAllRequest object given the destination table and the
rows to insert.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(TableInfo tableInfo,
InsertAllRequest.RowToInsert... rows) |
Returns a builder for an InsertAllRequest object given the destination table and the
rows to insert.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(TableInfo tableInfo,
Iterable<InsertAllRequest.RowToInsert> rows) |
Returns a builder for an InsertAllRequest object given the destination table and the
rows to insert.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(String datasetId,
String tableId) |
Returns a builder for an InsertAllRequest object given the destination table.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(String datasetId,
String tableId,
InsertAllRequest.RowToInsert... rows) |
Returns a builder for an InsertAllRequest object given the destination table and the
rows to insert.
|
static InsertAllRequest.Builder |
InsertAllRequest.newBuilder(String datasetId,
String tableId,
Iterable<InsertAllRequest.RowToInsert> rows) |
Returns a builder for an InsertAllRequest object given the destination table and the
rows to insert.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.setIgnoreUnknownValues(boolean ignoreUnknownValues) |
Sets whether to accept rows that contain values that do not match the schema.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.setRows(Iterable<InsertAllRequest.RowToInsert> rows) |
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.setSkipInvalidRows(boolean skipInvalidRows) |
Sets whether to insert all valid rows of a request, even if invalid rows exist.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.setTable(TableId table) |
Sets the destination table for rows insert request.
|
InsertAllRequest.Builder |
InsertAllRequest.Builder.setTemplateSuffix(String templateSuffix) |
If specified, the destination table is treated as a base template.
|