Class: Google::Apis::DataprocV1::SearchSparkApplicationJobsResponse

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 Jobs associated with a Spark Application.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchSparkApplicationJobsResponse

Returns a new instance of SearchSparkApplicationJobsResponse.



7218
7219
7220
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7218

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

Returns:

  • (String)


7211
7212
7213
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7211

def next_page_token
  @next_page_token
end

#spark_application_jobsArray<Google::Apis::DataprocV1::JobData>

Output only. Data corresponding to a spark job. Corresponds to the JSON property sparkApplicationJobs



7216
7217
7218
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7216

def spark_application_jobs
  @spark_application_jobs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7223
7224
7225
7226
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7223

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