Interface BigqueryTableExternalDataConfigurationBigtableOptionsColumnFamily

    • Method Detail

      • getColumn

        @Stability(Stable)
        @Nullable
        default Object getColumn()
        column block.

        Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_table#column BigqueryTable#column}

      • getEncoding

        @Stability(Stable)
        @Nullable
        default String getEncoding()
        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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_table#encoding BigqueryTable#encoding}

      • getFamilyId

        @Stability(Stable)
        @Nullable
        default String getFamilyId()
        Identifier of the column family.

        Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_table#family_id BigqueryTable#family_id}

      • getOnlyReadLatest

        @Stability(Stable)
        @Nullable
        default Object getOnlyReadLatest()
        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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_table#only_read_latest BigqueryTable#only_read_latest}

      • getType

        @Stability(Stable)
        @Nullable
        default String getType()
        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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/bigquery_table#type BigqueryTable#type}