class Google::Apis::DataflowV1b3::ApproximateProgress

Obsolete in favor of ApproximateReportedProgress and ApproximateSplitRequest.

Attributes

percent_complete[RW]

Obsolete. Corresponds to the JSON property `percentComplete` @return [Float]

position[RW]

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` @return [Google::Apis::DataflowV1b3::Position]

remaining_time[RW]

Obsolete. Corresponds to the JSON property `remainingTime` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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