Class TrafficTarget
TrafficTarget holds a single entry of the routing table for a Route.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class TrafficTarget : IDirectResponseSchema
Properties
ConfigurationName
ConfigurationName of a configuration to whose latest revision we will send this portion of traffic. When the "status.latestReadyRevisionName" of the referenced configuration changes, we will automatically migrate traffic from the prior "latest ready" revision to the new one. This field is never set in Route's status, only its spec. This is mutually exclusive with RevisionName. Cloud Run currently supports a single ConfigurationName.
Declaration
[JsonProperty("configurationName")]
public virtual string ConfigurationName { 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 |
LatestRevision
LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target. When provided LatestRevision must be true if RevisionName is empty; it must be false when RevisionName is non-empty. +optional
Declaration
[JsonProperty("latestRevision")]
public virtual bool? LatestRevision { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Name
Name is optionally used to expose a dedicated hostname for referencing this target exclusively. Not currently supported by Cloud Run. +optional
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Percent
Percent specifies percent of the traffic to this Revision or Configuration. This defaults to zero if unspecified. Cloud Run currently requires 100 percent for a single ConfigurationName TrafficTarget entry.
Declaration
[JsonProperty("percent")]
public virtual int? Percent { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
RevisionName
RevisionName of a specific revision to which to send this portion of traffic. This is mutually exclusive with ConfigurationName. Providing RevisionName in spec is not currently supported by Cloud Run.
Declaration
[JsonProperty("revisionName")]
public virtual string RevisionName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Tag
Tag is optionally used to expose a dedicated url for referencing this target exclusively. Not currently supported in Cloud Run. +optional
Declaration
[JsonProperty("tag")]
public virtual string Tag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Url
Output only. URL displays the URL for accessing named traffic targets. URL is displayed in status, and is disallowed on spec. URL must contain a scheme (e.g. http://) and a hostname, but may not contain anything else (e.g. basic auth, url path, etc. Not currently supported in Cloud Run.
Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |