Show / Hide Table of Contents

Class RevisionStatus

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

Inheritance
System.Object
RevisionStatus
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class RevisionStatus : object, 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. Revision-specific conditions include: * "ResourcesAvailable": True when underlying resources have been provisioned. * "ContainerHealthy": True when the Revision readiness check completes. * "Active": True when the Revision may receive traffic.

Declaration
public virtual IList<GoogleCloudRunV1Condition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudRunV1Condition>

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
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
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
public virtual Nullable<int> ObservedGeneration { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ServiceName

Not currently used by Cloud Run.

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

Implements

IDirectResponseSchema
Back to top