Show / Hide Table of Contents

Class NetworkConfiguration

Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.

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

Properties

NumberOfHops

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

Number of hops.

ProbeMode

Declaration
[JsonProperty(PropertyName = "probeMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProbeMode? ProbeMode { get; set; }
Property Value
Type Description
ProbeMode?

Type of probe mode when TCP protocol is selected.

ProbePerHop

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

Number of probes per hop.

Protocol

Declaration
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Protocol? Protocol { get; set; }
Property Value
Type Description
Protocol?

Type of protocol.

TransmissionRate

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

Number of probe packets sent out simultaneously.

In this article
Back to top