Show / Hide Table of Contents

Class PathAnalysisWorkRequestResult

Defines the configuration of the path analysis result.

Inheritance
object
WorkRequestResult
PathAnalysisWorkRequestResult
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 PathAnalysisWorkRequestResult : WorkRequestResult

Properties

Paths

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

List of various paths from source node to destination node for a given PathAnalysisQuery.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Time the PathAnalysisResult was generated, in the format defined by RFC3339.

Remarks

Required

In this article
Back to top