Show / Hide Table of Contents

Class NatRuleMatchCriteria

Match criteria used in NAT Rule used on the firewall policy.

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

Properties

DestinationAddress

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

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

Service

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

A Service name to be evaluated against the traffic protocol and protocol-specific parameters.

SourceAddress

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

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

In this article
Back to top