TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn

data class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn(val encoding: String? = null, val fieldName: String? = null, val onlyReadLatest: Boolean? = null, val qualifierEncoded: String? = null, val qualifierString: String? = null, val type: String? = null)

Constructors

constructor(encoding: String? = null, fieldName: String? = null, onlyReadLatest: Boolean? = null, qualifierEncoded: String? = null, qualifierString: String? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val encoding: 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. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels.

Link copied to clipboard
val fieldName: String? = null

If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z0-9_*, a valid identifier must be provided as the column field name and is used as field name in queries.

Link copied to clipboard
val onlyReadLatest: Boolean? = null

If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.

Link copied to clipboard

Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field. If the qualifier is valid UTF-8 string, it can be specified in the qualifierString field. Otherwise, a base-64 encoded value must be set to qualifierEncoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z0-9_*, a valid identifier must be provided as fieldName.

Link copied to clipboard
val qualifierString: String? = null

Qualifier string.

Link copied to clipboard
val type: String? = null

The type to convert the value in cells of this column. 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". 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.