Class: Google::Apis::DataprocV1::SearchSparkApplicationExecutorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SearchSparkApplicationExecutorsResponse
- 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
List of Executors associated with 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_executors ⇒ Array<Google::Apis::DataprocV1::ExecutorSummary>
Details about executors used by the application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchSparkApplicationExecutorsResponse
constructor
A new instance of SearchSparkApplicationExecutorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchSparkApplicationExecutorsResponse
Returns a new instance of SearchSparkApplicationExecutorsResponse.
7191 7192 7193 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7191 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
SearchSparkApplicationExecutorsListRequest.
Corresponds to the JSON property nextPageToken
7184 7185 7186 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7184 def next_page_token @next_page_token end |
#spark_application_executors ⇒ Array<Google::Apis::DataprocV1::ExecutorSummary>
Details about executors used by the application.
Corresponds to the JSON property sparkApplicationExecutors
7189 7190 7191 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7189 def spark_application_executors @spark_application_executors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7196 7197 7198 7199 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7196 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spark_application_executors = args[:spark_application_executors] if args.key?(:spark_application_executors) end |