Uses of Class
com.google.cloud.bigquery.TableInfo
-
Packages that use TableInfo Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of TableInfo in com.google.cloud.bigquery
Subclasses of TableInfo in com.google.cloud.bigquery Modifier and Type Class Description class
Table
A Google BigQuery Table.Methods in com.google.cloud.bigquery that return TableInfo Modifier and Type Method Description abstract TableInfo
TableInfo.Builder. build()
Creates aTableInfo
object.static TableInfo
TableInfo. of(TableId tableId, TableDefinition definition)
Returns aTableInfo
object given table identity and definition.Methods in com.google.cloud.bigquery with parameters of type TableInfo Modifier and Type Method Description Table
BigQuery. create(TableInfo tableInfo, BigQuery.TableOption... options)
Creates a new table.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(TableInfo tableInfo, Iterable<InsertAllRequest.RowToInsert> rows)
Returns a builder for anInsertAllRequest
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.Table
BigQuery. update(TableInfo tableInfo, BigQuery.TableOption... options)
Updates table information.
-