Show / Hide Table of Contents

Class TunnelRouteSummary

A summary of the routes advertised to and received from the on-premises network.

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

Properties

Advertiser

Declaration
[JsonProperty(PropertyName = "advertiser")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TunnelRouteSummary.AdvertiserEnum? Advertiser { get; set; }
Property Value
Type Description
TunnelRouteSummary.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