RoundRobinLoadBalancingMethod

class oci.waas.models.RoundRobinLoadBalancingMethod(**kwargs)

Bases: oci.waas.models.load_balancing_method.LoadBalancingMethod

An object that represents the round-robin load balancing method.

Attributes

METHOD_IP_HASH str(object=’’) -> str
METHOD_ROUND_ROBIN str(object=’’) -> str
METHOD_STICKY_COOKIE str(object=’’) -> str
method [Required] Gets the method of this LoadBalancingMethod.

Methods

__init__(**kwargs) Initializes a new RoundRobinLoadBalancingMethod object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
METHOD_IP_HASH = 'IP_HASH'
METHOD_ROUND_ROBIN = 'ROUND_ROBIN'
__init__(**kwargs)

Initializes a new RoundRobinLoadBalancingMethod object with values from keyword arguments. The default value of the method attribute of this class is ROUND_ROBIN and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:method (str) – The value to assign to the method property of this RoundRobinLoadBalancingMethod. Allowed values for this property are: “IP_HASH”, “ROUND_ROBIN”, “STICKY_COOKIE”
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

method

[Required] Gets the method of this LoadBalancingMethod. Load balancing methods are algorithms used to efficiently distribute traffic among origin servers.

  • `IP_HASH`__: All the incoming requests from the same client IP address should go to the same content origination server. IP_HASH load balancing method uses origin weights when choosing which origin should the hash be assigned to initially.
  • `ROUND_ROBIN`__: Forwards requests sequentially to the available origin servers. The first request - to the first origin server, the second request - to the next origin server, and so on. After it sends a request to the last origin server, it starts again with the first origin server. When using weights on origins, Weighted Round Robin assigns more requests to origins with a greater weight. Over a period of time, origins will receive a number of requests in proportion to their weight.
  • `STICKY_COOKIE`__: Adds a session cookie to the first response from the origin server and identifies the server that sent the response. The client’s next request contains the cookie value, and nginx routes the request to the origin server that responded to the first request. STICKY_COOKIE load balancing method falls back to Round Robin for the first request.

Allowed values for this property are: “IP_HASH”, “ROUND_ROBIN”, “STICKY_COOKIE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The method of this LoadBalancingMethod.
Return type:str