Show / Hide Table of Contents

Class VxlanInspectionRuleMatchCriteria

Criteria to evaluate against incoming network traffic. A match occurs when at least one item in the array associated with each specified property corresponds with the relevant aspect of the traffic.

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

Properties

DestinationAddress

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

An array of address list names to be evaluated against the traffic destination address.

SourceAddress

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

An array of address list names to be evaluated against the traffic source address.

In this article
Back to top