Class: Google::Apis::DataflowV1b3::JobExecutionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::JobExecutionDetails
- 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 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.
2207 2208 2209 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2207 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
2200 2201 2202 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2200 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
2205 2206 2207 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2205 def stages @stages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2212 2213 2214 2215 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2212 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @stages = args[:stages] if args.key?(:stages) end |