Class: Google::Apis::DataprocV1::SearchSessionSparkApplicationExecutorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SearchSessionSparkApplicationExecutorsResponse
- 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) ⇒ SearchSessionSparkApplicationExecutorsResponse
constructor
A new instance of SearchSessionSparkApplicationExecutorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchSessionSparkApplicationExecutorsResponse
Returns a new instance of SearchSessionSparkApplicationExecutorsResponse.
6975 6976 6977 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6975 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
SearchSessionSparkApplicationExecutorsRequest.
Corresponds to the JSON property nextPageToken
6968 6969 6970 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6968 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
6973 6974 6975 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6973 def spark_application_executors @spark_application_executors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6980 6981 6982 6983 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6980 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 |