Uses of Class
com.google.cloud.bigquery.InsertAllRequest.RowToInsert
-
Packages that use InsertAllRequest.RowToInsert Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of InsertAllRequest.RowToInsert in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return InsertAllRequest.RowToInsert Modifier and Type Method Description static InsertAllRequest.RowToInsert
InsertAllRequest.RowToInsert. of(String id, Map<String,?> content)
Creates a row to be inserted with associated id.static InsertAllRequest.RowToInsert
InsertAllRequest.RowToInsert. of(Map<String,?> content)
Creates a row to be inserted without associated id.Methods in com.google.cloud.bigquery that return types with arguments of type InsertAllRequest.RowToInsert Modifier and Type Method Description List<InsertAllRequest.RowToInsert>
InsertAllRequest. getRows()
Returns the rows to be inserted.Methods in com.google.cloud.bigquery with parameters of type InsertAllRequest.RowToInsert Modifier and Type Method Description InsertAllRequest.Builder
InsertAllRequest.Builder. addRow(InsertAllRequest.RowToInsert rowToInsert)
Adds a row to be inserted.static InsertAllRequest.Builder
InsertAllRequest. newBuilder(TableId table, InsertAllRequest.RowToInsert... rows)
Returns a builder for anInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest.Builder
InsertAllRequest. newBuilder(TableInfo tableInfo, InsertAllRequest.RowToInsert... rows)
Returns a builder for anInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest.Builder
InsertAllRequest. newBuilder(String datasetId, String tableId, InsertAllRequest.RowToInsert... rows)
Returns a builder for anInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(TableId tableId, InsertAllRequest.RowToInsert... rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(TableInfo tableInfo, InsertAllRequest.RowToInsert... rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(String datasetId, String tableId, InsertAllRequest.RowToInsert... rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.Method parameters in com.google.cloud.bigquery with type arguments of type InsertAllRequest.RowToInsert Modifier and Type Method Description InsertAllResponse
Table. insert(Iterable<InsertAllRequest.RowToInsert> rows)
Insert rows into the table.InsertAllResponse
Table. insert(Iterable<InsertAllRequest.RowToInsert> rows, boolean skipInvalidRows, boolean ignoreUnknownValues)
Insert rows into the table.static InsertAllRequest.Builder
InsertAllRequest. newBuilder(TableId table, Iterable<InsertAllRequest.RowToInsert> rows)
Returns a builder for anInsertAllRequest
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 anInsertAllRequest
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 anInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(TableId tableId, Iterable<InsertAllRequest.RowToInsert> rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(TableInfo tableInfo, Iterable<InsertAllRequest.RowToInsert> rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.static InsertAllRequest
InsertAllRequest. of(String datasetId, String tableId, Iterable<InsertAllRequest.RowToInsert> rows)
Returns aInsertAllRequest
object given the destination table and the rows to insert.InsertAllRequest.Builder
InsertAllRequest.Builder. setRows(Iterable<InsertAllRequest.RowToInsert> rows)
Sets the rows to insert as a list ofInsertAllRequest.RowToInsert
objects.
-