Show / Hide Table of Contents

Class NetworkLoadBalancerBackendSetMapping

A backend set mapping between source and destination network load balancer.

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

Properties

DestinationBackendSetName

Declaration
[Required(ErrorMessage = "DestinationBackendSetName is required.")]
[JsonProperty(PropertyName = "destinationBackendSetName")]
public string DestinationBackendSetName { get; set; }
Property Value
Type Description
string

The name of the destination backend set.
Example: example_backend_set

Remarks

Required

IsBackendSetForNonMovable

Declaration
[Required(ErrorMessage = "IsBackendSetForNonMovable is required.")]
[JsonProperty(PropertyName = "isBackendSetForNonMovable")]
public bool? IsBackendSetForNonMovable { get; set; }
Property Value
Type Description
bool?

This flag specifies if this backend set is used for traffic for non-movable compute instances. Backend sets that point to non-movable instances are only enabled or disabled during DR. For non-movable instances this flag should be set to 'true'. Backend sets that point to movable instances are emptied and their contents are transferred to the destination region network load balancer. For movable instances this flag should be set to 'false'.
Example: true

Remarks

Required

SourceBackendSetName

Declaration
[Required(ErrorMessage = "SourceBackendSetName is required.")]
[JsonProperty(PropertyName = "sourceBackendSetName")]
public string SourceBackendSetName { get; set; }
Property Value
Type Description
string

The name of the source backend set.
Example: example_backend_set

Remarks

Required

In this article
Back to top