Show / Hide Table of Contents

Class LoadBalancerBackendSetMappingDetails

Create backend set mapping properties for a load balancer member.

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

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: Destination-BackendSet-1

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, their contents are not altered. 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: Source-BackendSet-1

Remarks

Required

In this article
Back to top