Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Define behaviors on logging.
Instance Attribute Summary collapse
-
#enable_consent_based_redaction ⇒ Boolean
(also: #enable_consent_based_redaction?)
Enables consent-based end-user input redaction, if true, a pre-defined session parameter
$session.params.conversation-redaction
will be used to determine if the utterance should be redacted. -
#enable_interaction_logging ⇒ Boolean
(also: #enable_interaction_logging?)
Enables DF Interaction logging.
-
#enable_stackdriver_logging ⇒ Boolean
(also: #enable_stackdriver_logging?)
Enables Google Cloud Logging.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings.
8971 8972 8973 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8971 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_consent_based_redaction ⇒ Boolean Also known as: enable_consent_based_redaction?
Enables consent-based end-user input redaction, if true, a pre-defined session
parameter $session.params.conversation-redaction
will be used to determine
if the utterance should be redacted.
Corresponds to the JSON property enableConsentBasedRedaction
8956 8957 8958 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8956 def @enable_consent_based_redaction end |
#enable_interaction_logging ⇒ Boolean Also known as: enable_interaction_logging?
Enables DF Interaction logging.
Corresponds to the JSON property enableInteractionLogging
8962 8963 8964 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8962 def enable_interaction_logging @enable_interaction_logging end |
#enable_stackdriver_logging ⇒ Boolean Also known as: enable_stackdriver_logging?
Enables Google Cloud Logging.
Corresponds to the JSON property enableStackdriverLogging
8968 8969 8970 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8968 def enable_stackdriver_logging @enable_stackdriver_logging end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8976 8977 8978 8979 8980 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8976 def update!(**args) @enable_consent_based_redaction = args[:enable_consent_based_redaction] if args.key?(:enable_consent_based_redaction) @enable_interaction_logging = args[:enable_interaction_logging] if args.key?(:enable_interaction_logging) @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging) end |