Skip to content

Commit a01c2cc

Browse files
docs: clarified documentation for security settings docs: clarified documentation for session parameters (#116)
* docs: clarified documentation for security settings docs: clarified documentation for session parameters PiperOrigin-RevId: 374473298 Source-Link: googleapis/googleapis@f57b0b7 Source-Link: googleapis/googleapis-gen@b9a04bc * 🦉 Updates from OwlBot Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent d395085 commit a01c2cc

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/security_settings.proto

+10-5
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ message SecuritySettings {
198198
// Unspecified. Do not use.
199199
PURGE_DATA_TYPE_UNSPECIFIED = 0;
200200

201-
// Dialogflow history. This does not include Stackdriver log, which is
202-
// owned by the user not Dialogflow.
201+
// Dialogflow history. This does not include Cloud logging, which is
202+
// owned by the user - not Dialogflow.
203203
DIALOGFLOW_HISTORY = 1;
204204
}
205205

@@ -215,8 +215,9 @@ message SecuritySettings {
215215
// Strategy that defines how we do redaction.
216216
RedactionStrategy redaction_strategy = 3;
217217

218-
// Defines on what data we apply redaction. Note that we don't
219-
// redact data to which we don't have access, e.g., Stackdriver logs.
218+
// Defines the data for which Dialogflow applies redaction. Dialogflow does
219+
// not redact data that it does not have access to – for example, Cloud
220+
// logging.
220221
RedactionScope redaction_scope = 4;
221222

222223
// DLP inspect template name. Use this template to define inspect base
@@ -233,11 +234,15 @@ message SecuritySettings {
233234
// purged due to retention policy, we may still hold it in backup storage for
234235
// a few days without allowing direct readings.
235236
oneof data_retention {
236-
// Retains the data for the specified number of days.
237+
// Retains data in interaction logging for the specified number of days.
238+
// This does not apply to Cloud logging, which is owned by the user - not
239+
// Dialogflow.
237240
// User must Set a value lower than Dialogflow's default 30d TTL. Setting a
238241
// value higher than that has no effect.
239242
// A missing value or setting to 0 also means we use Dialogflow's default
240243
// TTL.
244+
// Note: Interaction logging is a limited access feature. Talk to your
245+
// Google representative to check availability for you.
241246
int32 retention_window_days = 6;
242247
}
243248

packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/session.proto

+3
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,9 @@ message QueryParameters {
388388
// parameter from the session, clients should explicitly set the parameter
389389
// value to null.
390390
//
391+
// You can reference the session parameters in the agent with the following
392+
// format: $session.params.parameter-id.
393+
//
391394
// Depending on your protocol or client library language, this is a
392395
// map, associative array, symbol table, dictionary, or JSON object
393396
// composed of a collection of (MapKey, MapValue) pairs:

0 commit comments

Comments
 (0)