class Google::Apis::DataflowV1b3::ListJobsResponse

Response to a request to list Cloud Dataflow jobs in a project. This might be a partial response, depending on the page size in the ListJobsRequest. However, if the project does not have any jobs, an instance of ListJobsResponse is not returned and the requests's response body is empty “.

Attributes

failed_location[RW]

Zero or more messages describing the [regional endpoints] (cloud. google.com/dataflow/docs/concepts/regional-endpoints) that failed to respond. Corresponds to the JSON property `failedLocation` @return [Array<Google::Apis::DataflowV1b3::FailedLocation>]

jobs[RW]

A subset of the requested job information. Corresponds to the JSON property `jobs` @return [Array<Google::Apis::DataflowV1b3::Job>]

next_page_token[RW]

Set if there may be more results than fit in this response. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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