Show / Hide Table of Contents

Class UpdateDrgAttachmentDetails

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

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DrgRouteTableId

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

The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
You can't remove a DRG route table from a DRG attachment, but you can reassign which DRG route table it uses.

ExportDrgRouteDistributionId

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

The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised out through the attachment. If this value is null, no routes are advertised through this attachment.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

NetworkDetails

Declaration
[JsonProperty(PropertyName = "networkDetails")]
public DrgAttachmentNetworkUpdateDetails NetworkDetails { get; set; }
Property Value
Type Description
DrgAttachmentNetworkUpdateDetails

RouteTableId

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

This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
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
In this article
Back to top