Class: Google::Apis::DataflowV1b3::Straggler
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::Straggler
- 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
Information for a straggler.
Instance Attribute Summary collapse
-
#batch_straggler ⇒ Google::Apis::DataflowV1b3::StragglerInfo
Information useful for straggler identification and debugging.
-
#streaming_straggler ⇒ Google::Apis::DataflowV1b3::StreamingStragglerInfo
Information useful for streaming straggler identification and debugging.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Straggler
constructor
A new instance of Straggler.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Straggler
Returns a new instance of Straggler.
6202 6203 6204 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6202 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_straggler ⇒ Google::Apis::DataflowV1b3::StragglerInfo
Information useful for straggler identification and debugging.
Corresponds to the JSON property batchStraggler
6195 6196 6197 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6195 def batch_straggler @batch_straggler end |
#streaming_straggler ⇒ Google::Apis::DataflowV1b3::StreamingStragglerInfo
Information useful for streaming straggler identification and debugging.
Corresponds to the JSON property streamingStraggler
6200 6201 6202 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6200 def streaming_straggler @streaming_straggler end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6207 6208 6209 6210 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6207 def update!(**args) @batch_straggler = args[:batch_straggler] if args.key?(:batch_straggler) @streaming_straggler = args[:streaming_straggler] if args.key?(:streaming_straggler) end |