LoadBalancingMethod

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

Bases: object

LoadBalancingMethod model.

Attributes

METHOD_IP_HASH A constant which can be used with the method property of a LoadBalancingMethod.
METHOD_ROUND_ROBIN A constant which can be used with the method property of a LoadBalancingMethod.
METHOD_STICKY_COOKIE A constant which can be used with the method property of a LoadBalancingMethod.
method [Required] Gets the method of this LoadBalancingMethod.

Methods

__init__(**kwargs) Initializes a new LoadBalancingMethod 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'

A constant which can be used with the method property of a LoadBalancingMethod. This constant has a value of “IP_HASH”

METHOD_ROUND_ROBIN = 'ROUND_ROBIN'

A constant which can be used with the method property of a LoadBalancingMethod. This constant has a value of “ROUND_ROBIN”

A constant which can be used with the method property of a LoadBalancingMethod. This constant has a value of “STICKY_COOKIE”

__init__(**kwargs)

Initializes a new LoadBalancingMethod object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:

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 LoadBalancingMethod. 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’.
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