@@ -119,6 +119,14 @@ def update!(**args)
119119 class GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
120120 include Google::Apis::Core::Hashable
121121
122+ # Enables consent-based end-user input redaction, if true, a pre-defined session
123+ # parameter `$session.params.conversation-redaction` will be used to determine
124+ # if the utterance should be redacted.
125+ # Corresponds to the JSON property `enableConsentBasedRedaction`
126+ # @return [Boolean]
127+ attr_accessor :enable_consent_based_redaction
128+ alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
129+
122130 # Enables DF Interaction logging.
123131 # Corresponds to the JSON property `enableInteractionLogging`
124132 # @return [Boolean]
@@ -137,6 +145,7 @@ def initialize(**args)
137145
138146 # Update properties of this object
139147 def update!(**args)
148+ @enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
140149 @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
141150 @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
142151 end
@@ -8933,6 +8942,14 @@ def update!(**args)
89338942 class GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
89348943 include Google::Apis::Core::Hashable
89358944
8945+ # Enables consent-based end-user input redaction, if true, a pre-defined session
8946+ # parameter `$session.params.conversation-redaction` will be used to determine
8947+ # if the utterance should be redacted.
8948+ # Corresponds to the JSON property `enableConsentBasedRedaction`
8949+ # @return [Boolean]
8950+ attr_accessor :enable_consent_based_redaction
8951+ alias_method :enable_consent_based_redaction?, :enable_consent_based_redaction
8952+
89368953 # Enables DF Interaction logging.
89378954 # Corresponds to the JSON property `enableInteractionLogging`
89388955 # @return [Boolean]
@@ -8951,6 +8968,7 @@ def initialize(**args)
89518968
89528969 # Update properties of this object
89538970 def update!(**args)
8971+ @enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction)
89548972 @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging)
89558973 @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
89568974 end
0 commit comments