class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings

Define behaviors on logging.

Attributes

enable_interaction_logging[RW]

If true, DF Interaction logging is currently enabled. Corresponds to the JSON property `enableInteractionLogging` @return [Boolean]

enable_interaction_logging?[RW]

If true, DF Interaction logging is currently enabled. Corresponds to the JSON property `enableInteractionLogging` @return [Boolean]

enable_stackdriver_logging[RW]

If true, StackDriver logging is currently enabled. Corresponds to the JSON property `enableStackdriverLogging` @return [Boolean]

enable_stackdriver_logging?[RW]

If true, StackDriver logging is currently enabled. Corresponds to the JSON property `enableStackdriverLogging` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 62
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 67
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