Show / Hide Table of Contents

Class FlexTunnelRouteSummary

A summary of the routes advertised to and received from the SD-WAN.

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

Properties

Advertiser

Declaration
[JsonProperty(PropertyName = "advertiser")]
[JsonConverter(typeof(StringEnumConverter))]
public FlexTunnelRouteSummary.AdvertiserEnum? Advertiser { get; set; }
Property Value
Type Description
FlexTunnelRouteSummary.AdvertiserEnum?

The source of the route advertisement.

Age

Declaration
[JsonProperty(PropertyName = "age")]
public long? Age { get; set; }
Property Value
Type Description
long?

The age of the route.

AsPath

Declaration
[JsonProperty(PropertyName = "asPath")]
public List<int> AsPath { get; set; }
Property Value
Type Description
List<int>

A list of ASNs in AS_Path.

IsBestPath

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

Indicates this is the best route.

Prefix

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

The BGP network layer reachability information.

In this article
Back to top