Show / Hide Table of Contents

Class Revision

Revision is an immutable snapshot of code and configuration. A revision references a container image. Revisions are created by updates to a Configuration.

See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md#revision

Inheritance
System.Object
Revision
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Revision : object, IDirectResponseSchema

Properties

ApiVersion

The API version for this call such as "serving.knative.dev/v1".

Declaration
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

Kind

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

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

Metadata

Metadata associated with this Revision, including name, namespace, labels, and annotations.

Declaration
public virtual ObjectMeta Metadata { get; set; }
Property Value
Type Description
ObjectMeta

Spec

Spec holds the desired state of the Revision (from the client).

Declaration
public virtual RevisionSpec Spec { get; set; }
Property Value
Type Description
RevisionSpec

Status

Status communicates the observed state of the Revision (from the controller).

Declaration
public virtual RevisionStatus Status { get; set; }
Property Value
Type Description
RevisionStatus

Implements

IDirectResponseSchema
Back to top