Show / Hide Table of Contents

Class RouteSpec

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

Inheritance
System.Object
RouteSpec
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class RouteSpec : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Generation

Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is the sequence number containing the latest generation of the desired state. Read-only.

Declaration
[JsonProperty("generation")]
public virtual int? Generation { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Traffic

Traffic specifies how to distribute traffic over a collection of Knative Revisions and Configurations. Cloud Run currently supports a single configurationName.

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

Implements

IDirectResponseSchema
Back to top