Show / Hide Table of Contents

Class OkeClusterNetworkLoadBalancerMapping

Source-to-destination mapping for a network load balancer.

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

Properties

DestinationNetworkLoadBalancerId

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

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

Remarks

Required

SourceNetworkLoadBalancerId

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

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

Remarks

Required

In this article
Back to top