Class: Google::Apis::DataprocV1::SummarizeSessionSparkApplicationExecutorsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SummarizeSessionSparkApplicationExecutorsResponse
- 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
Consolidated summary of executors for a Spark Application.
Instance Attribute Summary collapse
-
#active_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
-
#application_id ⇒ String
Spark Application Id Corresponds to the JSON property
applicationId. -
#dead_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
-
#total_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SummarizeSessionSparkApplicationExecutorsResponse
constructor
A new instance of SummarizeSessionSparkApplicationExecutorsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SummarizeSessionSparkApplicationExecutorsResponse
Returns a new instance of SummarizeSessionSparkApplicationExecutorsResponse.
10998 10999 11000 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
Corresponds to the JSON property activeExecutorSummary
10981 10982 10983 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10981 def active_executor_summary @active_executor_summary end |
#application_id ⇒ String
Spark Application Id
Corresponds to the JSON property applicationId
10986 10987 10988 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10986 def application_id @application_id end |
#dead_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
Corresponds to the JSON property deadExecutorSummary
10991 10992 10993 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10991 def dead_executor_summary @dead_executor_summary end |
#total_executor_summary ⇒ Google::Apis::DataprocV1::ConsolidatedExecutorSummary
Consolidated summary about executors used by the application.
Corresponds to the JSON property totalExecutorSummary
10996 10997 10998 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10996 def total_executor_summary @total_executor_summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11003 11004 11005 11006 11007 11008 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11003 def update!(**args) @active_executor_summary = args[:active_executor_summary] if args.key?(:active_executor_summary) @application_id = args[:application_id] if args.key?(:application_id) @dead_executor_summary = args[:dead_executor_summary] if args.key?(:dead_executor_summary) @total_executor_summary = args[:total_executor_summary] if args.key?(:total_executor_summary) end |