Show / Hide Table of Contents

Class UpdateBackendSetDetails

The configuration details for updating a load balancer backend set. For more information about backend set configuration, see Backend Sets for Network Load Balancers.
Caution: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
UpdateBackendSetDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NetworkloadbalancerService.Models
Assembly: OCI.DotNetSDK.Networkloadbalancer.dll
Syntax
public class UpdateBackendSetDetails

Properties

AreOperationallyActiveBackendsPreferred

Declaration
[JsonProperty(PropertyName = "areOperationallyActiveBackendsPreferred")]
public bool? AreOperationallyActiveBackendsPreferred { get; set; }
Property Value
Type Description
bool?

If enabled, NLB supports active-standby backends, with the initial standby being the configured backup backend. The standby backend becomes active and takes over serving traffic when the current active backend becomes unhealthy.
The new active backend continues to serve the traffic while healthy even when the old active backend becomes healthy.

Backends

Declaration
[JsonProperty(PropertyName = "backends")]
public List<BackendDetails> Backends { get; set; }
Property Value
Type Description
List<BackendDetails>

An array of backends associated with the backend set.

HealthChecker

Declaration
[JsonProperty(PropertyName = "healthChecker")]
public HealthCheckerDetails HealthChecker { get; set; }
Property Value
Type Description
HealthCheckerDetails

IpVersion

Declaration
[JsonProperty(PropertyName = "ipVersion")]
[JsonConverter(typeof(StringEnumConverter))]
public IpVersion? IpVersion { get; set; }
Property Value
Type Description
IpVersion?

The IP version associated with the backend set.

IsFailOpen

Declaration
[JsonProperty(PropertyName = "isFailOpen")]
public bool? IsFailOpen { get; set; }
Property Value
Type Description
bool?

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.

IsInstantFailoverEnabled

Declaration
[JsonProperty(PropertyName = "isInstantFailoverEnabled")]
public bool? IsInstantFailoverEnabled { get; set; }
Property Value
Type Description
bool?

If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.

IsInstantFailoverTcpResetEnabled

Declaration
[JsonProperty(PropertyName = "isInstantFailoverTcpResetEnabled")]
public bool? IsInstantFailoverTcpResetEnabled { get; set; }
Property Value
Type Description
bool?

This only applies when using instant failover. If enabled, the network load balancer will send TCP RST to clients when a backend becomes unhealthy and the traffic is moved to a healthy backend. If disabled, the network load balancer will not send TCP RST before moving traffic to a healthy backend. By default, TCP RST is enabled.

IsPreserveSource

Declaration
[JsonProperty(PropertyName = "isPreserveSource")]
public bool? IsPreserveSource { get; set; }
Property Value
Type Description
bool?

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.

Policy

Declaration
[JsonProperty(PropertyName = "policy")]
public string Policy { get; set; }
Property Value
Type Description
string

The network load balancer policy for the backend set. To get a list of available policies, use the {@link #listNetworkLoadBalancersPolicies(ListNetworkLoadBalancersPoliciesRequest) listNetworkLoadBalancersPolicies} operation.
Example: FIVE_TUPLE

In this article
Back to top