Class: Google::Apis::DataflowV1b3::StageSummary
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StageSummary
- 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 about a particular execution stage of a job.
Instance Attribute Summary collapse
-
#end_time ⇒ String
End time of this stage.
-
#metrics ⇒ Array<Google::Apis::DataflowV1b3::MetricUpdate>
Metrics for this stage.
-
#progress ⇒ Google::Apis::DataflowV1b3::ProgressTimeseries
Information about the progress of some component of job execution.
-
#stage_id ⇒ String
ID of this stage Corresponds to the JSON property
stageId. -
#start_time ⇒ String
Start time of this stage.
-
#state ⇒ String
State of this stage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StageSummary
constructor
A new instance of StageSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StageSummary
Returns a new instance of StageSummary.
5017 5018 5019 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
End time of this stage. If the work item is completed, this is the actual end
time of the stage. Otherwise, it is the predicted end time.
Corresponds to the JSON property endTime
4990 4991 4992 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4990 def end_time @end_time end |
#metrics ⇒ Array<Google::Apis::DataflowV1b3::MetricUpdate>
Metrics for this stage.
Corresponds to the JSON property metrics
4995 4996 4997 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4995 def metrics @metrics end |
#progress ⇒ Google::Apis::DataflowV1b3::ProgressTimeseries
Information about the progress of some component of job execution.
Corresponds to the JSON property progress
5000 5001 5002 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5000 def progress @progress end |
#stage_id ⇒ String
ID of this stage
Corresponds to the JSON property stageId
5005 5006 5007 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5005 def stage_id @stage_id end |
#start_time ⇒ String
Start time of this stage.
Corresponds to the JSON property startTime
5010 5011 5012 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5010 def start_time @start_time end |
#state ⇒ String
State of this stage.
Corresponds to the JSON property state
5015 5016 5017 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5015 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5022 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @metrics = args[:metrics] if args.key?(:metrics) @progress = args[:progress] if args.key?(:progress) @stage_id = args[:stage_id] if args.key?(:stage_id) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end |