Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBigtableOptions
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBigtableOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
The Bigtable Options object that contains information to support the import.
Instance Attribute Summary collapse
-
#families ⇒ Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBigtableOptionsBigtableColumnFamily>
The mapping from family names to an object that contains column families level information for the given column family.
-
#key_field_name ⇒ String
The field name used for saving row key value in the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaBigtableOptions
constructor
A new instance of GoogleCloudDiscoveryengineV1betaBigtableOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaBigtableOptions
Returns a new instance of GoogleCloudDiscoveryengineV1betaBigtableOptions.
11709 11710 11711 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 11709 def initialize(**args) update!(**args) end |
Instance Attribute Details
#families ⇒ Hash<String,Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaBigtableOptionsBigtableColumnFamily>
The mapping from family names to an object that contains column families level
information for the given column family. If a family is not present in this
map it will be ignored.
Corresponds to the JSON property families
11701 11702 11703 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 11701 def families @families end |
#key_field_name ⇒ String
The field name used for saving row key value in the document. The name has to
match the pattern a-zA-Z0-9*.
Corresponds to the JSON property keyFieldName
11707 11708 11709 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 11707 def key_field_name @key_field_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11714 11715 11716 11717 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 11714 def update!(**args) @families = args[:families] if args.key?(:families) @key_field_name = args[:key_field_name] if args.key?(:key_field_name) end |