You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data stores associated with this engine. Multiple DataStores in the same Collection can be associated here. All listed DataStores must be `SOLUTION_TYPE_CHAT`. Adding or removing data stores will force recreation.
101
106
required: true
102
-
immutable: true
103
107
item_type:
104
108
type: String
105
109
min_size: 1
@@ -125,7 +129,12 @@ properties:
125
129
type: NestedObject
126
130
description: |
127
131
The configuration to generate the Dialogflow agent that is associated to this Engine.
128
-
required: true
132
+
Exactly one of `agent_creation_config` or `dialogflow_agent_to_link` must be set.
133
+
immutable: true
134
+
ignore_read: true
135
+
exactly_one_of:
136
+
- 'chat_engine_config.0.agent_creation_config'
137
+
- 'chat_engine_config.0.dialogflow_agent_to_link'
129
138
properties:
130
139
- name: 'business'
131
140
type: String
@@ -145,6 +154,18 @@ properties:
145
154
type: String
146
155
description: |
147
156
Agent location for Agent creation, currently supported values: global/us/eu, it needs to be the same region as the Chat Engine.
157
+
- name: 'dialogflowAgentToLink'
158
+
type: String
159
+
description: |
160
+
The resource name of an existing Dialogflow agent to link to this Chat Engine. Format: `projects/<Project_ID>/locations/<Location_ID>/agents/<Agent_ID>`.
161
+
Exactly one of `agent_creation_config` or `dialogflow_agent_to_link` must be set.
0 commit comments