Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FilterSpecs

Inherits:
Object
  • Object
show all
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

Filter specifications for data stores.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FilterSpecs

Returns a new instance of GoogleCloudDialogflowCxV3FilterSpecs.



2539
2540
2541
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2539

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>)


2530
2531
2532
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2530

def data_stores
  @data_stores
end

#filterString

Optional. The filter expression to be applied. Expression syntax is documented at https://cloud.google.com/generative-ai-app-builder/docs/filter-search- metadata#filter-expression-syntax Corresponds to the JSON property filter

Returns:

  • (String)


2537
2538
2539
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2537

def filter
  @filter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2544
2545
2546
2547
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2544

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