Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Configurations for a Chat Engine.
Instance Attribute Summary collapse
-
#agent_creation_config ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfigAgentCreationConfig
Configurations for generating a Dialogflow agent.
-
#dialogflow_agent_to_link ⇒ String
The resource name of an exist Dialogflow agent to link to this Chat Engine.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig
Returns a new instance of GoogleCloudDiscoveryengineV1betaEngineChatEngineConfig.
8152 8153 8154 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8152 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_creation_config ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfigAgentCreationConfig
Configurations for generating a Dialogflow agent. Note that these
configurations are one-time consumed by and passed to Dialogflow service. It
means they cannot be retrieved using EngineService.GetEngine or EngineService.
ListEngines API after engine creation.
Corresponds to the JSON property agentCreationConfig
8138 8139 8140 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8138 def agent_creation_config @agent_creation_config end |
#dialogflow_agent_to_link ⇒ String
The resource name of an exist Dialogflow agent to link to this Chat Engine.
Customers can either provide agent_creation_config
to create agent or
provide an agent name that links the agent with the Chat engine. Format:
projects//locations//agents/
. Note that the dialogflow_agent_to_link
are
one-time consumed by and passed to Dialogflow service. It means they cannot be
retrieved using EngineService.GetEngine or EngineService.ListEngines API after
engine creation. Please use ChatEngineMetadata.dialogflow_agent for actual
agent association after Engine is created.
Corresponds to the JSON property dialogflowAgentToLink
8150 8151 8152 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8150 def dialogflow_agent_to_link @dialogflow_agent_to_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8157 8158 8159 8160 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8157 def update!(**args) @agent_creation_config = args[:agent_creation_config] if args.key?(:agent_creation_config) @dialogflow_agent_to_link = args[:dialogflow_agent_to_link] if args.key?(:dialogflow_agent_to_link) end |