Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c27d046

Browse files
Google APIscopybara-github
authored andcommitted
docs: clarified documentation for security settings
docs: clarified documentation for session parameters PiperOrigin-RevId: 374474736
1 parent f57b0b7 commit c27d046

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

google/cloud/dialogflow/cx/v3beta1/security_settings.proto

Lines changed: 10 additions & 5 deletions
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

google/cloud/dialogflow/cx/v3beta1/session.proto

Lines changed: 4 additions & 1 deletion
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:
@@ -397,7 +400,7 @@ message QueryParameters {
397400
// - MapValue type:
398401
// - If parameter's entity type is a composite entity: map
399402
// - Else: depending on parameter value type, could be one of string,
400-
// number, boolean, null, list or map
403+
// number, boolean, null, list or map
401404
// - MapValue value:
402405
// - If parameter's entity type is a composite entity:
403406
// map from composite entity property names to property values

0 commit comments

Comments
 (0)