BackendSetSummary

class oci.network_load_balancer.models.BackendSetSummary(**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 BackendSetSummary.
IP_VERSION_IPV6 A constant which can be used with the ip_version property of a BackendSetSummary.
POLICY_FIVE_TUPLE A constant which can be used with the policy property of a BackendSetSummary.
POLICY_THREE_TUPLE A constant which can be used with the policy property of a BackendSetSummary.
POLICY_TWO_TUPLE A constant which can be used with the policy property of a BackendSetSummary.
backends [Required] Gets the backends of this BackendSetSummary.
health_checker [Required] Gets the health_checker of this BackendSetSummary.
ip_version Gets the ip_version of this BackendSetSummary.
is_fail_open Gets the is_fail_open of this BackendSetSummary.
is_instant_failover_enabled Gets the is_instant_failover_enabled of this BackendSetSummary.
is_preserve_source Gets the is_preserve_source of this BackendSetSummary.
name [Required] Gets the name of this BackendSetSummary.
policy [Required] Gets the policy of this BackendSetSummary.

Methods

__init__(**kwargs) Initializes a new BackendSetSummary object with values from keyword arguments.
IP_VERSION_IPV4 = 'IPV4'

A constant which can be used with the ip_version property of a BackendSetSummary. This constant has a value of “IPV4”

IP_VERSION_IPV6 = 'IPV6'

A constant which can be used with the ip_version property of a BackendSetSummary. This constant has a value of “IPV6”

POLICY_FIVE_TUPLE = 'FIVE_TUPLE'

A constant which can be used with the policy property of a BackendSetSummary. 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 BackendSetSummary. 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 BackendSetSummary. This constant has a value of “TWO_TUPLE”

__init__(**kwargs)

Initializes a new BackendSetSummary 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 BackendSetSummary.
  • policy (str) – The value to assign to the policy property of this BackendSetSummary. 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 BackendSetSummary.
  • is_fail_open (bool) – The value to assign to the is_fail_open property of this BackendSetSummary.
  • is_instant_failover_enabled (bool) – The value to assign to the is_instant_failover_enabled property of this BackendSetSummary.
  • ip_version (str) – The value to assign to the ip_version property of this BackendSetSummary. 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 BackendSetSummary.
  • health_checker (oci.network_load_balancer.models.HealthChecker) – The value to assign to the health_checker property of this BackendSetSummary.
backends

[Required] Gets the backends of this BackendSetSummary. An array of backends.

Returns:The backends of this BackendSetSummary.
Return type:list[oci.network_load_balancer.models.Backend]
health_checker

[Required] Gets the health_checker of this BackendSetSummary.

Returns:The health_checker of this BackendSetSummary.
Return type:oci.network_load_balancer.models.HealthChecker
ip_version

Gets the ip_version of this BackendSetSummary. 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 BackendSetSummary.
Return type:str
is_fail_open

Gets the is_fail_open of this BackendSetSummary. 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 BackendSetSummary.
Return type:bool
is_instant_failover_enabled

Gets the is_instant_failover_enabled of this BackendSetSummary. 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 BackendSetSummary.
Return type:bool
is_preserve_source

Gets the is_preserve_source of this BackendSetSummary. If this parameter is enabled, the network load balancer preserves the source IP of the packet forwarded to the backend servers. Backend servers see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, this parameter cannot be disabled. The value is true by default.

Returns:The is_preserve_source of this BackendSetSummary.
Return type:bool
name

[Required] Gets the name of this BackendSetSummary. 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 BackendSetSummary.
Return type:str
policy

[Required] Gets the policy of this BackendSetSummary. 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 BackendSetSummary.
Return type:str