Class: Google::Apis::DataprocV1::SearchSparkApplicationStagesResponse

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

A list of stages associated with a Spark Application.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchSparkApplicationStagesResponse

Returns a new instance of SearchSparkApplicationStagesResponse.



7326
7327
7328
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7326

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

Instance Attribute Details

#next_page_tokenString

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 SearchSparkApplicationStages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7319
7320
7321
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7319

def next_page_token
  @next_page_token
end

#spark_application_stagesArray<Google::Apis::DataprocV1::StageData>

Output only. Data corresponding to a stage. Corresponds to the JSON property sparkApplicationStages



7324
7325
7326
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7324

def spark_application_stages
  @spark_application_stages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7331
7332
7333
7334
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7331

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @spark_application_stages = args[:spark_application_stages] if args.key?(:spark_application_stages)
end