Class: Google::Apis::DataprocV1::SummarizeSparkApplicationExecutorsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SummarizeSparkApplicationExecutorsResponse

Returns a new instance of SummarizeSparkApplicationExecutorsResponse.



10775
10776
10777
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10775

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#active_executor_summaryGoogle::Apis::DataprocV1::ConsolidatedExecutorSummary

Consolidated summary about executors used by the application. Corresponds to the JSON property activeExecutorSummary



10758
10759
10760
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10758

def active_executor_summary
  @active_executor_summary
end

#application_idString

Spark Application Id Corresponds to the JSON property applicationId

Returns:

  • (String)


10763
10764
10765
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10763

def application_id
  @application_id
end

#dead_executor_summaryGoogle::Apis::DataprocV1::ConsolidatedExecutorSummary

Consolidated summary about executors used by the application. Corresponds to the JSON property deadExecutorSummary



10768
10769
10770
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10768

def dead_executor_summary
  @dead_executor_summary
end

#total_executor_summaryGoogle::Apis::DataprocV1::ConsolidatedExecutorSummary

Consolidated summary about executors used by the application. Corresponds to the JSON property totalExecutorSummary



10773
10774
10775
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10773

def total_executor_summary
  @total_executor_summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10780
10781
10782
10783
10784
10785
# File 'lib/google/apis/dataproc_v1/classes.rb', line 10780

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