class Google::Apis::DataprocV1::ListJobsResponse

A list of jobs in a project.

Attributes

jobs[RW]
Output-only

Jobs list.

Corresponds to the JSON property `jobs` @return [Array<Google::Apis::DataprocV1::Job>]

next_page_token[RW]
Optional

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 ListJobsRequest. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dataproc_v1/classes.rb, line 1275
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dataproc_v1/classes.rb, line 1280
def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end