class Google::Apis::RunV1alpha1::ListJobsResponse

ListJobsResponse is a list of Jobs resources.

Attributes

api_version[RW]

The API version for this call such as “run.googleapis.com/v1alpha1”. Corresponds to the JSON property `apiVersion` @return [String]

items[RW]

List of Jobs. Corresponds to the JSON property `items` @return [Array<Google::Apis::RunV1alpha1::Job>]

kind[RW]

The kind of this resource, in this case “JobsList”. Corresponds to the JSON property `kind` @return [String]

metadata[RW]

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of `ObjectMeta, ListMeta`. Corresponds to the JSON property `metadata` @return [Google::Apis::RunV1alpha1::ListMeta]

next_page_token[RW]

This field is equivalent to the metadata.continue field and is provided as a convenience for compatibility with google.aip.dev/158. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The metadata.resourceVersion field returned when using this field will be identical to the value in the first response. Corresponds to the JSON property `nextPageToken` @return [String]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/run_v1alpha1/classes.rb, line 1029
def update!(**args)
  @api_version = args[:api_version] if args.key?(:api_version)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end