Class: Google::Apis::DataflowV1b3::JobExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobExecutionDetails
- 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 execution of a job.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If present, this response does not contain all requested tasks.
-
#stages ⇒ Array<Google::Apis::DataflowV1b3::StageSummary>
The stages of the job execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobExecutionDetails
constructor
A new instance of JobExecutionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobExecutionDetails
Returns a new instance of JobExecutionDetails.
2289 2290 2291 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
2282 2283 2284 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2282 def next_page_token @next_page_token end |
#stages ⇒ Array<Google::Apis::DataflowV1b3::StageSummary>
The stages of the job execution.
Corresponds to the JSON property stages
2287 2288 2289 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2287 def stages @stages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2294 2295 2296 2297 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2294 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @stages = args[:stages] if args.key?(:stages) end |