Show / Hide Table of Contents

Class NatConfigurationRequest

Request to configure Network Address Translation (NAT) on a firewall.
To perform NAT on traffic passing the private NAT IPs to the firewall, the attached network firewall policy must also have NAT rules and NAT configuration must be enabled. If NAT configuration is enabled and the attached firewall policy does not contain NAT rule then NAT IPs will get allocated but NAT will not be performed on any traffic.

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?

The value of this field must be set to true if the network firewall policy being applied contains NAT rules.
The value of this field can be set to false if the network firewall policy being applied or the currently attached firewall policy doesn't contain NAT rules.

Remarks

Required

In this article
Back to top