Show / Hide Table of Contents

Class DrgRoutingConfiguration

Identifies the DRG route table and rule that allowed the traffic to be forwarded.

Inheritance
object
ForwardedRoutingConfiguration
DrgRoutingConfiguration
Inherited Members
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 DrgRoutingConfiguration : ForwardedRoutingConfiguration

Properties

DrgRouteTableId

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

The OCID of the DRG route table that allowed the traffic.

Remarks

Required

RouteRule

Declaration
[Required(ErrorMessage = "RouteRule is required.")]
[JsonProperty(PropertyName = "routeRule")]
public DrgRouteRule RouteRule { get; set; }
Property Value
Type Description
DrgRouteRule
Remarks

Required

In this article
Back to top