Show / Hide Table of Contents

Class RouteStatus

RouteStatus communicates the observed state of the Route (from the controller).

Inheritance
object
RouteStatus
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 RouteStatus : IDirectResponseSchema

Properties

Address

Similar to url, information on where the service is available on HTTP.

Declaration
[JsonProperty("address")]
public virtual Addressable Address { get; set; }
Property Value
Type Description
Addressable

Conditions

Conditions communicates 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

ObservedGeneration

ObservedGeneration is the 'Generation' of the Route 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. Note that providing a TrafficTarget that has latest_revision=True will result in a Route that does not increment either its metadata.generation or its observedGeneration, as new "latest ready" revisions from the Configuration are processed without an update to the Route's spec.

Declaration
[JsonProperty("observedGeneration")]
public virtual int? ObservedGeneration { get; set; }
Property Value
Type Description
int?

Traffic

Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that was last observed.

Declaration
[JsonProperty("traffic")]
public virtual IList<TrafficTarget> Traffic { get; set; }
Property Value
Type Description
IList<TrafficTarget>

Url

URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form: https://{route-hash}-{project-hash}-{cluster-level-suffix}.a.run.app

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX