Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Define behaviors on logging.
Instance Attribute Summary collapse
-
#enable_interaction_logging ⇒ Boolean
(also: #enable_interaction_logging?)
Enables DF Interaction logging.
-
#enable_stackdriver_logging ⇒ Boolean
(also: #enable_stackdriver_logging?)
Enables StackDriver 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.
4028 4029 4030 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4028 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_interaction_logging ⇒ Boolean Also known as: enable_interaction_logging?
Enables DF Interaction logging.
Corresponds to the JSON property enableInteractionLogging
4019 4020 4021 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4019 def enable_interaction_logging @enable_interaction_logging end |
#enable_stackdriver_logging ⇒ Boolean Also known as: enable_stackdriver_logging?
Enables StackDriver logging.
Corresponds to the JSON property enableStackdriverLogging
4025 4026 4027 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4025 def enable_stackdriver_logging @enable_stackdriver_logging end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4033 4034 4035 4036 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4033 def update!(**args) @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 |