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.



5039
5040
5041
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5039

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)


5032
5033
5034
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5032

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



5037
5038
5039
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5037

def workers
  @workers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5044
5045
5046
5047
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5044

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