Show / Hide Table of Contents

Class ConsistentHashLoadBalancerSettings

This message defines settings for a consistent hash style load balancer.

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

Properties

ETag

The ETag of the item.

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

HttpCookie

Hash is based on HTTP Cookie. This field describes a HTTP cookie that will be used as the hash key for the consistent hash load balancer. If the cookie is not present, it will be generated. This field is applicable if the sessionAffinity is set to HTTP_COOKIE.

Declaration
[JsonProperty("httpCookie")]
public virtual ConsistentHashLoadBalancerSettingsHttpCookie HttpCookie { get; set; }
Property Value
Type Description
ConsistentHashLoadBalancerSettingsHttpCookie

HttpHeaderName

The hash based on the value of the specified header field. This field is applicable if the sessionAffinity is set to HEADER_FIELD.

Declaration
[JsonProperty("httpHeaderName")]
public virtual string HttpHeaderName { get; set; }
Property Value
Type Description
System.String

MinimumRingSize

The minimum number of virtual nodes to use for the hash ring. Defaults to 1024. Larger ring sizes result in more granular load distributions. If the number of hosts in the load balancing pool is larger than the ring size, each host will be assigned a single virtual node.

Declaration
[JsonProperty("minimumRingSize")]
public virtual long? MinimumRingSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top