From 633495c09548f8953bd778630888fba13703ba58 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Mon, 5 Dec 2022 16:19:03 -0800 Subject: [PATCH] docs: Clarified Agent Assist max retention is 30 days (#3665) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: Clarified Agent Assist max retention is 30 days PiperOrigin-RevId: 489241089 Source-Link: https://github.com/googleapis/googleapis/commit/e7950299cb44b7e532ef8e311a143c0f22e82c2f Source-Link: https://github.com/googleapis/googleapis-gen/commit/4380bee60092cd1aaf2be81b6c08bb76f8c12a66 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjQzODBiZWU2MDA5MmNkMWFhZjJiZTgxYjZjMDhiYjc2ZjhjMTJhNjYifQ== * docs: Clarified Agent Assist max retention is 30 days PiperOrigin-RevId: 489494670 Source-Link: https://github.com/googleapis/googleapis/commit/e35c0d3893f60dfabadd2759d8100c0c81a7cf97 Source-Link: https://github.com/googleapis/googleapis-gen/commit/4c3848551a76fdf190533292127211a4ad8fee8b Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjRjMzg0ODU1MWE3NmZkZjE5MDUzMzI5MjEyNzIxMWE0YWQ4ZmVlOGIifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot Co-authored-by: sofisl <55454395+sofisl@users.noreply.github.com> --- .../cloud/dialogflow/cx/v3/security_settings.proto | 11 +++++------ .../dialogflow/cx/v3beta1/security_settings.proto | 7 ++++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/security_settings.proto b/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/security_settings.proto index 0c9c0942a53..5948f6bfd1a 100644 --- a/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/security_settings.proto +++ b/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3/security_settings.proto @@ -323,12 +323,11 @@ message SecuritySettings { // purged due to retention policy, we may still hold it in backup storage for // a few days without allowing direct readings. oneof data_retention { - // Retains data in interaction logging for the specified number of days. - // This does not apply to Cloud logging, which is owned by the user - not - // Dialogflow. - // User must set a value lower than Dialogflow's default 365d TTL (time to - // live). Setting a value higher than that has no effect. A missing value or - // setting to 0 also means we use Dialogflow's default TTL. + // Retains the data for the specified number of days. + // User must set a value lower than Dialogflow's default 365d TTL (30 days + // for Agent Assist traffic), higher value will be ignored and use default. + // Setting a value higher than that has no effect. A missing value or + // setting to 0 also means we use default TTL. int32 retention_window_days = 6; } diff --git a/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3beta1/security_settings.proto b/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3beta1/security_settings.proto index b108b55f614..bcb11f4fa2d 100644 --- a/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3beta1/security_settings.proto +++ b/packages/google-cloud-dialogflow-cx/protos/google/cloud/dialogflow/cx/v3beta1/security_settings.proto @@ -326,9 +326,10 @@ message SecuritySettings { // Retains data in interaction logging for the specified number of days. // This does not apply to Cloud logging, which is owned by the user - not // Dialogflow. - // User must set a value lower than Dialogflow's default 365d TTL (time to - // live). Setting a value higher than that has no effect. A missing value or - // setting to 0 also means we use Dialogflow's default TTL. + // User must set a value lower than Dialogflow's default 365d TTL (30 days + // for Agent Assist traffic), higher value will be ignored and use default. + // Setting a value higher than that has no effect. A missing value or + // setting to 0 also means we use default TTL. int32 retention_window_days = 6; }