class Google::Apis::DataflowV1b3::JobExecutionDetails

Information about the execution of a job.

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]

stages[RW]

The stages of the job execution. Corresponds to the JSON property `stages` @return [Array<Google::Apis::DataflowV1b3::StageSummary>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 2215
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 2220
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @stages = args[:stages] if args.key?(:stages)
end