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. Cloud Run does not currently support referencing a build that is responsible for materializing the container image from source. See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md#revision

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

Kind

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

Declaration
[JsonProperty("kind")]
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
[JsonProperty("metadata")]
public virtual ObjectMeta Metadata { get; set; }
Property Value
Type Description
ObjectMeta

Spec

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

Declaration
[JsonProperty("spec")]
public virtual RevisionSpec Spec { get; set; }
Property Value
Type Description
RevisionSpec

Status

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

Declaration
[JsonProperty("status")]
public virtual RevisionStatus Status { get; set; }
Property Value
Type Description
RevisionStatus

Implements

IDirectResponseSchema
Back to top