Class: Google::Apis::DataprocV1::SearchSessionSparkApplicationJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SearchSessionSparkApplicationJobsResponse
- 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
-
#next_page_token ⇒ String
This token is included in the response if there are more results to fetch.
-
#spark_application_jobs ⇒ Array<Google::Apis::DataprocV1::JobData>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchSessionSparkApplicationJobsResponse
constructor
A new instance of SearchSessionSparkApplicationJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchSessionSparkApplicationJobsResponse
Returns a new instance of SearchSessionSparkApplicationJobsResponse.
7002 7003 7004 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7002 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
SearchSessionSparkApplicationJobsRequest.
Corresponds to the JSON property nextPageToken
6995 6996 6997 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 6995 def next_page_token @next_page_token end |
#spark_application_jobs ⇒ Array<Google::Apis::DataprocV1::JobData>
Output only. Data corresponding to a spark job.
Corresponds to the JSON property sparkApplicationJobs
7000 7001 7002 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7000 def spark_application_jobs @spark_application_jobs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7007 7008 7009 7010 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7007 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 |