Class RevisionStatus
RevisionStatus communicates the observed state of the Revision (from the controller).
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class RevisionStatus : IDirectResponseSchema
Properties
Conditions
Conditions communicate 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
[JsonProperty("conditions")]
public virtual IList<GoogleCloudRunV1Condition> Conditions { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudRunV1Condition> |
DesiredReplicas
Output only. The configured number of instances running this revision. For Cloud Run, this only includes instances provisioned using the minScale annotation. It does not include instances created by autoscaling.
Declaration
[JsonProperty("desiredReplicas")]
public virtual int? DesiredReplicas { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
string |
LogUrl
Optional. Specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config.
Declaration
[JsonProperty("logUrl")]
public virtual string LogUrl { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
int? |
ServiceName
Not currently used by Cloud Run.
Declaration
[JsonProperty("serviceName")]
public virtual string ServiceName { get; set; }
Property Value
Type | Description |
---|---|
string |