Show / Hide Table of Contents

Class Node

Details of the network node.

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

Properties

AvgPacketLossPercent

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

Percentage of the average packet loss.

AvgPacketResponseTimeInMs

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

Average packet response time in milliseconds.

ConsecutiveAnonymousCount

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

Number of consecutive anonymous network nodes.

DisplayName

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

Display name of the network node.

GeoInfo

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

Geographical information of the network node.

Id

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

ID of the network node.

Remarks

Required

IpAddress

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

IP address of the network node.

Level

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

Level of the network node.

OutgoingLinks

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

Outgoing links from the network node.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Node.TypeEnum? Type { get; set; }
Property Value
Type Description
Node.TypeEnum?

Type of network node.

In this article
Back to top