class Google::Apis::DataflowV1b3::StageExecutionDetails
Information about the workers and work items within a stage.
Attributes
next_page_token[RW]
If present, this response does not contain all requested tasks. To obtain the next page of results, repeat the request with page_token set to this value. Corresponds to the JSON property `nextPageToken` @return [String]
workers[RW]
Workers that have done work on the stage. Corresponds to the JSON property `workers` @return [Array<Google::Apis::DataflowV1b3::WorkerDetails>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 4927 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 4932 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @workers = args[:workers] if args.key?(:workers) end