Show / Hide Table of Contents

Class NatConfigurationResponse

Nat Configuration response.

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

Properties

MustEnablePrivateNat

Declaration
[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.

NatIpAddressList

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

An array of NAT IP addresses that are associated with the Network Firewall. These IPs are reserved for NAT and shouldn't be used for any other purpose in the subnet.

In this article
Back to top