class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettings
Represents the settings related to security issues, such as data redaction and data retention. It may take hours for updates on the settings to propagate to all the related components and take effect.
Attributes
[DLP](cloud.google.com/dlp/docs) deidentify template name. Use this template to define de-identification configuration for the content. If empty, Dialogflow replaces sensitive info with `[redacted]` text. The template name will have one of the following formats: `projects//locations// deidentifyTemplates/` OR `organizations//locations//deidentifyTemplates/` Note: `deidentify_template` must be located in the same region as the ` SecuritySettings`. Corresponds to the JSON property `deidentifyTemplate` @return [String]
Required. The human-readable name of the security settings, unique within the location. Corresponds to the JSON property `displayName` @return [String]
Settings for exporting conversations to [Insights](cloud.google.com/ dialogflow/priv/docs/insights). Corresponds to the JSON property `insightsExportSettings` @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings]
[DLP](cloud.google.com/dlp/docs) inspect template name. Use this template to define inspect base settings. If empty, we use the default DLP inspect config. The template name will have one of the following formats: ` projects//locations//inspectTemplates/` OR `organizations//locations// inspectTemplates/` Note: `inspect_template` must be located in the same region as the `SecuritySettings`. Corresponds to the JSON property `inspectTemplate` @return [String]
Required. Resource name of the settings. Format: `projects//locations// securitySettings/`. Corresponds to the JSON property `name` @return [String]
List of types of data to remove when retention settings triggers purge. Corresponds to the JSON property `purgeDataTypes` @return [Array<String>]
Defines the data for which Dialogflow applies redaction. Dialogflow does not redact data that it does not have access to – for example, Cloud logging. Corresponds to the JSON property `redactionScope` @return [String]
Strategy that defines how we do redaction. Corresponds to the JSON property `redactionStrategy` @return [String]
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 30d TTL. Setting a value higher than that has no effect. A missing value or setting to 0 also means we use Dialogflow's default TTL. Note: Interaction logging is a limited access feature. Talk to your Google
representative to check availability for you. Corresponds to the JSON property `retentionWindowDays` @return [Fixnum]
Public Class Methods
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 6919 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 6924 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @display_name = args[:display_name] if args.key?(:display_name) @insights_export_settings = args[:insights_export_settings] if args.key?(:insights_export_settings) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @name = args[:name] if args.key?(:name) @purge_data_types = args[:purge_data_types] if args.key?(:purge_data_types) @redaction_scope = args[:redaction_scope] if args.key?(:redaction_scope) @redaction_strategy = args[:redaction_strategy] if args.key?(:redaction_strategy) @retention_window_days = args[:retention_window_days] if args.key?(:retention_window_days) end