Class: Google::Apis::DataflowV1b3::ApproximateProgress
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::ApproximateProgress
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
Obsolete in favor of ApproximateReportedProgress and ApproximateSplitRequest.
Instance Attribute Summary collapse
-
#percent_complete ⇒ Float
Obsolete.
-
#position ⇒ Google::Apis::DataflowV1b3::Position
Position defines a position within a collection of data.
-
#remaining_time ⇒ String
Obsolete.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApproximateProgress
constructor
A new instance of ApproximateProgress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ApproximateProgress
Returns a new instance of ApproximateProgress
46 47 48 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 46 def initialize(**args) update!(**args) end |
Instance Attribute Details
#percent_complete ⇒ Float
Obsolete.
Corresponds to the JSON property percentComplete
32 33 34 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 32 def percent_complete @percent_complete end |
#position ⇒ Google::Apis::DataflowV1b3::Position
Position defines a position within a collection of data. The value
can be either the end position, a key (used with ordered
collections), a byte offset, or a record index.
Corresponds to the JSON property position
39 40 41 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 39 def position @position end |
#remaining_time ⇒ String
Obsolete.
Corresponds to the JSON property remainingTime
44 45 46 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 44 def remaining_time @remaining_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
51 52 53 54 55 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 51 def update!(**args) @percent_complete = args[:percent_complete] if args.key?(:percent_complete) @position = args[:position] if args.key?(:position) @remaining_time = args[:remaining_time] if args.key?(:remaining_time) end |