Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
The column of the Bigtable.
Instance Attribute Summary collapse
-
#encoding ⇒ String
The encoding mode of the values when the type is not
STRING
. -
#field_name ⇒ String
The field name to use for this column in the document.
-
#qualifier ⇒ String
Required.
-
#type ⇒ String
The type of values in this column family.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn
constructor
A new instance of GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn
Returns a new instance of GoogleCloudDiscoveryengineV1BigtableOptionsBigtableColumn.
2388 2389 2390 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encoding ⇒ String
The encoding mode 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 usingHBase Bytes.toBytes
family of functions. This can be overridden for a specific column by listing that column incolumns
and specifying an encoding for it. Corresponds to the JSON propertyencoding
2364 2365 2366 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2364 def encoding @encoding end |
#field_name ⇒ String
The field name to use for this column in the document. The name has to match
the pattern a-zA-Z0-9*
. If not set, it is parsed from the qualifier bytes
with best effort. However, due to different naming patterns, field name
collisions could happen, where parsing behavior is undefined.
Corresponds to the JSON property fieldName
2372 2373 2374 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2372 def field_name @field_name end |
#qualifier ⇒ String
Required. Qualifier of the column. If it cannot be decoded with utf-8, use a
base-64 encoded string instead.
Corresponds to the JSON property qualifier
NOTE: Values are automatically base64 encoded/decoded in the client library.
2379 2380 2381 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2379 def qualifier @qualifier end |
#type ⇒ String
The type of values in this column family. The values are expected to be
encoded using HBase Bytes.toBytes
function when the encoding value is set to
BINARY
.
Corresponds to the JSON property type
2386 2387 2388 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2386 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2393 2394 2395 2396 2397 2398 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2393 def update!(**args) @encoding = args[:encoding] if args.key?(:encoding) @field_name = args[:field_name] if args.key?(:field_name) @qualifier = args[:qualifier] if args.key?(:qualifier) @type = args[:type] if args.key?(:type) end |