Show / Hide Table of Contents

Class HttpRouteAction

Inheritance
System.Object
HttpRouteAction
Implements
Google.Apis.Requests.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.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class HttpRouteAction : IDirectResponseSchema

Properties

CorsPolicy

The specification for allowing client side cross-origin requests. Please see W3C Recommendation for Cross Origin Resource Sharing

Declaration
[JsonProperty("corsPolicy")]
public virtual CorsPolicy CorsPolicy { get; set; }
Property Value
Type Description
CorsPolicy

ETag

The ETag of the item.

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

FaultInjectionPolicy

The specification for fault injection introduced into traffic to test the resiliency of clients to backend service failure. As part of fault injection, when clients send requests to a backend service, delays can be introduced by Loadbalancer on a percentage of requests before sending those request to the backend service. Similarly requests from clients can be aborted by the Loadbalancer for a percentage of requests. timeout and retry_policy will be ignored by clients that are configured with a fault_injection_policy.

Declaration
[JsonProperty("faultInjectionPolicy")]
public virtual HttpFaultInjection FaultInjectionPolicy { get; set; }
Property Value
Type Description
HttpFaultInjection

RequestMirrorPolicy

Specifies the policy on how requests intended for the route's backends are shadowed to a separate mirrored backend service. Loadbalancer does not wait for responses from the shadow service. Prior to sending traffic to the shadow service, the host / authority header is suffixed with -shadow.

Declaration
[JsonProperty("requestMirrorPolicy")]
public virtual RequestMirrorPolicy RequestMirrorPolicy { get; set; }
Property Value
Type Description
RequestMirrorPolicy

RetryPolicy

Specifies the retry policy associated with this route.

Declaration
[JsonProperty("retryPolicy")]
public virtual HttpRetryPolicy RetryPolicy { get; set; }
Property Value
Type Description
HttpRetryPolicy

Timeout

Specifies the timeout for the selected route. Timeout is computed from the time the request has been fully processed (i.e. end-of-stream) up until the response has been completely processed. Timeout includes all retries. If not specified, will use the largest timeout among all backend services associated with the route.

Declaration
[JsonProperty("timeout")]
public virtual Duration Timeout { get; set; }
Property Value
Type Description
Duration

UrlRewrite

The spec to modify the URL of the request, prior to forwarding the request to the matched service.

Declaration
[JsonProperty("urlRewrite")]
public virtual UrlRewrite UrlRewrite { get; set; }
Property Value
Type Description
UrlRewrite

WeightedBackendServices

A list of weighted backend services to send traffic to when a route match occurs. The weights determine the fraction of traffic that flows to their corresponding backend service. If all traffic needs to go to a single backend service, there must be one weightedBackendService with weight set to a non 0 number. Once a backendService is identified and before forwarding the request to the backend service, advanced routing actions like Url rewrites and header transformations are applied depending on additional settings specified in this HttpRouteAction.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top