Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec
- 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
A struct to define data stores to filter on in a search call and
configurations for those data stores. Otherwise, an INVALID_ARGUMENT
error
is returned.
Instance Attribute Summary collapse
-
#data_store ⇒ String
Required.
-
#filter ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec
constructor
A new instance of GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec
Returns a new instance of GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec.
7824 7825 7826 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7824 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_store ⇒ String
Required. Full resource name of DataStore, such as projects/
project/
locations/
location/collections/
collection_id/dataStores/
data_store_id`.
Corresponds to the JSON property
dataStore`
7815 7816 7817 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7815 def data_store @data_store end |
#filter ⇒ String
Optional. Filter specification to filter documents in the data store specified
by data_store field. For more information on filtering, see Filtering
Corresponds to the JSON property filter
7822 7823 7824 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7822 def filter @filter end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7829 7830 7831 7832 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7829 def update!(**args) @data_store = args[:data_store] if args.key?(:data_store) @filter = args[:filter] if args.key?(:filter) end |