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
Name of the SecuritySettings reference for the agent. Format: projects/<Project ID>/locations/<Location ID>/securitySettings/<Security Settings ID>.
114
116
- name: 'enableStackdriverLogging'
115
117
type: Boolean
118
+
# Ignore read, field is deprecated and conflicts with advanced_settings.logging_settings.enable_stackdriver_logging when it's set
119
+
ignore_read: true
116
120
description: |
117
121
Determines whether this agent should log conversation queries.
122
+
deprecation_message: '`enable_stackdriver_logging` is deprecated and will be removed in a future major release. Please use `advanced_settings.logging_settings.enable_stackdriver_logging`instead.'
118
123
- name: 'enableSpellCorrection'
119
124
type: Boolean
120
125
description: |
@@ -138,6 +143,33 @@ properties:
138
143
description: |
139
144
The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
140
145
Format: gs://bucket/object-name-or-prefix
146
+
- name: 'speechSettings'
147
+
type: NestedObject
148
+
description: |
149
+
Settings for speech to text detection. Exposed at the following levels:
150
+
* Agent level
151
+
* Flow level
152
+
* Page level
153
+
* Parameter level
154
+
properties:
155
+
- name: 'endpointerSensitivity'
156
+
type: Integer
157
+
description: |
158
+
Sensitivity of the speech model that detects the end of speech. Scale from 0 to 100.
159
+
- name: 'noSpeechTimeout'
160
+
type: String
161
+
description: |
162
+
Timeout before detecting no speech.
163
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
164
+
- name: 'useTimeoutBasedEndpointing'
165
+
type: Boolean
166
+
description: |
167
+
Use timeout based endpointing, interpreting endpointer sensitivy as seconds of timeout value.
168
+
- name: 'models'
169
+
type: KeyValuePairs
170
+
description: |
171
+
Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model will be selected for requests from its corresponding language. For more information, see [Speech models](https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).
172
+
An object containing a list of **"key": value** pairs. Example: **{ "name": "wrench", "mass": "1.3kg", "count": "3" }**.
141
173
- name: 'dtmfSettings'
142
174
type: NestedObject
143
175
description: |
@@ -159,6 +191,26 @@ properties:
159
191
type: String
160
192
description: |
161
193
The digit that terminates a DTMF digit sequence.
194
+
- name: 'loggingSettings'
195
+
type: NestedObject
196
+
# Due to inconsistent API behaviour http://b/303056144, ignore read can be removed once fixed
197
+
ignore_read: true
198
+
description: |
199
+
Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels:
200
+
* Agent level
201
+
properties:
202
+
- name: 'enableStackdriverLogging'
203
+
type: Boolean
204
+
description: |
205
+
Enables Google Cloud Logging.
206
+
- name: 'enableInteractionLogging'
207
+
type: Boolean
208
+
description: |
209
+
Enables DF Interaction logging.
210
+
- name: 'enableConsentBasedRedaction'
211
+
type: Boolean
212
+
description: |
213
+
Enables consent-based end-user input redaction, if true, a pre-defined session parameter **$session.params.conversation-redaction** will be used to determine if the utterance should be redacted.
Copy file name to clipboardExpand all lines: mmv1/products/dialogflowcx/Flow.yaml
+49
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,8 @@ examples:
42
42
primary_resource_id: 'basic_flow'
43
43
vars:
44
44
agent_name: 'dialogflowcx-agent'
45
+
ignore_read_extra:
46
+
- 'advanced_settings.0.logging_settings'
45
47
- name: 'dialogflowcx_flow_full'
46
48
primary_resource_id: 'basic_flow'
47
49
vars:
@@ -564,6 +566,33 @@ properties:
564
566
description: |
565
567
The Google Cloud Storage URI for the exported objects. Whether a full object name, or just a prefix, its usage depends on the Dialogflow operation.
566
568
Format: gs://bucket/object-name-or-prefix
569
+
- name: 'speechSettings'
570
+
type: NestedObject
571
+
description: |
572
+
Settings for speech to text detection. Exposed at the following levels:
573
+
* Agent level
574
+
* Flow level
575
+
* Page level
576
+
* Parameter level
577
+
properties:
578
+
- name: 'endpointerSensitivity'
579
+
type: Integer
580
+
description: |
581
+
Sensitivity of the speech model that detects the end of speech. Scale from 0 to 100.
582
+
- name: 'noSpeechTimeout'
583
+
type: String
584
+
description: |
585
+
Timeout before detecting no speech.
586
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
587
+
- name: 'useTimeoutBasedEndpointing'
588
+
type: Boolean
589
+
description: |
590
+
Use timeout based endpointing, interpreting endpointer sensitivy as seconds of timeout value.
591
+
- name: 'models'
592
+
type: KeyValuePairs
593
+
description: |
594
+
Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model will be selected for requests from its corresponding language. For more information, see [Speech models](https://cloud.google.com/dialogflow/cx/docs/concept/speech-models).
595
+
An object containing a list of **"key": value** pairs. Example: **{ "name": "wrench", "mass": "1.3kg", "count": "3" }**.
567
596
- name: 'dtmfSettings'
568
597
type: NestedObject
569
598
description: |
@@ -585,3 +614,23 @@ properties:
585
614
type: String
586
615
description: |
587
616
The digit that terminates a DTMF digit sequence.
617
+
- name: 'loggingSettings'
618
+
type: NestedObject
619
+
ignore_read: true
620
+
# Ignore read as API does not return loggingSettings back, only accepts in the /create/update API call
621
+
description: |
622
+
Settings for logging. Settings for Dialogflow History, Contact Center messages, StackDriver logs, and speech logging. Exposed at the following levels:
623
+
* Agent level
624
+
properties:
625
+
- name: 'enableStackdriverLogging'
626
+
type: Boolean
627
+
description: |
628
+
Enables Google Cloud Logging.
629
+
- name: 'enableInteractionLogging'
630
+
type: Boolean
631
+
description: |
632
+
Enables DF Interaction logging.
633
+
- name: 'enableConsentBasedRedaction'
634
+
type: Boolean
635
+
description: |
636
+
Enables consent-based end-user input redaction, if true, a pre-defined session parameter **$session.params.conversation-redaction** will be used to determine if the utterance should be redacted.
0 commit comments