Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecs

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

Overview

Boost specifications for data stores.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecs

Returns a new instance of GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecs.



18889
18890
18891
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18889

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

Instance Attribute Details

#data_storesArray<String>

Optional. Data Stores where the boosting configuration is applied. The full names of the referenced data stores. Formats: projects/project/locations/ location/collections/collection/dataStores/data_store`projects/`project` /locations/`location`/dataStores/`data_store Corresponds to the JSON property dataStores

Returns:

  • (Array<String>)


18882
18883
18884
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18882

def data_stores
  @data_stores
end

#specArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeRequestSearchConfigBoostSpecsBoostSpec>

Optional. A list of boosting specifications. Corresponds to the JSON property spec



18887
18888
18889
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18887

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18894
18895
18896
18897
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 18894

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