BackendSet¶
-
class
oci.network_load_balancer.models.
BackendSet
(**kwargs)¶ Bases:
object
The configuration of a network load balancer backend set. For more information about backend set configuration, see Managing Backend Sets.
Caution: Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Attributes
IP_VERSION_IPV4
A constant which can be used with the ip_version property of a BackendSet. IP_VERSION_IPV6
A constant which can be used with the ip_version property of a BackendSet. POLICY_FIVE_TUPLE
A constant which can be used with the policy property of a BackendSet. POLICY_THREE_TUPLE
A constant which can be used with the policy property of a BackendSet. POLICY_TWO_TUPLE
A constant which can be used with the policy property of a BackendSet. backends
Gets the backends of this BackendSet. health_checker
[Required] Gets the health_checker of this BackendSet. ip_version
Gets the ip_version of this BackendSet. is_fail_open
Gets the is_fail_open of this BackendSet. is_instant_failover_enabled
Gets the is_instant_failover_enabled of this BackendSet. is_preserve_source
Gets the is_preserve_source of this BackendSet. name
[Required] Gets the name of this BackendSet. policy
Gets the policy of this BackendSet. Methods
__init__
(**kwargs)Initializes a new BackendSet object with values from keyword arguments. -
IP_VERSION_IPV4
= 'IPV4'¶ A constant which can be used with the ip_version property of a BackendSet. This constant has a value of “IPV4”
-
IP_VERSION_IPV6
= 'IPV6'¶ A constant which can be used with the ip_version property of a BackendSet. This constant has a value of “IPV6”
-
POLICY_FIVE_TUPLE
= 'FIVE_TUPLE'¶ A constant which can be used with the policy property of a BackendSet. This constant has a value of “FIVE_TUPLE”
-
POLICY_THREE_TUPLE
= 'THREE_TUPLE'¶ A constant which can be used with the policy property of a BackendSet. This constant has a value of “THREE_TUPLE”
-
POLICY_TWO_TUPLE
= 'TWO_TUPLE'¶ A constant which can be used with the policy property of a BackendSet. This constant has a value of “TWO_TUPLE”
-
__init__
(**kwargs)¶ Initializes a new BackendSet object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this BackendSet.
- policy (str) – The value to assign to the policy property of this BackendSet. Allowed values for this property are: “TWO_TUPLE”, “THREE_TUPLE”, “FIVE_TUPLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- is_preserve_source (bool) – The value to assign to the is_preserve_source property of this BackendSet.
- is_fail_open (bool) – The value to assign to the is_fail_open property of this BackendSet.
- is_instant_failover_enabled (bool) – The value to assign to the is_instant_failover_enabled property of this BackendSet.
- ip_version (str) – The value to assign to the ip_version property of this BackendSet. Allowed values for this property are: “IPV4”, “IPV6”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- backends (list[oci.network_load_balancer.models.Backend]) – The value to assign to the backends property of this BackendSet.
- health_checker (oci.network_load_balancer.models.HealthChecker) – The value to assign to the health_checker property of this BackendSet.
-
backends
¶ Gets the backends of this BackendSet. An array of backends.
Returns: The backends of this BackendSet. Return type: list[oci.network_load_balancer.models.Backend]
-
health_checker
¶ [Required] Gets the health_checker of this BackendSet. The health check policy configuration.
Returns: The health_checker of this BackendSet. Return type: oci.network_load_balancer.models.HealthChecker
-
ip_version
¶ Gets the ip_version of this BackendSet. IP version associated with the backend set.
Allowed values for this property are: “IPV4”, “IPV6”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The ip_version of this BackendSet. Return type: str
-
is_fail_open
¶ Gets the is_fail_open of this BackendSet. If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
Returns: The is_fail_open of this BackendSet. Return type: bool
-
is_instant_failover_enabled
¶ Gets the is_instant_failover_enabled of this BackendSet. If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
Returns: The is_instant_failover_enabled of this BackendSet. Return type: bool
-
is_preserve_source
¶ Gets the is_preserve_source of this BackendSet. If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
Returns: The is_preserve_source of this BackendSet. Return type: bool
-
name
¶ [Required] Gets the name of this BackendSet. A user-friendly name for the backend set that must be unique and cannot be changed.
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
Example: example_backend_set
Returns: The name of this BackendSet. Return type: str
-
policy
¶ Gets the policy of this BackendSet. The network load balancer policy for the backend set.
Example: FIVE_TUPLE
Allowed values for this property are: “TWO_TUPLE”, “THREE_TUPLE”, “FIVE_TUPLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The policy of this BackendSet. Return type: str
-