Show / Hide Table of Contents

Class TrafficRoute

Defines the traffic route taken in the path in PathAnalysisResult.

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

Properties

Nodes

Declaration
[Required(ErrorMessage = "Nodes is required.")]
[JsonProperty(PropertyName = "nodes")]
public List<TrafficNode> Nodes { get; set; }
Property Value
Type Description
List<TrafficNode>

The ordered sequence of nodes in the given the traffic route forming a path.

Remarks

Required

ReachabilityStatus

Declaration
[Required(ErrorMessage = "ReachabilityStatus is required.")]
[JsonProperty(PropertyName = "reachabilityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TrafficRoute.ReachabilityStatusEnum? ReachabilityStatus { get; set; }
Property Value
Type Description
TrafficRoute.ReachabilityStatusEnum?

Reachability status for the given traffic route.

Remarks

Required

RouteAnalysisDescription

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

A description of the traffic route analysis. For Example: "Traffic might not reach a destinationdue to the LB backend being unhealthy".

In this article
Back to top