Show / Hide Table of Contents

Class Link

Details of the link between two nodes.

Inheritance
object
Link
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmsyntheticsService.Models
Assembly: OCI.DotNetSDK.Apmsynthetics.dll
Syntax
public class Link

Properties

DelayInMilliseconds

Declaration
[JsonProperty(PropertyName = "delayInMilliseconds")]
public double DelayInMilliseconds { get; set; }
Property Value
Type Description
double

Difference of the packet response time between source and destination nodes, in milliseconds.

Destination

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

ID of the destination node.

ForwardingLoss

Declaration
[JsonProperty(PropertyName = "forwardingLoss")]
public double ForwardingLoss { get; set; }
Property Value
Type Description
double

Average packet loss.

Id

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

ID of the link.

Remarks

Required

MaxDelayInMilliseconds

Declaration
[JsonProperty(PropertyName = "maxDelayInMilliseconds")]
public double MaxDelayInMilliseconds { get; set; }
Property Value
Type Description
double

Maximum delay in milliseconds.

MinDelayInMilliseconds

Declaration
[JsonProperty(PropertyName = "minDelayInMilliseconds")]
public double MinDelayInMilliseconds { get; set; }
Property Value
Type Description
double

Minimum delay in milliseconds.

Paths

Declaration
[JsonProperty(PropertyName = "paths")]
public List<string> Paths { get; set; }
Property Value
Type Description
List<string>

List of all path IDs of which this link is part of.

RepeatCount

Declaration
[JsonProperty(PropertyName = "repeatCount")]
public int? RepeatCount { get; set; }
Property Value
Type Description
int?

Number of times the link is repeated.

Source

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

ID of the source node.

In this article
Back to top