Class: Google::Apis::DataflowV1b3::DebugOptions
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::DebugOptions
- 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
-
#enable_hot_key_logging ⇒ Boolean
(also: #enable_hot_key_logging?)
When true, enables the logging of the literal hot key to the user's Cloud Logging.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DebugOptions
constructor
A new instance of DebugOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_logging ⇒ Boolean 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
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 |