Class UpdateBackendDetails
The configuration details for updating a backend server.
Inherited Members
Namespace: Oci.NetworkloadbalancerService.Models
Assembly: OCI.DotNetSDK.Networkloadbalancer.dll
Syntax
public class UpdateBackendDetails
Properties
IsBackup
Declaration
[JsonProperty(PropertyName = "isBackup")]
public bool? IsBackup { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Whether the network load balancer should treat this server as a backup unit. If |
IsDrain
Declaration
[JsonProperty(PropertyName = "isDrain")]
public bool? IsDrain { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Whether the network load balancer should drain this server.
Servers marked "isDrain" stop receiving new connections but will continue to receive traffic on existing connections until the connection is terminated or times out.
|
IsOffline
Declaration
[JsonProperty(PropertyName = "isOffline")]
public bool? IsOffline { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | Whether the network load balancer should treat this server as offline. Offline servers receive no incoming
traffic.
|
Weight
Declaration
[JsonProperty(PropertyName = "weight")]
public int? Weight { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger
proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections
as a server weighted '1'.
For more information about network load balancer policies, see
Network Load Balancer Policies.
|