Show / Hide Table of Contents

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. See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md#route

Cloud Run currently supports referencing a single Configuration to automatically deploy the "latest ready" Revision from that Configuration.

Inheritance
System.Object
Route
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Route : object, IDirectResponseSchema

Properties

ApiVersion

The API version for this call such as "serving.knative.dev/v1".

Declaration
public virtual string ApiVersion { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Kind

The kind of this resource, in this case always "Route".

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Metadata

Metadata associated with this Route, including name, namespace, labels, and annotations.

Declaration
public virtual ObjectMeta Metadata { get; set; }
Property Value
Type Description
ObjectMeta

Spec

Spec holds the desired state of the Route (from the client).

Declaration
public virtual RouteSpec Spec { get; set; }
Property Value
Type Description
RouteSpec

Status

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

Declaration
public virtual RouteStatus Status { get; set; }
Property Value
Type Description
RouteStatus

Implements

IDirectResponseSchema
Back to top