Show / Hide Table of Contents

Class NatConfigurationRequest

Nat Configuration request to use Nat feature on firewall.

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

Properties

MustEnablePrivateNat

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

To allocate private NAT IPs to the firewall. The attached network firewall policy must also have NAT rules to enable NAT on any traffic passing through the firewall. The value of this field can not be false to release the NAT IPs given that the attached network firewall policy does not contains any NAT rules. The value of this field should be set to true if the network firewall policy being applied contains NAT rules.

Remarks

Required

In this article
Back to top