Class: Google::Apis::DataflowV1b3::DebugOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Describes any options that have an effect on the debugging of pipelines.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DebugOptions

Returns a new instance of DebugOptions.



895
896
897
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 895

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enable_hot_key_loggingBoolean Also known as: enable_hot_key_logging?

When true, enables the logging of the literal hot key to the user's Cloud Logging. Corresponds to the JSON property enableHotKeyLogging

Returns:

  • (Boolean)


892
893
894
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 892

def enable_hot_key_logging
  @enable_hot_key_logging
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



900
901
902
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 900

def update!(**args)
  @enable_hot_key_logging = args[:enable_hot_key_logging] if args.key?(:enable_hot_key_logging)
end