Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnection
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnection
- 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
Instance Attribute Summary collapse
-
#data_store ⇒ String
Corresponds to the JSON property
dataStore. -
#data_store_type ⇒ String
Corresponds to the JSON property
dataStoreType. -
#document_processing_mode ⇒ String
Corresponds to the JSON property
documentProcessingMode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DataStoreConnection
constructor
A new instance of GoogleCloudDialogflowCxV3DataStoreConnection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DataStoreConnection
Returns a new instance of GoogleCloudDialogflowCxV3DataStoreConnection.
1303 1304 1305 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_store ⇒ String
Corresponds to the JSON property dataStore
1291 1292 1293 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1291 def data_store @data_store end |
#data_store_type ⇒ String
Corresponds to the JSON property dataStoreType
1296 1297 1298 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1296 def data_store_type @data_store_type end |
#document_processing_mode ⇒ String
Corresponds to the JSON property documentProcessingMode
1301 1302 1303 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1301 def document_processing_mode @document_processing_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1308 1309 1310 1311 1312 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1308 def update!(**args) @data_store = args[:data_store] if args.key?(:data_store) @data_store_type = args[:data_store_type] if args.key?(:data_store_type) @document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode) end |