TableExternalDataConfigurationBigtableOptionsArgs

data class TableExternalDataConfigurationBigtableOptionsArgs(val columnFamilies: Output<List<TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs>>? = null, val ignoreUnspecifiedColumnFamilies: Output<Boolean>? = null, val outputColumnFamiliesAsJson: Output<Boolean>? = null, val readRowkeyAsString: Output<Boolean>? = null) : ConvertibleToJava<TableExternalDataConfigurationBigtableOptionsArgs>

Constructors

constructor(columnFamilies: Output<List<TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs>>? = null, ignoreUnspecifiedColumnFamilies: Output<Boolean>? = null, outputColumnFamiliesAsJson: Output<Boolean>? = null, readRowkeyAsString: Output<Boolean>? = null)

Properties

Link copied to clipboard

A list of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable. Structure is documented below.

Link copied to clipboard

If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.

Link copied to clipboard
val outputColumnFamiliesAsJson: Output<Boolean>? = null

If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.

Link copied to clipboard
val readRowkeyAsString: Output<Boolean>? = null

If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.

Functions

Link copied to clipboard
open override fun toJava(): TableExternalDataConfigurationBigtableOptionsArgs