Show / Hide Table of Contents

Class DefaultDrgRouteTables

The default DRG route table for this DRG. Each network type has a default DRG route table.
You can update a network type to use a different DRG route table, but each network type must have a default DRG route table. You cannot delete a default DRG route table.

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

Properties

IpsecTunnel

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

The OCID of the default DRG route table assigned to DRG attachments of type IPSEC_TUNNEL on creation.

RemotePeeringConnection

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

The OCID of the default DRG route table to be assigned to DRG attachments of type REMOTE_PEERING_CONNECTION on creation.

Vcn

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

The OCID of the default DRG route table to be assigned to DRG attachments of type VCN on creation.

VirtualCircuit

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

The OCID of the default DRG route table to be assigned to DRG attachments of type VIRTUAL_CIRCUIT on creation.

In this article
Back to top