Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SearchConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SearchConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Search configuration for UCS search queries.
Instance Attribute Summary collapse
-
#boost_specs ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecs>
Optional.
-
#filter_specs ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FilterSpecs>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3SearchConfig
constructor
A new instance of GoogleCloudDialogflowCxV3SearchConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3SearchConfig
Returns a new instance of GoogleCloudDialogflowCxV3SearchConfig.
6933 6934 6935 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6933 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boost_specs ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecs>
Optional. Boosting configuration for the datastores.
Corresponds to the JSON property boostSpecs
6926 6927 6928 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6926 def boost_specs @boost_specs end |
#filter_specs ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FilterSpecs>
Optional. Filter configuration for the datastores.
Corresponds to the JSON property filterSpecs
6931 6932 6933 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6931 def filter_specs @filter_specs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6938 6939 6940 6941 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6938 def update!(**args) @boost_specs = args[:boost_specs] if args.key?(:boost_specs) @filter_specs = args[:filter_specs] if args.key?(:filter_specs) end |