1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. PrivateNatGatewayV3
opentelekomcloud 1.36.47 published on Thursday, Sep 4, 2025 by opentelekomcloud

opentelekomcloud.PrivateNatGatewayV3

Explore with Pulumi AI

opentelekomcloud logo
opentelekomcloud 1.36.47 published on Thursday, Sep 4, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for Private NAT gateway you can get at documentation portal

    Manages a V3 Private NAT Gateway resource within OpenTelekomCloud.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const networkId = config.requireObject("networkId");
    const gateway1 = new opentelekomcloud.PrivateNatGatewayV3("gateway1", {
        description: "created",
        spec: "Small",
        downlinkVpcs: [{
            virsubnetId: networkId,
        }],
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    network_id = config.require_object("networkId")
    gateway1 = opentelekomcloud.PrivateNatGatewayV3("gateway1",
        description="created",
        spec="Small",
        downlink_vpcs=[{
            "virsubnet_id": network_id,
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"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, "")
    		networkId := cfg.RequireObject("networkId")
    		_, err := opentelekomcloud.NewPrivateNatGatewayV3(ctx, "gateway1", &opentelekomcloud.PrivateNatGatewayV3Args{
    			Description: pulumi.String("created"),
    			Spec:        pulumi.String("Small"),
    			DownlinkVpcs: opentelekomcloud.PrivateNatGatewayV3DownlinkVpcArray{
    				&opentelekomcloud.PrivateNatGatewayV3DownlinkVpcArgs{
    					VirsubnetId: pulumi.Any(networkId),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var networkId = config.RequireObject<dynamic>("networkId");
        var gateway1 = new Opentelekomcloud.PrivateNatGatewayV3("gateway1", new()
        {
            Description = "created",
            Spec = "Small",
            DownlinkVpcs = new[]
            {
                new Opentelekomcloud.Inputs.PrivateNatGatewayV3DownlinkVpcArgs
                {
                    VirsubnetId = networkId,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.PrivateNatGatewayV3;
    import com.pulumi.opentelekomcloud.PrivateNatGatewayV3Args;
    import com.pulumi.opentelekomcloud.inputs.PrivateNatGatewayV3DownlinkVpcArgs;
    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 networkId = config.get("networkId");
            var gateway1 = new PrivateNatGatewayV3("gateway1", PrivateNatGatewayV3Args.builder()
                .description("created")
                .spec("Small")
                .downlinkVpcs(PrivateNatGatewayV3DownlinkVpcArgs.builder()
                    .virsubnetId(networkId)
                    .build())
                .build());
    
        }
    }
    
    configuration:
      networkId:
        type: dynamic
    resources:
      gateway1:
        type: opentelekomcloud:PrivateNatGatewayV3
        properties:
          description: created
          spec: Small
          downlinkVpcs:
            - virsubnetId: ${networkId}
    

    Create PrivateNatGatewayV3 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PrivateNatGatewayV3(name: string, args: PrivateNatGatewayV3Args, opts?: CustomResourceOptions);
    @overload
    def PrivateNatGatewayV3(resource_name: str,
                            args: PrivateNatGatewayV3Args,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def PrivateNatGatewayV3(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            downlink_vpcs: Optional[Sequence[PrivateNatGatewayV3DownlinkVpcArgs]] = None,
                            description: Optional[str] = None,
                            enterprise_project_id: Optional[str] = None,
                            name: Optional[str] = None,
                            spec: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None,
                            timeouts: Optional[PrivateNatGatewayV3TimeoutsArgs] = None)
    func NewPrivateNatGatewayV3(ctx *Context, name string, args PrivateNatGatewayV3Args, opts ...ResourceOption) (*PrivateNatGatewayV3, error)
    public PrivateNatGatewayV3(string name, PrivateNatGatewayV3Args args, CustomResourceOptions? opts = null)
    public PrivateNatGatewayV3(String name, PrivateNatGatewayV3Args args)
    public PrivateNatGatewayV3(String name, PrivateNatGatewayV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:PrivateNatGatewayV3
    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 PrivateNatGatewayV3Args
    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 PrivateNatGatewayV3Args
    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 PrivateNatGatewayV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateNatGatewayV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateNatGatewayV3Args
    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 privateNatGatewayV3Resource = new Opentelekomcloud.PrivateNatGatewayV3("privateNatGatewayV3Resource", new()
    {
        DownlinkVpcs = new[]
        {
            new Opentelekomcloud.Inputs.PrivateNatGatewayV3DownlinkVpcArgs
            {
                VirsubnetId = "string",
                NgportIpAddress = "string",
                VpcId = "string",
            },
        },
        Description = "string",
        EnterpriseProjectId = "string",
        Name = "string",
        Spec = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Opentelekomcloud.Inputs.PrivateNatGatewayV3TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := opentelekomcloud.NewPrivateNatGatewayV3(ctx, "privateNatGatewayV3Resource", &opentelekomcloud.PrivateNatGatewayV3Args{
    	DownlinkVpcs: opentelekomcloud.PrivateNatGatewayV3DownlinkVpcArray{
    		&opentelekomcloud.PrivateNatGatewayV3DownlinkVpcArgs{
    			VirsubnetId:     pulumi.String("string"),
    			NgportIpAddress: pulumi.String("string"),
    			VpcId:           pulumi.String("string"),
    		},
    	},
    	Description:         pulumi.String("string"),
    	EnterpriseProjectId: pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	Spec:                pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &opentelekomcloud.PrivateNatGatewayV3TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var privateNatGatewayV3Resource = new PrivateNatGatewayV3("privateNatGatewayV3Resource", PrivateNatGatewayV3Args.builder()
        .downlinkVpcs(PrivateNatGatewayV3DownlinkVpcArgs.builder()
            .virsubnetId("string")
            .ngportIpAddress("string")
            .vpcId("string")
            .build())
        .description("string")
        .enterpriseProjectId("string")
        .name("string")
        .spec("string")
        .tags(Map.of("string", "string"))
        .timeouts(PrivateNatGatewayV3TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    private_nat_gateway_v3_resource = opentelekomcloud.PrivateNatGatewayV3("privateNatGatewayV3Resource",
        downlink_vpcs=[{
            "virsubnet_id": "string",
            "ngport_ip_address": "string",
            "vpc_id": "string",
        }],
        description="string",
        enterprise_project_id="string",
        name="string",
        spec="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const privateNatGatewayV3Resource = new opentelekomcloud.PrivateNatGatewayV3("privateNatGatewayV3Resource", {
        downlinkVpcs: [{
            virsubnetId: "string",
            ngportIpAddress: "string",
            vpcId: "string",
        }],
        description: "string",
        enterpriseProjectId: "string",
        name: "string",
        spec: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: opentelekomcloud:PrivateNatGatewayV3
    properties:
        description: string
        downlinkVpcs:
            - ngportIpAddress: string
              virsubnetId: string
              vpcId: string
        enterpriseProjectId: string
        name: string
        spec: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
    

    PrivateNatGatewayV3 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 PrivateNatGatewayV3 resource accepts the following input properties:

    DownlinkVpcs List<PrivateNatGatewayV3DownlinkVpc>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    Description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    Name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    Spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    Tags Dictionary<string, string>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    Timeouts PrivateNatGatewayV3Timeouts
    DownlinkVpcs []PrivateNatGatewayV3DownlinkVpcArgs
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    Description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    Name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    Spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    Tags map[string]string

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    Timeouts PrivateNatGatewayV3TimeoutsArgs
    downlinkVpcs List<PrivateNatGatewayV3DownlinkVpc>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    description String
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name String
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    spec String
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    tags Map<String,String>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3Timeouts
    downlinkVpcs PrivateNatGatewayV3DownlinkVpc[]
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    enterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    tags {[key: string]: string}

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3Timeouts
    downlink_vpcs Sequence[PrivateNatGatewayV3DownlinkVpcArgs]
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    description str
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    enterprise_project_id str
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name str
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    spec str
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    tags Mapping[str, str]

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3TimeoutsArgs
    downlinkVpcs List<Property Map>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    description String
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name String
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    spec String
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    tags Map<String>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PrivateNatGatewayV3 resource produces the following output properties:

    CreatedAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProjectId string
    Indicates the project ID.
    RuleMax double
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    Status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    TransitIpPoolSizeMax double
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    UpdatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    CreatedAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProjectId string
    Indicates the project ID.
    RuleMax float64
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    Status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    TransitIpPoolSizeMax float64
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    UpdatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    id String
    The provider-assigned unique ID for this managed resource.
    projectId String
    Indicates the project ID.
    ruleMax Double
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    status String
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    transitIpPoolSizeMax Double
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt String
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    id string
    The provider-assigned unique ID for this managed resource.
    projectId string
    Indicates the project ID.
    ruleMax number
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    transitIpPoolSizeMax number
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    created_at str
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    id str
    The provider-assigned unique ID for this managed resource.
    project_id str
    Indicates the project ID.
    rule_max float
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    status str
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    transit_ip_pool_size_max float
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updated_at str
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    id String
    The provider-assigned unique ID for this managed resource.
    projectId String
    Indicates the project ID.
    ruleMax Number
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    status String
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    transitIpPoolSizeMax Number
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt String
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.

    Look up Existing PrivateNatGatewayV3 Resource

    Get an existing PrivateNatGatewayV3 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?: PrivateNatGatewayV3State, opts?: CustomResourceOptions): PrivateNatGatewayV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            downlink_vpcs: Optional[Sequence[PrivateNatGatewayV3DownlinkVpcArgs]] = None,
            enterprise_project_id: Optional[str] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            rule_max: Optional[float] = None,
            spec: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            timeouts: Optional[PrivateNatGatewayV3TimeoutsArgs] = None,
            transit_ip_pool_size_max: Optional[float] = None,
            updated_at: Optional[str] = None) -> PrivateNatGatewayV3
    func GetPrivateNatGatewayV3(ctx *Context, name string, id IDInput, state *PrivateNatGatewayV3State, opts ...ResourceOption) (*PrivateNatGatewayV3, error)
    public static PrivateNatGatewayV3 Get(string name, Input<string> id, PrivateNatGatewayV3State? state, CustomResourceOptions? opts = null)
    public static PrivateNatGatewayV3 get(String name, Output<String> id, PrivateNatGatewayV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:PrivateNatGatewayV3    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.
    The following state arguments are supported:
    CreatedAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    Description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    DownlinkVpcs List<PrivateNatGatewayV3DownlinkVpc>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    Name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    ProjectId string
    Indicates the project ID.
    RuleMax double
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    Spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    Status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    Tags Dictionary<string, string>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    Timeouts PrivateNatGatewayV3Timeouts
    TransitIpPoolSizeMax double
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    UpdatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    CreatedAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    Description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    DownlinkVpcs []PrivateNatGatewayV3DownlinkVpcArgs
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    Name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    ProjectId string
    Indicates the project ID.
    RuleMax float64
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    Spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    Status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    Tags map[string]string

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    Timeouts PrivateNatGatewayV3TimeoutsArgs
    TransitIpPoolSizeMax float64
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    UpdatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    description String
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    downlinkVpcs List<PrivateNatGatewayV3DownlinkVpc>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name String
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    projectId String
    Indicates the project ID.
    ruleMax Double
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    spec String
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    status String
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    tags Map<String,String>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3Timeouts
    transitIpPoolSizeMax Double
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt String
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt string
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    description string
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    downlinkVpcs PrivateNatGatewayV3DownlinkVpc[]
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    enterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name string
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    projectId string
    Indicates the project ID.
    ruleMax number
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    spec string
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    status string
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    tags {[key: string]: string}

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3Timeouts
    transitIpPoolSizeMax number
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt string
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    created_at str
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    description str
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    downlink_vpcs Sequence[PrivateNatGatewayV3DownlinkVpcArgs]
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    enterprise_project_id str
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name str
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    project_id str
    Indicates the project ID.
    rule_max float
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    spec str
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    status str
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    tags Mapping[str, str]

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts PrivateNatGatewayV3TimeoutsArgs
    transit_ip_pool_size_max float
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updated_at str
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT gateway was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    description String
    Provides supplementary information about the private NAT gateway. The description can contain up to 255 characters and cannot contain angle brackets (<>).
    downlinkVpcs List<Property Map>
    Specifies the VPC where the private NAT gateway works. The downlink_vpcs structure is documented below. Default value: 0.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    name String
    Specifies the private NAT gateway name. Only digits, letters, underscores (_), and hyphens (-) are allowed.
    projectId String
    Indicates the project ID.
    ruleMax Number
    Indicates Specifies the maximum number of rules. Value range: 0-65535
    spec String
    Specifies the private NAT gateway specifications. The value can be: Small, Medium, Large, Extra-large. Default value: Small.
    status String
    Indicates the private NAT gateway status. The value can be: ACTIVE (The private NAT gateway is running properly) or FROZEN (The private NAT gateway is frozen).
    tags Map<String>

    Specifies the tag list in key/value format.

    The downlink_vpcs block supports:

    timeouts Property Map
    transitIpPoolSizeMax Number
    Specifies the maximum number of transit IP addresses in a transit IP address pool. Value range: 0-100
    updatedAt String
    Indicates the time when the private NAT gateway was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.

    Supporting Types

    PrivateNatGatewayV3DownlinkVpc, PrivateNatGatewayV3DownlinkVpcArgs

    VirsubnetId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    NgportIpAddress string
    Specifies the private IP address of the private NAT gateway.
    VpcId string
    Indicates the ID of the VPC where the private NAT gateway works.
    VirsubnetId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    NgportIpAddress string
    Specifies the private IP address of the private NAT gateway.
    VpcId string
    Indicates the ID of the VPC where the private NAT gateway works.
    virsubnetId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    ngportIpAddress String
    Specifies the private IP address of the private NAT gateway.
    vpcId String
    Indicates the ID of the VPC where the private NAT gateway works.
    virsubnetId string
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    ngportIpAddress string
    Specifies the private IP address of the private NAT gateway.
    vpcId string
    Indicates the ID of the VPC where the private NAT gateway works.
    virsubnet_id str
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    ngport_ip_address str
    Specifies the private IP address of the private NAT gateway.
    vpc_id str
    Indicates the ID of the VPC where the private NAT gateway works.
    virsubnetId String
    Specifies the ID of the enterprise project that is associated with the private NAT gateway when the private NAT gateway is created.
    ngportIpAddress String
    Specifies the private IP address of the private NAT gateway.
    vpcId String
    Indicates the ID of the VPC where the private NAT gateway works.

    PrivateNatGatewayV3Timeouts, PrivateNatGatewayV3TimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    Import

    Private NAT Gateway V3 resource can be imported using the gateway ID, id.

    $ pulumi import opentelekomcloud:index/privateNatGatewayV3:PrivateNatGatewayV3 gw_1 <id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.47 published on Thursday, Sep 4, 2025 by opentelekomcloud