Show / Hide Table of Contents

Class OkeClusterLoadBalancerMapping

Source-to-destination mapping for a load balancer.

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

Properties

DestinationLoadBalancerId

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

The OCID of the destination Load Balancer.
Example: ocid1.loadbalancer.oc1..uniqueID

Remarks

Required

SourceLoadBalancerId

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

The OCID of the source Load Balancer.
Example: ocid1.loadbalancer.oc1..uniqueID

Remarks

Required

In this article
Back to top