Class: Google::Apis::DataflowV1b3::StageExecutionDetails

Inherits:
Object
  • Object
show all
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 the workers and work items within a stage.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StageExecutionDetails

Returns a new instance of StageExecutionDetails.



5099
5100
5101
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5099

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


5092
5093
5094
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5092

def next_page_token
  @next_page_token
end

#workersArray<Google::Apis::DataflowV1b3::WorkerDetails>

Workers that have done work on the stage. Corresponds to the JSON property workers



5097
5098
5099
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5097

def workers
  @workers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5104
5105
5106
5107
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5104

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @workers = args[:workers] if args.key?(:workers)
end