Uses of Class
com.google.cloud.bigquery.InsertAllRequest.RowToInsert
Packages that use InsertAllRequest.RowToInsert
Package
Description
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.RowToInsertModifier and TypeMethodDescriptionstatic InsertAllRequest.RowToInsertCreates a row to be inserted with associated id.static InsertAllRequest.RowToInsertCreates a row to be inserted without associated id.Methods in com.google.cloud.bigquery that return types with arguments of type InsertAllRequest.RowToInsertMethods in com.google.cloud.bigquery with parameters of type InsertAllRequest.RowToInsertModifier and TypeMethodDescriptionInsertAllRequest.Builder.addRow(InsertAllRequest.RowToInsert rowToInsert) Adds a row to be inserted.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(TableId table, InsertAllRequest.RowToInsert... rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(TableInfo tableInfo, InsertAllRequest.RowToInsert... rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(String datasetId, String tableId, InsertAllRequest.RowToInsert... rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(TableId tableId, InsertAllRequest.RowToInsert... rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(TableInfo tableInfo, InsertAllRequest.RowToInsert... rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(String datasetId, String tableId, InsertAllRequest.RowToInsert... rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.Method parameters in com.google.cloud.bigquery with type arguments of type InsertAllRequest.RowToInsertModifier and TypeMethodDescriptionTable.insert(Iterable<InsertAllRequest.RowToInsert> rows) Insert rows into the table.Table.insert(Iterable<InsertAllRequest.RowToInsert> rows, boolean skipInvalidRows, boolean ignoreUnknownValues) Insert rows into the table.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(TableId table, Iterable<InsertAllRequest.RowToInsert> rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(TableInfo tableInfo, Iterable<InsertAllRequest.RowToInsert> rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequest.BuilderInsertAllRequest.newBuilder(String datasetId, String tableId, Iterable<InsertAllRequest.RowToInsert> rows) Returns a builder for anInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(TableId tableId, Iterable<InsertAllRequest.RowToInsert> rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(TableInfo tableInfo, Iterable<InsertAllRequest.RowToInsert> rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.static InsertAllRequestInsertAllRequest.of(String datasetId, String tableId, Iterable<InsertAllRequest.RowToInsert> rows) Returns aInsertAllRequestobject given the destination table and the rows to insert.InsertAllRequest.Builder.setRows(Iterable<InsertAllRequest.RowToInsert> rows) Sets the rows to insert as a list ofInsertAllRequest.RowToInsertobjects.