Show / Hide Table of Contents

Class RevisionStatus

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

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

Properties

Conditions

Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world. As a Revision is being prepared, it will incrementally update conditions "ResourcesAvailable", "ContainerHealthy", and "Active", which contribute to the overall "Ready" condition.

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

ETag

The ETag of the item.

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

ImageDigest

ImageDigest holds the resolved digest for the image specified within .Spec.Container.Image. The digest is resolved during the creation of Revision. This field holds the digest value regardless of whether a tag or digest was originally specified in the Container object.

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

LogUrl

Specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config. +optional

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

ObservedGeneration

ObservedGeneration is the 'Generation' of the Revision that was last processed by the controller. Clients polling for completed reconciliation should poll until observedGeneration = metadata.generation, and the Ready condition's status is True or False.

Declaration
[JsonProperty("observedGeneration")]
public virtual int? ObservedGeneration { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ServiceName

Not currently used by Cloud Run.

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

Implements

IDirectResponseSchema
Back to top