Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

The Bigtable Options object that contains information to support the import.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaBigtableOptions

Returns a new instance of GoogleCloudDiscoveryengineV1alphaBigtableOptions.



4022
4023
4024
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4022

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#familiesHash<String,Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptionsBigtableColumnFamily>

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



4014
4015
4016
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4014

def families
  @families
end

#key_field_nameString

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

Returns:

  • (String)


4020
4021
4022
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4020

def key_field_name
  @key_field_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4027
4028
4029
4030
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4027

def update!(**args)
  @families = args[:families] if args.key?(:families)
  @key_field_name = args[:key_field_name] if args.key?(:key_field_name)
end