alicloud.vpc.NatGateway
Explore with Pulumi AI
Provides a resource to create a VPC NAT Gateway.
NOTE: Resource bandwidth packages will not be supported since 00:00 on November 4, 2017, and public IP can be replaced be elastic IPs. If a Nat Gateway has already bought some bandwidth packages, it can not bind elastic IP and you have to submit the work order to solve. If you want to add public IP, you can use resource ‘alicloud_eip_association’ to bind several elastic IPs for one Nat Gateway.
NOTE: From version 1.7.1, this resource has deprecated bandwidth packages. But, in order to manage stock bandwidth packages, version 1.13.0 re-support configuring ‘bandwidth_packages’.
NOTE: When you create an enhanced NAT gateway for the first time, the system automatically creates the service-linked role AliyunServiceRoleForNatgw. Then, the system attaches the permission policy AliyunServiceRolePolicyForNatgw to the role. This allows the NAT gateway to access other resources on Alibaba Cloud. For more information, see Service-linked roles.
NOTE: After you create an enhanced Internet NAT gateway, a route entry is automatically added to the route table of the VPC. The destination CIDR block of the route entry is 0.0.0.0/0 and the next hop is the NAT gateway. This ensures that traffic is routed to the NAT gateway.
NOTE: Available since v1.37.0.
Example Usage
Basic usage
- create enhanced nat gateway
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf_example";
const _default = alicloud.vpc.getEnhancedNatAvailableZones({});
const defaultNetwork = new alicloud.vpc.Network("default", {
vpcName: name,
cidrBlock: "10.0.0.0/8",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
vswitchName: name,
zoneId: _default.then(_default => _default.zones?.[0]?.zoneId),
cidrBlock: "10.10.0.0/20",
vpcId: defaultNetwork.id,
});
const defaultNatGateway = new alicloud.vpc.NatGateway("default", {
vpcId: defaultNetwork.id,
natGatewayName: name,
paymentType: "PayAsYouGo",
vswitchId: defaultSwitch.id,
natType: "Enhanced",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf_example"
default = alicloud.vpc.get_enhanced_nat_available_zones()
default_network = alicloud.vpc.Network("default",
vpc_name=name,
cidr_block="10.0.0.0/8")
default_switch = alicloud.vpc.Switch("default",
vswitch_name=name,
zone_id=default.zones[0].zone_id,
cidr_block="10.10.0.0/20",
vpc_id=default_network.id)
default_nat_gateway = alicloud.vpc.NatGateway("default",
vpc_id=default_network.id,
nat_gateway_name=name,
payment_type="PayAsYouGo",
vswitch_id=default_switch.id,
nat_type="Enhanced")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf_example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := vpc.GetEnhancedNatAvailableZones(ctx, &vpc.GetEnhancedNatAvailableZonesArgs{}, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.0.0.0/8"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
ZoneId: pulumi.String(_default.Zones[0].ZoneId),
CidrBlock: pulumi.String("10.10.0.0/20"),
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
_, err = vpc.NewNatGateway(ctx, "default", &vpc.NatGatewayArgs{
VpcId: defaultNetwork.ID(),
NatGatewayName: pulumi.String(name),
PaymentType: pulumi.String("PayAsYouGo"),
VswitchId: defaultSwitch.ID(),
NatType: pulumi.String("Enhanced"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf_example";
var @default = AliCloud.Vpc.GetEnhancedNatAvailableZones.Invoke();
var defaultNetwork = new AliCloud.Vpc.Network("default", new()
{
VpcName = name,
CidrBlock = "10.0.0.0/8",
});
var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
{
VswitchName = name,
ZoneId = @default.Apply(@default => @default.Apply(getEnhancedNatAvailableZonesResult => getEnhancedNatAvailableZonesResult.Zones[0]?.ZoneId)),
CidrBlock = "10.10.0.0/20",
VpcId = defaultNetwork.Id,
});
var defaultNatGateway = new AliCloud.Vpc.NatGateway("default", new()
{
VpcId = defaultNetwork.Id,
NatGatewayName = name,
PaymentType = "PayAsYouGo",
VswitchId = defaultSwitch.Id,
NatType = "Enhanced",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetEnhancedNatAvailableZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.vpc.NatGateway;
import com.pulumi.alicloud.vpc.NatGatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf_example");
final var default = VpcFunctions.getEnhancedNatAvailableZones();
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(name)
.cidrBlock("10.0.0.0/8")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(name)
.zoneId(default_.zones()[0].zoneId())
.cidrBlock("10.10.0.0/20")
.vpcId(defaultNetwork.id())
.build());
var defaultNatGateway = new NatGateway("defaultNatGateway", NatGatewayArgs.builder()
.vpcId(defaultNetwork.id())
.natGatewayName(name)
.paymentType("PayAsYouGo")
.vswitchId(defaultSwitch.id())
.natType("Enhanced")
.build());
}
}
configuration:
name:
type: string
default: tf_example
resources:
defaultNetwork:
type: alicloud:vpc:Network
name: default
properties:
vpcName: ${name}
cidrBlock: 10.0.0.0/8
defaultSwitch:
type: alicloud:vpc:Switch
name: default
properties:
vswitchName: ${name}
zoneId: ${default.zones[0].zoneId}
cidrBlock: 10.10.0.0/20
vpcId: ${defaultNetwork.id}
defaultNatGateway:
type: alicloud:vpc:NatGateway
name: default
properties:
vpcId: ${defaultNetwork.id}
natGatewayName: ${name}
paymentType: PayAsYouGo
vswitchId: ${defaultSwitch.id}
natType: Enhanced
variables:
default:
fn::invoke:
function: alicloud:vpc:getEnhancedNatAvailableZones
arguments: {}
- transform nat from Normal to Enhanced
NOTE: You must set
nat_type
toEnhanced
and setvswitch_id
.
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const _default = alicloud.vpc.getEnhancedNatAvailableZones({});
const defaultNetwork = new alicloud.vpc.Network("default", {
vpcName: name,
cidrBlock: "10.0.0.0/8",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
vswitchName: name,
zoneId: _default.then(_default => _default.zones?.[0]?.zoneId),
cidrBlock: "10.10.0.0/20",
vpcId: defaultNetwork.id,
});
const defaultNatGateway = new alicloud.vpc.NatGateway("default", {
vpcId: defaultNetwork.id,
natGatewayName: name,
vswitchId: defaultSwitch.id,
natType: "Enhanced",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
default = alicloud.vpc.get_enhanced_nat_available_zones()
default_network = alicloud.vpc.Network("default",
vpc_name=name,
cidr_block="10.0.0.0/8")
default_switch = alicloud.vpc.Switch("default",
vswitch_name=name,
zone_id=default.zones[0].zone_id,
cidr_block="10.10.0.0/20",
vpc_id=default_network.id)
default_nat_gateway = alicloud.vpc.NatGateway("default",
vpc_id=default_network.id,
nat_gateway_name=name,
vswitch_id=default_switch.id,
nat_type="Enhanced")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := vpc.GetEnhancedNatAvailableZones(ctx, &vpc.GetEnhancedNatAvailableZonesArgs{}, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.0.0.0/8"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
ZoneId: pulumi.String(_default.Zones[0].ZoneId),
CidrBlock: pulumi.String("10.10.0.0/20"),
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
_, err = vpc.NewNatGateway(ctx, "default", &vpc.NatGatewayArgs{
VpcId: defaultNetwork.ID(),
NatGatewayName: pulumi.String(name),
VswitchId: defaultSwitch.ID(),
NatType: pulumi.String("Enhanced"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-example";
var @default = AliCloud.Vpc.GetEnhancedNatAvailableZones.Invoke();
var defaultNetwork = new AliCloud.Vpc.Network("default", new()
{
VpcName = name,
CidrBlock = "10.0.0.0/8",
});
var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
{
VswitchName = name,
ZoneId = @default.Apply(@default => @default.Apply(getEnhancedNatAvailableZonesResult => getEnhancedNatAvailableZonesResult.Zones[0]?.ZoneId)),
CidrBlock = "10.10.0.0/20",
VpcId = defaultNetwork.Id,
});
var defaultNatGateway = new AliCloud.Vpc.NatGateway("default", new()
{
VpcId = defaultNetwork.Id,
NatGatewayName = name,
VswitchId = defaultSwitch.Id,
NatType = "Enhanced",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetEnhancedNatAvailableZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.vpc.NatGateway;
import com.pulumi.alicloud.vpc.NatGatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf-example");
final var default = VpcFunctions.getEnhancedNatAvailableZones();
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(name)
.cidrBlock("10.0.0.0/8")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(name)
.zoneId(default_.zones()[0].zoneId())
.cidrBlock("10.10.0.0/20")
.vpcId(defaultNetwork.id())
.build());
var defaultNatGateway = new NatGateway("defaultNatGateway", NatGatewayArgs.builder()
.vpcId(defaultNetwork.id())
.natGatewayName(name)
.vswitchId(defaultSwitch.id())
.natType("Enhanced")
.build());
}
}
configuration:
name:
type: string
default: tf-example
resources:
defaultNetwork:
type: alicloud:vpc:Network
name: default
properties:
vpcName: ${name}
cidrBlock: 10.0.0.0/8
defaultSwitch:
type: alicloud:vpc:Switch
name: default
properties:
vswitchName: ${name}
zoneId: ${default.zones[0].zoneId}
cidrBlock: 10.10.0.0/20
vpcId: ${defaultNetwork.id}
defaultNatGateway:
type: alicloud:vpc:NatGateway
name: default
properties:
vpcId: ${defaultNetwork.id}
natGatewayName: ${name}
vswitchId: ${defaultSwitch.id}
natType: Enhanced
variables:
default:
fn::invoke:
function: alicloud:vpc:getEnhancedNatAvailableZones
arguments: {}
Create NatGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NatGateway(name: string, args: NatGatewayArgs, opts?: CustomResourceOptions);
@overload
def NatGateway(resource_name: str,
args: NatGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NatGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
vpc_id: Optional[str] = None,
nat_gateway_name: Optional[str] = None,
vswitch_id: Optional[str] = None,
name: Optional[str] = None,
eip_bind_mode: Optional[str] = None,
force: Optional[bool] = None,
icmp_reply_enabled: Optional[bool] = None,
instance_charge_type: Optional[str] = None,
internet_charge_type: Optional[str] = None,
dry_run: Optional[bool] = None,
description: Optional[str] = None,
network_type: Optional[str] = None,
nat_type: Optional[str] = None,
payment_type: Optional[str] = None,
period: Optional[int] = None,
private_link_enabled: Optional[bool] = None,
specification: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
deletion_protection: Optional[bool] = None,
access_mode: Optional[NatGatewayAccessModeArgs] = None)
func NewNatGateway(ctx *Context, name string, args NatGatewayArgs, opts ...ResourceOption) (*NatGateway, error)
public NatGateway(string name, NatGatewayArgs args, CustomResourceOptions? opts = null)
public NatGateway(String name, NatGatewayArgs args)
public NatGateway(String name, NatGatewayArgs args, CustomResourceOptions options)
type: alicloud:vpc:NatGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var alicloudNatGatewayResource = new AliCloud.Vpc.NatGateway("alicloudNatGatewayResource", new()
{
VpcId = "string",
NatGatewayName = "string",
VswitchId = "string",
EipBindMode = "string",
Force = false,
IcmpReplyEnabled = false,
InternetChargeType = "string",
DryRun = false,
Description = "string",
NetworkType = "string",
NatType = "string",
PaymentType = "string",
Period = 0,
PrivateLinkEnabled = false,
Specification = "string",
Tags =
{
{ "string", "string" },
},
DeletionProtection = false,
AccessMode = new AliCloud.Vpc.Inputs.NatGatewayAccessModeArgs
{
ModeValue = "string",
TunnelType = "string",
},
});
example, err := vpc.NewNatGateway(ctx, "alicloudNatGatewayResource", &vpc.NatGatewayArgs{
VpcId: pulumi.String("string"),
NatGatewayName: pulumi.String("string"),
VswitchId: pulumi.String("string"),
EipBindMode: pulumi.String("string"),
Force: pulumi.Bool(false),
IcmpReplyEnabled: pulumi.Bool(false),
InternetChargeType: pulumi.String("string"),
DryRun: pulumi.Bool(false),
Description: pulumi.String("string"),
NetworkType: pulumi.String("string"),
NatType: pulumi.String("string"),
PaymentType: pulumi.String("string"),
Period: pulumi.Int(0),
PrivateLinkEnabled: pulumi.Bool(false),
Specification: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DeletionProtection: pulumi.Bool(false),
AccessMode: &vpc.NatGatewayAccessModeArgs{
ModeValue: pulumi.String("string"),
TunnelType: pulumi.String("string"),
},
})
var alicloudNatGatewayResource = new NatGateway("alicloudNatGatewayResource", NatGatewayArgs.builder()
.vpcId("string")
.natGatewayName("string")
.vswitchId("string")
.eipBindMode("string")
.force(false)
.icmpReplyEnabled(false)
.internetChargeType("string")
.dryRun(false)
.description("string")
.networkType("string")
.natType("string")
.paymentType("string")
.period(0)
.privateLinkEnabled(false)
.specification("string")
.tags(Map.of("string", "string"))
.deletionProtection(false)
.accessMode(NatGatewayAccessModeArgs.builder()
.modeValue("string")
.tunnelType("string")
.build())
.build());
alicloud_nat_gateway_resource = alicloud.vpc.NatGateway("alicloudNatGatewayResource",
vpc_id="string",
nat_gateway_name="string",
vswitch_id="string",
eip_bind_mode="string",
force=False,
icmp_reply_enabled=False,
internet_charge_type="string",
dry_run=False,
description="string",
network_type="string",
nat_type="string",
payment_type="string",
period=0,
private_link_enabled=False,
specification="string",
tags={
"string": "string",
},
deletion_protection=False,
access_mode={
"mode_value": "string",
"tunnel_type": "string",
})
const alicloudNatGatewayResource = new alicloud.vpc.NatGateway("alicloudNatGatewayResource", {
vpcId: "string",
natGatewayName: "string",
vswitchId: "string",
eipBindMode: "string",
force: false,
icmpReplyEnabled: false,
internetChargeType: "string",
dryRun: false,
description: "string",
networkType: "string",
natType: "string",
paymentType: "string",
period: 0,
privateLinkEnabled: false,
specification: "string",
tags: {
string: "string",
},
deletionProtection: false,
accessMode: {
modeValue: "string",
tunnelType: "string",
},
});
type: alicloud:vpc:NatGateway
properties:
accessMode:
modeValue: string
tunnelType: string
deletionProtection: false
description: string
dryRun: false
eipBindMode: string
force: false
icmpReplyEnabled: false
internetChargeType: string
natGatewayName: string
natType: string
networkType: string
paymentType: string
period: 0
privateLinkEnabled: false
specification: string
tags:
string: string
vpcId: string
vswitchId: string
NatGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NatGateway resource accepts the following input properties:
- Vpc
Id string - The VPC ID.
- Access
Mode Pulumi.Ali Cloud. Vpc. Inputs. Nat Gateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - Deletion
Protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- Description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- Dry
Run bool - Specifies whether to only precheck this request. Default value:
false
. - Eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- Force bool
- Specifies whether to forcefully delete the NAT gateway.
- Icmp
Reply boolEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - Instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - Internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - Name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - Nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- Nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - Network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - Payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - Period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- Private
Link boolEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - Specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Dictionary<string, string>
- The tags of NAT gateway.
- Vswitch
Id string - The id of VSwitch.
- Vpc
Id string - The VPC ID.
- Access
Mode NatGateway Access Mode Args - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - Deletion
Protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- Description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- Dry
Run bool - Specifies whether to only precheck this request. Default value:
false
. - Eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- Force bool
- Specifies whether to forcefully delete the NAT gateway.
- Icmp
Reply boolEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - Instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - Internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - Name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - Nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- Nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - Network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - Payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - Period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- Private
Link boolEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - Specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - map[string]string
- The tags of NAT gateway.
- Vswitch
Id string - The id of VSwitch.
- vpc
Id String - The VPC ID.
- access
Mode NatGateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection Boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description String
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run Boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind StringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force Boolean
- Specifies whether to forcefully delete the NAT gateway.
- icmp
Reply BooleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge StringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge StringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name String
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway StringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type String - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type String - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type String - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period Integer
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link BooleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - specification String
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Map<String,String>
- The tags of NAT gateway.
- vswitch
Id String - The id of VSwitch.
- vpc
Id string - The VPC ID.
- access
Mode NatGateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force boolean
- Specifies whether to forcefully delete the NAT gateway.
- icmp
Reply booleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period number
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link booleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - {[key: string]: string}
- The tags of NAT gateway.
- vswitch
Id string - The id of VSwitch.
- vpc_
id str - The VPC ID.
- access_
mode NatGateway Access Mode Args - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion_
protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description str
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry_
run bool - Specifies whether to only precheck this request. Default value:
false
. - eip_
bind_ strmode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force bool
- Specifies whether to forcefully delete the NAT gateway.
- icmp_
reply_ boolenabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance_
charge_ strtype - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet_
charge_ strtype - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name str
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat_
gateway_ strname - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat_
type str - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network_
type str - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment_
type str - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private_
link_ boolenabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - specification str
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Mapping[str, str]
- The tags of NAT gateway.
- vswitch_
id str - The id of VSwitch.
- vpc
Id String - The VPC ID.
- access
Mode Property Map - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection Boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description String
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run Boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind StringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force Boolean
- Specifies whether to forcefully delete the NAT gateway.
- icmp
Reply BooleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge StringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge StringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name String
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway StringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type String - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type String - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type String - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period Number
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link BooleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - specification String
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Map<String>
- The tags of NAT gateway.
- vswitch
Id String - The id of VSwitch.
Outputs
All input properties are implicitly available as output properties. Additionally, the NatGateway resource produces the following output properties:
- Forward
Table stringIds - The nat gateway will auto create a forward item.
- Id string
- The provider-assigned unique ID for this managed resource.
- Snat
Table stringIds - The nat gateway will auto create a snat item.
- Status string
- (Available since v1.121.0) The status of NAT gateway.
- Forward
Table stringIds - The nat gateway will auto create a forward item.
- Id string
- The provider-assigned unique ID for this managed resource.
- Snat
Table stringIds - The nat gateway will auto create a snat item.
- Status string
- (Available since v1.121.0) The status of NAT gateway.
- forward
Table StringIds - The nat gateway will auto create a forward item.
- id String
- The provider-assigned unique ID for this managed resource.
- snat
Table StringIds - The nat gateway will auto create a snat item.
- status String
- (Available since v1.121.0) The status of NAT gateway.
- forward
Table stringIds - The nat gateway will auto create a forward item.
- id string
- The provider-assigned unique ID for this managed resource.
- snat
Table stringIds - The nat gateway will auto create a snat item.
- status string
- (Available since v1.121.0) The status of NAT gateway.
- forward_
table_ strids - The nat gateway will auto create a forward item.
- id str
- The provider-assigned unique ID for this managed resource.
- snat_
table_ strids - The nat gateway will auto create a snat item.
- status str
- (Available since v1.121.0) The status of NAT gateway.
- forward
Table StringIds - The nat gateway will auto create a forward item.
- id String
- The provider-assigned unique ID for this managed resource.
- snat
Table StringIds - The nat gateway will auto create a snat item.
- status String
- (Available since v1.121.0) The status of NAT gateway.
Look up Existing NatGateway Resource
Get an existing NatGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NatGatewayState, opts?: CustomResourceOptions): NatGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_mode: Optional[NatGatewayAccessModeArgs] = None,
deletion_protection: Optional[bool] = None,
description: Optional[str] = None,
dry_run: Optional[bool] = None,
eip_bind_mode: Optional[str] = None,
force: Optional[bool] = None,
forward_table_ids: Optional[str] = None,
icmp_reply_enabled: Optional[bool] = None,
instance_charge_type: Optional[str] = None,
internet_charge_type: Optional[str] = None,
name: Optional[str] = None,
nat_gateway_name: Optional[str] = None,
nat_type: Optional[str] = None,
network_type: Optional[str] = None,
payment_type: Optional[str] = None,
period: Optional[int] = None,
private_link_enabled: Optional[bool] = None,
snat_table_ids: Optional[str] = None,
specification: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
vpc_id: Optional[str] = None,
vswitch_id: Optional[str] = None) -> NatGateway
func GetNatGateway(ctx *Context, name string, id IDInput, state *NatGatewayState, opts ...ResourceOption) (*NatGateway, error)
public static NatGateway Get(string name, Input<string> id, NatGatewayState? state, CustomResourceOptions? opts = null)
public static NatGateway get(String name, Output<String> id, NatGatewayState state, CustomResourceOptions options)
resources: _: type: alicloud:vpc:NatGateway get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Mode Pulumi.Ali Cloud. Vpc. Inputs. Nat Gateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - Deletion
Protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- Description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- Dry
Run bool - Specifies whether to only precheck this request. Default value:
false
. - Eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- Force bool
- Specifies whether to forcefully delete the NAT gateway.
- Forward
Table stringIds - The nat gateway will auto create a forward item.
- Icmp
Reply boolEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - Instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - Internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - Name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - Nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- Nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - Network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - Payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - Period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- Private
Link boolEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - Snat
Table stringIds - The nat gateway will auto create a snat item.
- Specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Status string
- (Available since v1.121.0) The status of NAT gateway.
- Dictionary<string, string>
- The tags of NAT gateway.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The id of VSwitch.
- Access
Mode NatGateway Access Mode Args - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - Deletion
Protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- Description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- Dry
Run bool - Specifies whether to only precheck this request. Default value:
false
. - Eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- Force bool
- Specifies whether to forcefully delete the NAT gateway.
- Forward
Table stringIds - The nat gateway will auto create a forward item.
- Icmp
Reply boolEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - Instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - Internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - Name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - Nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- Nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - Network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - Payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - Period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- Private
Link boolEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - Snat
Table stringIds - The nat gateway will auto create a snat item.
- Specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - Status string
- (Available since v1.121.0) The status of NAT gateway.
- map[string]string
- The tags of NAT gateway.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The id of VSwitch.
- access
Mode NatGateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection Boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description String
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run Boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind StringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force Boolean
- Specifies whether to forcefully delete the NAT gateway.
- forward
Table StringIds - The nat gateway will auto create a forward item.
- icmp
Reply BooleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge StringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge StringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name String
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway StringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type String - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type String - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type String - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period Integer
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link BooleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - snat
Table StringIds - The nat gateway will auto create a snat item.
- specification String
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - status String
- (Available since v1.121.0) The status of NAT gateway.
- Map<String,String>
- The tags of NAT gateway.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The id of VSwitch.
- access
Mode NatGateway Access Mode - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description string
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind stringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force boolean
- Specifies whether to forcefully delete the NAT gateway.
- forward
Table stringIds - The nat gateway will auto create a forward item.
- icmp
Reply booleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge stringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge stringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name string
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway stringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type string - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type string - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type string - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period number
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link booleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - snat
Table stringIds - The nat gateway will auto create a snat item.
- specification string
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - status string
- (Available since v1.121.0) The status of NAT gateway.
- {[key: string]: string}
- The tags of NAT gateway.
- vpc
Id string - The VPC ID.
- vswitch
Id string - The id of VSwitch.
- access_
mode NatGateway Access Mode Args - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion_
protection bool - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description str
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry_
run bool - Specifies whether to only precheck this request. Default value:
false
. - eip_
bind_ strmode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force bool
- Specifies whether to forcefully delete the NAT gateway.
- forward_
table_ strids - The nat gateway will auto create a forward item.
- icmp_
reply_ boolenabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance_
charge_ strtype - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet_
charge_ strtype - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name str
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat_
gateway_ strname - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat_
type str - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network_
type str - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment_
type str - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period int
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private_
link_ boolenabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - snat_
table_ strids - The nat gateway will auto create a snat item.
- specification str
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - status str
- (Available since v1.121.0) The status of NAT gateway.
- Mapping[str, str]
- The tags of NAT gateway.
- vpc_
id str - The VPC ID.
- vswitch_
id str - The id of VSwitch.
- access
Mode Property Map - The access mode for reverse access to the VPC NAT gateway. See
access_mode
below. - deletion
Protection Boolean - Whether enable the deletion protection or not. Default value:
false
.- true: Enable deletion protection.
- false: Disable deletion protection.
- description String
- Description of the nat gateway, This description can have a string of 2 to 256 characters, It cannot begin with http:// or https://. Defaults to null.
- dry
Run Boolean - Specifies whether to only precheck this request. Default value:
false
. - eip
Bind StringMode - The EIP binding mode of the NAT gateway. Default value:
MULTI_BINDED
. Valid values:MULTI_BINDED
: Multi EIP network card visible mode.NAT
: EIP normal mode, compatible with IPv4 gateway.
- force Boolean
- Specifies whether to forcefully delete the NAT gateway.
- forward
Table StringIds - The nat gateway will auto create a forward item.
- icmp
Reply BooleanEnabled - Specifies whether to enable ICMP retrieval. Default value:
true
. Valid values: - instance
Charge StringType - Field
instance_charge_type
has been deprecated from provider version 1.121.0. New fieldpayment_type
instead. - internet
Charge StringType - The internet charge type. Valid values
PayByLcu
. ThePayByLcu
is only support enhanced NAT. NOTE: From version 1.137.0,internet_charge_type
cannot be set toPayBySpec
. - name String
- Field
name
has been deprecated from provider version 1.121.0. New fieldnat_gateway_name
instead. - nat
Gateway StringName - Name of the nat gateway. The value can have a string of 2 to 128 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin or end with a hyphen, and must not begin with http:// or https://. Defaults to null.
- nat
Type String - The type of NAT gateway. Valid values:
Enhanced
. NOTE: From version 1.137.0,nat_type
cannot be set toNormal
. - network
Type String - Indicates the type of the created NAT gateway. Valid values
internet
andintranet
.internet
: Internet NAT Gateway.intranet
: VPC NAT Gateway. - payment
Type String - The billing method of the NAT gateway. Valid values are
PayAsYouGo
. Default toPayAsYouGo
. - period Number
The duration that you will buy the resource, in month. It is valid when
payment_type
isSubscription
. Valid values: [1-9, 12, 24, 36]. At present, the provider does not support modify "period" and you can do that via web console. NOTE: International station only supportsSubscription
.NOTE: The attribute
period
is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means runningpulumi up
will not effect the resource.- private
Link BooleanEnabled - Specifies whether to enable PrivateLink. Default value:
false
. Valid values: - snat
Table StringIds - The nat gateway will auto create a snat item.
- specification String
- The specification of the nat gateway. Valid values are
Small
,Middle
andLarge
. Effective wheninternet_charge_type
isPayBySpec
andnetwork_type
isinternet
. Details refer to Nat Gateway Specification. - status String
- (Available since v1.121.0) The status of NAT gateway.
- Map<String>
- The tags of NAT gateway.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The id of VSwitch.
Supporting Types
NatGatewayAccessMode, NatGatewayAccessModeArgs
- Mode
Value string - The mode of Access. Valid values:
- Tunnel
Type string - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
- Mode
Value string - The mode of Access. Valid values:
- Tunnel
Type string - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
- mode
Value String - The mode of Access. Valid values:
- tunnel
Type String - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
- mode
Value string - The mode of Access. Valid values:
- tunnel
Type string - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
- mode_
value str - The mode of Access. Valid values:
- tunnel_
type str - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
- mode
Value String - The mode of Access. Valid values:
- tunnel
Type String - The type of Tunnel. Valid values:
geneve
. NOTE:tunnel_type
takes effect only ifmode_value
is set totunnel
.
Import
Nat gateway can be imported using the id, e.g.
$ pulumi import alicloud:vpc/natGateway:NatGateway example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.