Uses of Class
com.google.cloud.bigquery.InsertAllRequest
-
Packages that use InsertAllRequest 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 in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return InsertAllRequest Modifier and Type Method Description InsertAllRequest
InsertAllRequest.Builder. build()
Creates anInsertAllRequest
object.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(TableId tableId, Iterable<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(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, 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.Methods in com.google.cloud.bigquery with parameters of type InsertAllRequest Modifier and Type Method Description InsertAllResponse
BigQuery. insertAll(InsertAllRequest request)
Sends an insert all request.
-