Show / Hide Table of Contents

Class DrgCustomer

The list of IPSEC / FC / RPC info for a given DRG

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

Properties

DrgId

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

OCID of the DRG

Remarks

Required

IpsecConnections

Declaration
[JsonProperty(PropertyName = "ipsecConnections")]
public List<DrgCustomerResource> IpsecConnections { get; set; }
Property Value
Type Description
List<DrgCustomerResource>

A List of the IPSec connections on this DRG

RemotePeeringConnections

Declaration
[JsonProperty(PropertyName = "remotePeeringConnections")]
public List<DrgCustomerResource> RemotePeeringConnections { get; set; }
Property Value
Type Description
List<DrgCustomerResource>

A List of the RPC connections on this DRG

VirtualCircuits

Declaration
[JsonProperty(PropertyName = "virtualCircuits")]
public List<DrgCustomerResource> VirtualCircuits { get; set; }
Property Value
Type Description
List<DrgCustomerResource>

A List of the VCs on this DRG

In this article
Back to top