Class Route
Route is responsible for configuring ingress over a collection of Revisions. Some of the Revisions a Route distributes traffic over may be specified by referencing the Configuration responsible for creating them; in these cases the Route is additionally responsible for monitoring the Configuration for "latest ready" revision changes, and smoothly rolling out latest revisions. Cloud Run currently supports referencing a single Configuration to automatically deploy the "latest ready" Revision from that Configuration.
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Route : IDirectResponseSchema
Properties
ApiVersion
The API version for this call such as "serving.knative.dev/v1".
Declaration
[JsonProperty("apiVersion")]
public virtual string ApiVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Kind
The kind of this resource, in this case always "Route".
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Metadata
Metadata associated with this Route, including name, namespace, labels, and annotations.
Declaration
[JsonProperty("metadata")]
public virtual ObjectMeta Metadata { get; set; }
Property Value
Type | Description |
---|---|
ObjectMeta |
Spec
Spec holds the desired state of the Route (from the client).
Declaration
[JsonProperty("spec")]
public virtual RouteSpec Spec { get; set; }
Property Value
Type | Description |
---|---|
RouteSpec |
Status
Status communicates the observed state of the Route (from the controller).
Declaration
[JsonProperty("status")]
public virtual RouteStatus Status { get; set; }
Property Value
Type | Description |
---|---|
RouteStatus |