IpBasedMaxConnectionsRule¶
-
class
oci.load_balancer.models.
IpBasedMaxConnectionsRule
(**kwargs)¶ Bases:
oci.load_balancer.models.rule.Rule
An object that represents the action of configuring an IP max connection rule which specifies how many connections IPs can make to a listener.
Attributes
ACTION_ADD_HTTP_REQUEST_HEADER
str(object=’’) -> str ACTION_ADD_HTTP_RESPONSE_HEADER
str(object=’’) -> str ACTION_ALLOW
str(object=’’) -> str ACTION_CONTROL_ACCESS_USING_HTTP_METHODS
str(object=’’) -> str ACTION_EXTEND_HTTP_REQUEST_HEADER_VALUE
str(object=’’) -> str ACTION_EXTEND_HTTP_RESPONSE_HEADER_VALUE
str(object=’’) -> str ACTION_HTTP_HEADER
str(object=’’) -> str ACTION_IP_BASED_MAX_CONNECTIONS
str(object=’’) -> str ACTION_REDIRECT
str(object=’’) -> str ACTION_REMOVE_HTTP_REQUEST_HEADER
str(object=’’) -> str ACTION_REMOVE_HTTP_RESPONSE_HEADER
str(object=’’) -> str action
[Required] Gets the action of this Rule. default_max_connections
Gets the default_max_connections of this IpBasedMaxConnectionsRule. ip_max_connections
Gets the ip_max_connections of this IpBasedMaxConnectionsRule. Methods
__init__
(**kwargs)Initializes a new IpBasedMaxConnectionsRule 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. -
ACTION_ADD_HTTP_REQUEST_HEADER
= 'ADD_HTTP_REQUEST_HEADER'¶
-
ACTION_ADD_HTTP_RESPONSE_HEADER
= 'ADD_HTTP_RESPONSE_HEADER'¶
-
ACTION_ALLOW
= 'ALLOW'¶
-
ACTION_CONTROL_ACCESS_USING_HTTP_METHODS
= 'CONTROL_ACCESS_USING_HTTP_METHODS'¶
-
ACTION_EXTEND_HTTP_REQUEST_HEADER_VALUE
= 'EXTEND_HTTP_REQUEST_HEADER_VALUE'¶
-
ACTION_EXTEND_HTTP_RESPONSE_HEADER_VALUE
= 'EXTEND_HTTP_RESPONSE_HEADER_VALUE'¶
-
ACTION_HTTP_HEADER
= 'HTTP_HEADER'¶
-
ACTION_IP_BASED_MAX_CONNECTIONS
= 'IP_BASED_MAX_CONNECTIONS'¶
-
ACTION_REDIRECT
= 'REDIRECT'¶
-
ACTION_REMOVE_HTTP_REQUEST_HEADER
= 'REMOVE_HTTP_REQUEST_HEADER'¶
-
ACTION_REMOVE_HTTP_RESPONSE_HEADER
= 'REMOVE_HTTP_RESPONSE_HEADER'¶
-
__init__
(**kwargs)¶ Initializes a new IpBasedMaxConnectionsRule object with values from keyword arguments. The default value of the
action
attribute of this class isIP_BASED_MAX_CONNECTIONS
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - action (str) – The value to assign to the action property of this IpBasedMaxConnectionsRule. Allowed values for this property are: “ADD_HTTP_REQUEST_HEADER”, “EXTEND_HTTP_REQUEST_HEADER_VALUE”, “REMOVE_HTTP_REQUEST_HEADER”, “ADD_HTTP_RESPONSE_HEADER”, “EXTEND_HTTP_RESPONSE_HEADER_VALUE”, “REMOVE_HTTP_RESPONSE_HEADER”, “ALLOW”, “CONTROL_ACCESS_USING_HTTP_METHODS”, “REDIRECT”, “HTTP_HEADER”, “IP_BASED_MAX_CONNECTIONS”
- default_max_connections (int) – The value to assign to the default_max_connections property of this IpBasedMaxConnectionsRule.
- ip_max_connections (list[oci.load_balancer.models.IpMaxConnections]) – The value to assign to the ip_max_connections property of this IpBasedMaxConnectionsRule.
-
action
¶ [Required] Gets the action of this Rule. Allowed values for this property are: “ADD_HTTP_REQUEST_HEADER”, “EXTEND_HTTP_REQUEST_HEADER_VALUE”, “REMOVE_HTTP_REQUEST_HEADER”, “ADD_HTTP_RESPONSE_HEADER”, “EXTEND_HTTP_RESPONSE_HEADER_VALUE”, “REMOVE_HTTP_RESPONSE_HEADER”, “ALLOW”, “CONTROL_ACCESS_USING_HTTP_METHODS”, “REDIRECT”, “HTTP_HEADER”, “IP_BASED_MAX_CONNECTIONS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The action of this Rule. Return type: str
-
default_max_connections
¶ Gets the default_max_connections of this IpBasedMaxConnectionsRule. The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.
Returns: The default_max_connections of this IpBasedMaxConnectionsRule. Return type: int
-
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.
-
ip_max_connections
¶ Gets the ip_max_connections of this IpBasedMaxConnectionsRule. An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is
Returns: The ip_max_connections of this IpBasedMaxConnectionsRule. Return type: list[oci.load_balancer.models.IpMaxConnections]
-