TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs

data class TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs(val columns: Output<List<TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs>>? = null, val encoding: Output<String>? = null, val familyId: Output<String>? = null, val onlyReadLatest: Output<Boolean>? = null, val type: Output<String>? = null) : ConvertibleToJava<TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs>

Constructors

constructor(columns: Output<List<TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs>>? = null, encoding: Output<String>? = null, familyId: Output<String>? = null, onlyReadLatest: Output<Boolean>? = null, type: Output<String>? = null)

Properties

Link copied to clipboard

A List of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as Other columns can be accessed as a list through column field. Structure is documented below.

Link copied to clipboard
val encoding: Output<String>? = null

The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.

Link copied to clipboard
val familyId: Output<String>? = null

Identifier of the column family.

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

If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.

Link copied to clipboard
val type: Output<String>? = null

The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON". Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.

Functions

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