Show / Hide Table of Contents

Class BackendServiceFailoverPolicy

Applicable only to Failover for Internal TCP/UDP Load Balancing. On failover or failback, this field indicates whether connection draining will be honored. GCP has a fixed connection draining timeout of 10 minutes. A setting of true terminates existing TCP connections to the active pool during failover and failback, immediately draining traffic. A setting of false allows existing TCP connections to persist, even on VMs no longer in the active pool, for up to the duration of the connection draining timeout (10 minutes).

Inheritance
System.Object
BackendServiceFailoverPolicy
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 BackendServiceFailoverPolicy : IDirectResponseSchema

Properties

DisableConnectionDrainOnFailover

This can be set to true only if the protocol is TCP.

The default is false.

Declaration
[JsonProperty("disableConnectionDrainOnFailover")]
public virtual bool? DisableConnectionDrainOnFailover { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DropTrafficIfUnhealthy

Applicable only to Failover for Internal TCP/UDP Load Balancing. If set to true, connections to the load balancer are dropped when all primary and all backup backend VMs are unhealthy. If set to false, connections are distributed among all primary VMs when all primary and all backup backend VMs are unhealthy.

The default is false.

Declaration
[JsonProperty("dropTrafficIfUnhealthy")]
public virtual bool? DropTrafficIfUnhealthy { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

FailoverRatio

Applicable only to Failover for Internal TCP/UDP Load Balancing. The value of the field must be in the range [0, 1]. If the value is 0, the load balancer performs a failover when the number of healthy primary VMs equals zero. For all other values, the load balancer performs a failover when the total number of healthy primary VMs is less than this ratio.

Declaration
[JsonProperty("failoverRatio")]
public virtual float? FailoverRatio { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top