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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/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.



5024
5025
5026
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5024

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)


5017
5018
5019
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5017

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



5022
5023
5024
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5022

def workers
  @workers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5029
5030
5031
5032
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5029

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