Show / Hide Table of Contents

Class VirtualCircuitDrgAttachmentNetworkCreateDetails

Inheritance
object
DrgAttachmentNetworkCreateDetails
VirtualCircuitDrgAttachmentNetworkCreateDetails
Inherited Members
DrgAttachmentNetworkCreateDetails.Id
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class VirtualCircuitDrgAttachmentNetworkCreateDetails : DrgAttachmentNetworkCreateDetails

Properties

CompartmentId

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

The OCID of compartment that contains the Virtual Circuit.

Remarks

Required

IsEdgePop

Declaration
[JsonProperty(PropertyName = "isEdgePop")]
public bool? IsEdgePop { get; set; }
Property Value
Type Description
bool?

Whether the Fast Connect exists through an edge pop region.
Example: true

IsWhitelistedForIngressDisintermediationC3

Declaration
[JsonProperty(PropertyName = "isWhitelistedForIngressDisintermediationC3")]
public bool? IsWhitelistedForIngressDisintermediationC3 { get; set; }
Property Value
Type Description
bool?

Determines whether the ingress traffic/routes through this attachment are disintermediated or not.
Example: true

RegionName

Declaration
[JsonProperty(PropertyName = "regionName")]
public string RegionName { get; set; }
Property Value
Type Description
string

The OCI region name

RegionalOciAsn

Declaration
[JsonProperty(PropertyName = "regionalOciAsn")]
public string RegionalOciAsn { get; set; }
Property Value
Type Description
string

The BGP ASN to use for the Virtual Circuit's route target

Throughput

Declaration
[JsonProperty(PropertyName = "throughput")]
[JsonConverter(typeof(StringEnumConverter))]
public VirtualCircuitDrgAttachmentNetworkCreateDetails.ThroughputEnum? Throughput { get; set; }
Property Value
Type Description
VirtualCircuitDrgAttachmentNetworkCreateDetails.ThroughputEnum?

Determines Throughput capacity of Virtual Circuit.
Example: 400G

TransportOnlyMode

Declaration
[JsonProperty(PropertyName = "transportOnlyMode")]
public bool? TransportOnlyMode { get; set; }
Property Value
Type Description
bool?

Boolean flag that determines wether all traffic over the VCs is encrypted.
Example: true

In this article
Back to top