Class ConfigurationStatus
ConfigurationStatus communicates the observed state of the Configuration (from the controller).
Inheritance
Implements
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ConfigurationStatus : object, IDirectResponseSchema
Properties
Conditions
Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world.
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 |
LatestCreatedRevisionName
LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName.
Declaration
public virtual string LatestCreatedRevisionName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
LatestReadyRevisionName
LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True".
Declaration
public virtual string LatestReadyRevisionName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ObservedGeneration
ObservedGeneration is the 'Generation' of the Configuration that was last processed by the controller. The observed generation is updated even if the controller failed to process the spec and create the Revision.
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> |