Class: Google::Apis::DataflowV1b3::WorkItemDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::WorkItemDetails
- 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 an individual work item execution.
Instance Attribute Summary collapse
-
#attempt_id ⇒ String
Attempt ID of this work item Corresponds to the JSON property
attemptId. -
#end_time ⇒ String
End time of this work item attempt.
-
#metrics ⇒ Array<Google::Apis::DataflowV1b3::MetricUpdate>
Metrics for this work item.
-
#progress ⇒ Google::Apis::DataflowV1b3::ProgressTimeseries
Information about the progress of some component of job execution.
-
#start_time ⇒ String
Start time of this work item attempt.
-
#state ⇒ String
State of this work item.
-
#task_id ⇒ String
Name of this work item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkItemDetails
constructor
A new instance of WorkItemDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkItemDetails
Returns a new instance of WorkItemDetails.
5988 5989 5990 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5988 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attempt_id ⇒ String
Attempt ID of this work item
Corresponds to the JSON property attemptId
5955 5956 5957 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5955 def attempt_id @attempt_id end |
#end_time ⇒ String
End time of this work item attempt. If the work item is completed, this is the
actual end time of the work item. Otherwise, it is the predicted end time.
Corresponds to the JSON property endTime
5961 5962 5963 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5961 def end_time @end_time end |
#metrics ⇒ Array<Google::Apis::DataflowV1b3::MetricUpdate>
Metrics for this work item.
Corresponds to the JSON property metrics
5966 5967 5968 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5966 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
5971 5972 5973 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5971 def progress @progress end |
#start_time ⇒ String
Start time of this work item attempt.
Corresponds to the JSON property startTime
5976 5977 5978 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5976 def start_time @start_time end |
#state ⇒ String
State of this work item.
Corresponds to the JSON property state
5981 5982 5983 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5981 def state @state end |
#task_id ⇒ String
Name of this work item.
Corresponds to the JSON property taskId
5986 5987 5988 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5986 def task_id @task_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5993 5994 5995 5996 5997 5998 5999 6000 6001 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5993 def update!(**args) @attempt_id = args[:attempt_id] if args.key?(:attempt_id) @end_time = args[:end_time] if args.key?(:end_time) @metrics = args[:metrics] if args.key?(:metrics) @progress = args[:progress] if args.key?(:progress) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) @task_id = args[:task_id] if args.key?(:task_id) end |