Enum TargetPool.SessionAffinity (1.51.0)

public enum TargetPool.SessionAffinity extends Enum<TargetPool.SessionAffinity> implements ProtocolMessageEnum

Session affinity option, must be one of the following values: NONE: Connections from the same client IP may go to any instance in the pool. CLIENT_IP: Connections from the same client IP will go to the same instance in the pool while that instance remains healthy. CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol will go to the same instance in the pool while that instance remains healthy.

Protobuf enum google.cloud.compute.v1.TargetPool.SessionAffinity

Implements

ProtocolMessageEnum

Static Fields

NameDescription
CLIENT_IP

2-tuple hash on packet's source and destination IP addresses. Connections from the same source IP address to the same destination IP address will be served by the same backend VM while that VM remains healthy.

CLIENT_IP = 345665051;

CLIENT_IP_NO_DESTINATION

1-tuple hash only on packet's source IP address. Connections from the same source IP address will be served by the same backend VM while that VM remains healthy. This option can only be used for Internal TCP/UDP Load Balancing.

CLIENT_IP_NO_DESTINATION = 106122516;

CLIENT_IP_NO_DESTINATION_VALUE

1-tuple hash only on packet's source IP address. Connections from the same source IP address will be served by the same backend VM while that VM remains healthy. This option can only be used for Internal TCP/UDP Load Balancing.

CLIENT_IP_NO_DESTINATION = 106122516;

CLIENT_IP_PORT_PROTO

5-tuple hash on packet's source and destination IP addresses, IP protocol, and source and destination ports. Connections for the same IP protocol from the same source IP address and port to the same destination IP address and port will be served by the same backend VM while that VM remains healthy. This option cannot be used for HTTP(S) load balancing.

CLIENT_IP_PORT_PROTO = 221722926;

CLIENT_IP_PORT_PROTO_VALUE

5-tuple hash on packet's source and destination IP addresses, IP protocol, and source and destination ports. Connections for the same IP protocol from the same source IP address and port to the same destination IP address and port will be served by the same backend VM while that VM remains healthy. This option cannot be used for HTTP(S) load balancing.

CLIENT_IP_PORT_PROTO = 221722926;

CLIENT_IP_PROTO

3-tuple hash on packet's source and destination IP addresses, and IP protocol. Connections for the same IP protocol from the same source IP address to the same destination IP address will be served by the same backend VM while that VM remains healthy. This option cannot be used for HTTP(S) load balancing.

CLIENT_IP_PROTO = 25322148;

CLIENT_IP_PROTO_VALUE

3-tuple hash on packet's source and destination IP addresses, and IP protocol. Connections for the same IP protocol from the same source IP address to the same destination IP address will be served by the same backend VM while that VM remains healthy. This option cannot be used for HTTP(S) load balancing.

CLIENT_IP_PROTO = 25322148;

CLIENT_IP_VALUE

2-tuple hash on packet's source and destination IP addresses. Connections from the same source IP address to the same destination IP address will be served by the same backend VM while that VM remains healthy.

CLIENT_IP = 345665051;

Hash based on a cookie generated by the L7 loadbalancer. Only valid for HTTP(S) load balancing.

GENERATED_COOKIE = 370321204;

Hash based on a cookie generated by the L7 loadbalancer. Only valid for HTTP(S) load balancing.

GENERATED_COOKIE = 370321204;

HEADER_FIELD

The hash is based on a user specified header field.

HEADER_FIELD = 200737960;

HEADER_FIELD_VALUE

The hash is based on a user specified header field.

HEADER_FIELD = 200737960;

The hash is based on a user provided cookie.

HTTP_COOKIE = 494981627;

The hash is based on a user provided cookie.

HTTP_COOKIE = 494981627;

NONE

No session affinity. Connections from the same client IP may go to any instance in the pool.

NONE = 2402104;

NONE_VALUE

No session affinity. Connections from the same client IP may go to any instance in the pool.

NONE = 2402104;

UNDEFINED_SESSION_AFFINITY

A value indicating that the enum field is not set.

UNDEFINED_SESSION_AFFINITY = 0;

UNDEFINED_SESSION_AFFINITY_VALUE

A value indicating that the enum field is not set.

UNDEFINED_SESSION_AFFINITY = 0;

UNRECOGNIZED

Static Methods

NameDescription
forNumber(int value)
getDescriptor()
internalGetValueMap()
valueOf(Descriptors.EnumValueDescriptor desc)
valueOf(int value)

Deprecated. Use #forNumber(int) instead.

valueOf(String name)
values()

Methods

NameDescription
getDescriptorForType()
getNumber()
getValueDescriptor()