Show / Hide Table of Contents

Class NatV4NatRule

A Nat Rule is used to define to which traffic NAT should be applied by the firewall.

Inheritance
object
NatRule
NatV4NatRule
Inherited Members
NatRule.Name
NatRule.Description
NatRule.PriorityOrder
NatRule.Position
NatRule.ParentResourceId
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 NatV4NatRule : NatRule

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NatV4ActionType? Action { get; set; }
Property Value
Type Description
NatV4ActionType?

action:

  • DIPP_SRC_NAT - Dynamic-ip-port source NAT.
Remarks

Required

Condition

Declaration
[Required(ErrorMessage = "Condition is required.")]
[JsonProperty(PropertyName = "condition")]
public NatRuleMatchCriteria Condition { get; set; }
Property Value
Type Description
NatRuleMatchCriteria
Remarks

Required

In this article
Back to top