Show / Hide Table of Contents

Class CreateNatV4RuleDetails

Request for creating NATV4 type Nat Rule used in the firewall policy.

Inheritance
object
CreateNatRuleDetails
CreateNatV4RuleDetails
Inherited Members
CreateNatRuleDetails.Name
CreateNatRuleDetails.Description
CreateNatRuleDetails.Position
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 CreateNatV4RuleDetails : CreateNatRuleDetails

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
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