Show / Hide Table of Contents

Class ConfigurationStatus

ConfigurationStatus communicates the observed state of the Configuration (from the controller).

Inheritance
object
ConfigurationStatus
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ConfigurationStatus : IDirectResponseSchema

Properties

Conditions

Conditions communicate information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world.

Declaration
[JsonProperty("conditions")]
public virtual IList<GoogleCloudRunV1Condition> Conditions { get; set; }
Property Value
Type Description
IList<GoogleCloudRunV1Condition>

ETag

The ETag of the item.

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

LatestCreatedRevisionName

LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, so for the latest ready revision, use LatestReadyRevisionName.

Declaration
[JsonProperty("latestCreatedRevisionName")]
public virtual string LatestCreatedRevisionName { get; set; }
Property Value
Type Description
string

LatestReadyRevisionName

LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its "Ready" condition become "True".

Declaration
[JsonProperty("latestReadyRevisionName")]
public virtual string LatestReadyRevisionName { get; set; }
Property Value
Type Description
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
[JsonProperty("observedGeneration")]
public virtual int? ObservedGeneration { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX