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.



5292
5293
5294
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5292

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)


5285
5286
5287
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5285

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



5290
5291
5292
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5290

def workers
  @workers
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5297
5298
5299
5300
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5297

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