Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaControlFilterAction
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaControlFilterAction
- 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
Specified which products may be included in results. Uses same filter as boost.
Instance Attribute Summary collapse
-
#data_store ⇒ String
Required.
-
#filter ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaControlFilterAction
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaControlFilterAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaControlFilterAction
Returns a new instance of GoogleCloudDiscoveryengineV1alphaControlFilterAction.
10524 10525 10526 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10524 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_store ⇒ String
Required. Specifies which data store's documents can be filtered by this
control. Full data store name e.g. projects/123/locations/global/collections/
default_collection/dataStores/default_data_store
Corresponds to the JSON property dataStore
10515 10516 10517 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10515 def data_store @data_store end |
#filter ⇒ String
Required. A filter to apply on the matching condition results. Required Syntax
documentation: https://cloud.google.com/retail/docs/filter-and-order Maximum
length is 5000 characters. Otherwise an INVALID ARGUMENT error is thrown.
Corresponds to the JSON property filter
10522 10523 10524 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10522 def filter @filter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10529 10530 10531 10532 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 10529 def update!(**args) @data_store = args[:data_store] if args.key?(:data_store) @filter = args[:filter] if args.key?(:filter) end |