class Google::Apis::DataflowV1b3::ProgressTimeseries

Information about the progress of some component of job execution.

Attributes

current_progress[RW]

The current progress of the component, in the range [0,1]. Corresponds to the JSON property `currentProgress` @return [Float]

data_points[RW]

History of progress for the component. Points are sorted by time. Corresponds to the JSON property `dataPoints` @return [Array<Google::Apis::DataflowV1b3::Point>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3526
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 3531
def update!(**args)
  @current_progress = args[:current_progress] if args.key?(:current_progress)
  @data_points = args[:data_points] if args.key?(:data_points)
end