Show / Hide Table of Contents

Class VcnDrgAttachmentNetworkDetails

Specifies details within the VCN.

Inheritance
object
DrgAttachmentNetworkDetails
VcnDrgAttachmentNetworkDetails
Inherited Members
DrgAttachmentNetworkDetails.Id
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 VcnDrgAttachmentNetworkDetails : DrgAttachmentNetworkDetails

Properties

RouteTableId

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

The OCID of the route table the DRG attachment is using.
For information about why you would associate a route table with a DRG attachment, see:

  • Transit Routing: Access to Multiple VCNs in Same Region
  • Transit Routing: Private Access to Oracle Services

VcnRouteType

Declaration
[JsonProperty(PropertyName = "vcnRouteType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VcnDrgAttachmentNetworkDetails.VcnRouteTypeEnum? VcnRouteType { get; set; }
Property Value
Type Description
VcnDrgAttachmentNetworkDetails.VcnRouteTypeEnum?

Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.

In this article
Back to top