Uses of Class
com.google.cloud.bigquery.BigQuery.TableOption
-
Packages that use BigQuery.TableOption Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of BigQuery.TableOption in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return BigQuery.TableOption Modifier and Type Method Description static BigQuery.TableOption
BigQuery.TableOption. autodetectSchema(boolean autodetect)
Returns an option to specify the schema of the table (only applicable for external tables) should be autodetected when updating the table from the underlying source.static BigQuery.TableOption
BigQuery.TableOption. fields(BigQuery.TableField... fields)
Returns an option to specify the table's fields to be returned by the RPC call.static BigQuery.TableOption
BigQuery.TableOption. tableMetadataView(BigQuery.TableMetadataView tableMetadataView)
Returns an option to specify the metadata of the table.Methods in com.google.cloud.bigquery with parameters of type BigQuery.TableOption Modifier and Type Method Description Table
BigQuery. create(TableInfo tableInfo, BigQuery.TableOption... options)
Creates a new table.Table
Dataset. create(String tableId, TableDefinition definition, BigQuery.TableOption... options)
Creates a new table in this dataset.Table
Dataset. get(String tableId, BigQuery.TableOption... options)
Returns the requested table in this dataset ornull
if not found.Table
BigQuery. getTable(TableId tableId, BigQuery.TableOption... options)
Returns the requested table ornull
if not found.Table
BigQuery. getTable(String datasetId, String tableId, BigQuery.TableOption... options)
Returns the requested table ornull
if not found.Table
Table. reload(BigQuery.TableOption... options)
Fetches current table's latest information.Table
BigQuery. update(TableInfo tableInfo, BigQuery.TableOption... options)
Updates table information.Table
Table. update(BigQuery.TableOption... options)
Updates the table's information with this table's information.
-