Show / Hide Table of Contents

Class ListJobsResponse

ListJobsResponse is a list of Jobs resources.

Inheritance
System.Object
ListJobsResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class ListJobsResponse : IDirectResponseSchema

Properties

ApiVersion

The API version for this call such as "run.googleapis.com/v1alpha1".

Declaration
[JsonProperty("apiVersion")]
public virtual string ApiVersion { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Items

List of Jobs.

Declaration
[JsonProperty("items")]
public virtual IList<Job> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Job>

Kind

The kind of this resource, in this case "JobsList".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Metadata

Metadata associated with this jobs list.

Declaration
[JsonProperty("metadata")]
public virtual ListMeta Metadata { get; set; }
Property Value
Type Description
ListMeta

NextPageToken

This field is equivalent to the metadata.continue field and is provided as a convenience for compatibility with https://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.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Unreachable

Locations that could not be reached.

Declaration
[JsonProperty("unreachable")]
public virtual IList<string> Unreachable { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top