Show / Hide Table of Contents

Class ListRevisionsResponse

ListRevisionsResponse is a list of Revision resources.

Inheritance
System.Object
ListRevisionsResponse
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 ListRevisionsResponse : IDirectResponseSchema

Properties

ApiVersion

The API version for this call such as "serving.knative.dev/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 Revisions.

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

Kind

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

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

Metadata

Metadata associated with this revision list.

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

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
Back to top