Show / Hide Table of Contents

Class EgressTrafficSpec

Defines the traffic configuration that leaves the traffic node.

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

Properties

DestinationAddress

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

The IPv4 address of the destination node.

Remarks

Required

Protocol

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

The IP protocol to use for the traffic path analysis.

Remarks

Required

SourceAddress

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

The IPv4 address of the source node.

Remarks

Required

TrafficProtocolParameters

Declaration
[JsonProperty(PropertyName = "trafficProtocolParameters")]
public TrafficProtocolParameters TrafficProtocolParameters { get; set; }
Property Value
Type Description
TrafficProtocolParameters
In this article
Back to top