Class: Google::Apis::DataprocV1::SearchSparkApplicationStageAttemptsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SearchSparkApplicationStageAttemptsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Overview
A list of Stage Attempts for a Stage of a Spark Application.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
This token is included in the response if there are more results to fetch.
-
#spark_application_stage_attempts ⇒ Array<Google::Apis::DataprocV1::StageData>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchSparkApplicationStageAttemptsResponse
constructor
A new instance of SearchSparkApplicationStageAttemptsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchSparkApplicationStageAttemptsResponse
Returns a new instance of SearchSparkApplicationStageAttemptsResponse.
7299 7300 7301 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
This token is included in the response if there are more results to fetch. To
fetch additional results, provide this value as the page_token in a subsequent
ListSparkApplicationStageAttemptsRequest.
Corresponds to the JSON property nextPageToken
7292 7293 7294 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7292 def next_page_token @next_page_token end |
#spark_application_stage_attempts ⇒ Array<Google::Apis::DataprocV1::StageData>
Output only. Data corresponding to a stage attempts
Corresponds to the JSON property sparkApplicationStageAttempts
7297 7298 7299 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7297 def spark_application_stage_attempts @spark_application_stage_attempts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7304 7305 7306 7307 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7304 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spark_application_stage_attempts = args[:spark_application_stage_attempts] if args.key?(:spark_application_stage_attempts) end |