class Google::Apis::BigqueryV2::BigtableOptions
Attributes
- Optional
-
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. Corresponds to the JSON property `columnFamilies` @return [Array<Google::Apis::BigqueryV2::BigtableColumnFamily>]
- Optional
-
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. Corresponds to the JSON property `ignoreUnspecifiedColumnFamilies` @return [Boolean]
- Optional
-
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. Corresponds to the JSON property `ignoreUnspecifiedColumnFamilies` @return [Boolean]
Public Class Methods
# File generated/google/apis/bigquery_v2/classes.rb, line 177 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/bigquery_v2/classes.rb, line 182 def update!(**args) @column_families = args[:column_families] if args.key?(:column_families) @ignore_unspecified_column_families = args[:ignore_unspecified_column_families] if args.key?(:ignore_unspecified_column_families) end