Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
- 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_connections ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1DataStoreConnection>
Corresponds to the JSON property
dataStoreConnections. -
#enabled ⇒ Boolean
(also: #enabled?)
Corresponds to the JSON property
enabled. -
#target_flow ⇒ String
Corresponds to the JSON property
targetFlow. -
#target_page ⇒ String
Corresponds to the JSON property
targetPage. -
#trigger_fulfillment ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Fulfillment
Corresponds to the JSON property
triggerFulfillment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings.
11439 11440 11441 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11439 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_store_connections ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1DataStoreConnection>
Corresponds to the JSON property dataStoreConnections
11416 11417 11418 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11416 def data_store_connections @data_store_connections end |
#enabled ⇒ Boolean Also known as: enabled?
Corresponds to the JSON property enabled
11421 11422 11423 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11421 def enabled @enabled end |
#target_flow ⇒ String
Corresponds to the JSON property targetFlow
11427 11428 11429 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11427 def target_flow @target_flow end |
#target_page ⇒ String
Corresponds to the JSON property targetPage
11432 11433 11434 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11432 def target_page @target_page end |
#trigger_fulfillment ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Fulfillment
Corresponds to the JSON property triggerFulfillment
11437 11438 11439 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11437 def trigger_fulfillment @trigger_fulfillment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11444 11445 11446 11447 11448 11449 11450 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11444 def update!(**args) @data_store_connections = args[:data_store_connections] if args.key?(:data_store_connections) @enabled = args[:enabled] if args.key?(:enabled) @target_flow = args[:target_flow] if args.key?(:target_flow) @target_page = args[:target_page] if args.key?(:target_page) @trigger_fulfillment = args[:trigger_fulfillment] if args.key?(:trigger_fulfillment) end |