Show / Hide Table of Contents

Class LoadBalancerBackendSetMapping

A backend set mapping between source and destination load balancer.

Inheritance
object
LoadBalancerBackendSetMapping
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 LoadBalancerBackendSetMapping

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: My_Destination_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 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: My_Source_Backend_Set

Remarks

Required

In this article
Back to top