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

opentelekomcloud.PrivateNatTransitIpV3

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 Transit IP you can get at documentation portal

    Manages a V3 Private NAT Transit IP 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 transitIp1 = new opentelekomcloud.PrivateNatTransitIpV3("transitIp1", {
        virsubnetId: networkId,
        tags: {
            kuh: "muh",
        },
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    network_id = config.require_object("networkId")
    transit_ip1 = opentelekomcloud.PrivateNatTransitIpV3("transitIp1",
        virsubnet_id=network_id,
        tags={
            "kuh": "muh",
        })
    
    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.NewPrivateNatTransitIpV3(ctx, "transitIp1", &opentelekomcloud.PrivateNatTransitIpV3Args{
    			VirsubnetId: pulumi.Any(networkId),
    			Tags: pulumi.StringMap{
    				"kuh": pulumi.String("muh"),
    			},
    		})
    		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 transitIp1 = new Opentelekomcloud.PrivateNatTransitIpV3("transitIp1", new()
        {
            VirsubnetId = networkId,
            Tags = 
            {
                { "kuh", "muh" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.PrivateNatTransitIpV3;
    import com.pulumi.opentelekomcloud.PrivateNatTransitIpV3Args;
    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 transitIp1 = new PrivateNatTransitIpV3("transitIp1", PrivateNatTransitIpV3Args.builder()
                .virsubnetId(networkId)
                .tags(Map.of("kuh", "muh"))
                .build());
    
        }
    }
    
    configuration:
      networkId:
        type: dynamic
    resources:
      transitIp1:
        type: opentelekomcloud:PrivateNatTransitIpV3
        properties:
          virsubnetId: ${networkId}
          tags:
            kuh: muh
    

    Create PrivateNatTransitIpV3 Resource

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

    Constructor syntax

    new PrivateNatTransitIpV3(name: string, args: PrivateNatTransitIpV3Args, opts?: CustomResourceOptions);
    @overload
    def PrivateNatTransitIpV3(resource_name: str,
                              args: PrivateNatTransitIpV3Args,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def PrivateNatTransitIpV3(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              virsubnet_id: Optional[str] = None,
                              enterprise_project_id: Optional[str] = None,
                              ip_address: Optional[str] = None,
                              tags: Optional[Mapping[str, str]] = None,
                              timeouts: Optional[PrivateNatTransitIpV3TimeoutsArgs] = None)
    func NewPrivateNatTransitIpV3(ctx *Context, name string, args PrivateNatTransitIpV3Args, opts ...ResourceOption) (*PrivateNatTransitIpV3, error)
    public PrivateNatTransitIpV3(string name, PrivateNatTransitIpV3Args args, CustomResourceOptions? opts = null)
    public PrivateNatTransitIpV3(String name, PrivateNatTransitIpV3Args args)
    public PrivateNatTransitIpV3(String name, PrivateNatTransitIpV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:PrivateNatTransitIpV3
    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 PrivateNatTransitIpV3Args
    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 PrivateNatTransitIpV3Args
    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 PrivateNatTransitIpV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateNatTransitIpV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateNatTransitIpV3Args
    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 privateNatTransitIpV3Resource = new Opentelekomcloud.PrivateNatTransitIpV3("privateNatTransitIpV3Resource", new()
    {
        VirsubnetId = "string",
        EnterpriseProjectId = "string",
        IpAddress = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Opentelekomcloud.Inputs.PrivateNatTransitIpV3TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := opentelekomcloud.NewPrivateNatTransitIpV3(ctx, "privateNatTransitIpV3Resource", &opentelekomcloud.PrivateNatTransitIpV3Args{
    	VirsubnetId:         pulumi.String("string"),
    	EnterpriseProjectId: pulumi.String("string"),
    	IpAddress:           pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &opentelekomcloud.PrivateNatTransitIpV3TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var privateNatTransitIpV3Resource = new PrivateNatTransitIpV3("privateNatTransitIpV3Resource", PrivateNatTransitIpV3Args.builder()
        .virsubnetId("string")
        .enterpriseProjectId("string")
        .ipAddress("string")
        .tags(Map.of("string", "string"))
        .timeouts(PrivateNatTransitIpV3TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    private_nat_transit_ip_v3_resource = opentelekomcloud.PrivateNatTransitIpV3("privateNatTransitIpV3Resource",
        virsubnet_id="string",
        enterprise_project_id="string",
        ip_address="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const privateNatTransitIpV3Resource = new opentelekomcloud.PrivateNatTransitIpV3("privateNatTransitIpV3Resource", {
        virsubnetId: "string",
        enterpriseProjectId: "string",
        ipAddress: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: opentelekomcloud:PrivateNatTransitIpV3
    properties:
        enterpriseProjectId: string
        ipAddress: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
        virsubnetId: string
    

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

    VirsubnetId string
    Specifies the subnet ID of the current project.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    IpAddress string
    Specifies the transit IP address.
    Tags Dictionary<string, string>
    Specifies the tag list in key/value format.
    Timeouts PrivateNatTransitIpV3Timeouts
    VirsubnetId string
    Specifies the subnet ID of the current project.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    IpAddress string
    Specifies the transit IP address.
    Tags map[string]string
    Specifies the tag list in key/value format.
    Timeouts PrivateNatTransitIpV3TimeoutsArgs
    virsubnetId String
    Specifies the subnet ID of the current project.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    ipAddress String
    Specifies the transit IP address.
    tags Map<String,String>
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3Timeouts
    virsubnetId string
    Specifies the subnet ID of the current project.
    enterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    ipAddress string
    Specifies the transit IP address.
    tags {[key: string]: string}
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3Timeouts
    virsubnet_id str
    Specifies the subnet ID of the current project.
    enterprise_project_id str
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    ip_address str
    Specifies the transit IP address.
    tags Mapping[str, str]
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3TimeoutsArgs
    virsubnetId String
    Specifies the subnet ID of the current project.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    ipAddress String
    Specifies the transit IP address.
    tags Map<String>
    Specifies the tag list in key/value format.
    timeouts Property Map

    Outputs

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

    CreatedAt string
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    GatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    ProjectId string
    Indicates the project ID.
    Status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    UpdatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    CreatedAt string
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    GatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    ProjectId string
    Indicates the project ID.
    Status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    UpdatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    gatewayId String
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    id String
    The provider-assigned unique ID for this managed resource.
    networkInterfaceId String
    Indicates the network interface ID of the transit IP address.
    projectId String
    Indicates the project ID.
    status String
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    updatedAt String
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt string
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    gatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    id string
    The provider-assigned unique ID for this managed resource.
    networkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    projectId string
    Indicates the project ID.
    status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    updatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    created_at str
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    gateway_id str
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    id str
    The provider-assigned unique ID for this managed resource.
    network_interface_id str
    Indicates the network interface ID of the transit IP address.
    project_id str
    Indicates the project ID.
    status str
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    updated_at str
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    createdAt String
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    gatewayId String
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    id String
    The provider-assigned unique ID for this managed resource.
    networkInterfaceId String
    Indicates the network interface ID of the transit IP address.
    projectId String
    Indicates the project ID.
    status String
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    updatedAt String
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.

    Look up Existing PrivateNatTransitIpV3 Resource

    Get an existing PrivateNatTransitIpV3 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?: PrivateNatTransitIpV3State, opts?: CustomResourceOptions): PrivateNatTransitIpV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            enterprise_project_id: Optional[str] = None,
            gateway_id: Optional[str] = None,
            ip_address: Optional[str] = None,
            network_interface_id: Optional[str] = None,
            project_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            timeouts: Optional[PrivateNatTransitIpV3TimeoutsArgs] = None,
            updated_at: Optional[str] = None,
            virsubnet_id: Optional[str] = None) -> PrivateNatTransitIpV3
    func GetPrivateNatTransitIpV3(ctx *Context, name string, id IDInput, state *PrivateNatTransitIpV3State, opts ...ResourceOption) (*PrivateNatTransitIpV3, error)
    public static PrivateNatTransitIpV3 Get(string name, Input<string> id, PrivateNatTransitIpV3State? state, CustomResourceOptions? opts = null)
    public static PrivateNatTransitIpV3 get(String name, Output<String> id, PrivateNatTransitIpV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:PrivateNatTransitIpV3    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 Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    GatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    IpAddress string
    Specifies the transit IP address.
    NetworkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    ProjectId string
    Indicates the project ID.
    Status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    Tags Dictionary<string, string>
    Specifies the tag list in key/value format.
    Timeouts PrivateNatTransitIpV3Timeouts
    UpdatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    VirsubnetId string
    Specifies the subnet ID of the current project.
    CreatedAt string
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    EnterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    GatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    IpAddress string
    Specifies the transit IP address.
    NetworkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    ProjectId string
    Indicates the project ID.
    Status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    Tags map[string]string
    Specifies the tag list in key/value format.
    Timeouts PrivateNatTransitIpV3TimeoutsArgs
    UpdatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    VirsubnetId string
    Specifies the subnet ID of the current project.
    createdAt String
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    gatewayId String
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    ipAddress String
    Specifies the transit IP address.
    networkInterfaceId String
    Indicates the network interface ID of the transit IP address.
    projectId String
    Indicates the project ID.
    status String
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    tags Map<String,String>
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3Timeouts
    updatedAt String
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    virsubnetId String
    Specifies the subnet ID of the current project.
    createdAt string
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    enterpriseProjectId string
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    gatewayId string
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    ipAddress string
    Specifies the transit IP address.
    networkInterfaceId string
    Indicates the network interface ID of the transit IP address.
    projectId string
    Indicates the project ID.
    status string
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    tags {[key: string]: string}
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3Timeouts
    updatedAt string
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    virsubnetId string
    Specifies the subnet ID of the current project.
    created_at str
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    enterprise_project_id str
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    gateway_id str
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    ip_address str
    Specifies the transit IP address.
    network_interface_id str
    Indicates the network interface ID of the transit IP address.
    project_id str
    Indicates the project ID.
    status str
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    tags Mapping[str, str]
    Specifies the tag list in key/value format.
    timeouts PrivateNatTransitIpV3TimeoutsArgs
    updated_at str
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    virsubnet_id str
    Specifies the subnet ID of the current project.
    createdAt String
    Indicates the time when the private NAT Transit IP was created. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    enterpriseProjectId String
    Specifies the ID of the enterprise project that is associated with the transit IP address when the transit IP address is being assigned. Default: 0.
    gatewayId String
    Indicates the ID of the private NAT gateway associated with the transit IP address.
    ipAddress String
    Specifies the transit IP address.
    networkInterfaceId String
    Indicates the network interface ID of the transit IP address.
    projectId String
    Indicates the project ID.
    status String
    Indicates the private NAT transit IP status. The value can be: ACTIVE (The Transit IP is running properly) or FROZEN (The Transit IP is frozen).
    tags Map<String>
    Specifies the tag list in key/value format.
    timeouts Property Map
    updatedAt String
    Indicates the time when the private NAT Transit IP was updated. It is a UTC time in yyyy-mm-ddThh:mm:ssZ format.
    virsubnetId String
    Specifies the subnet ID of the current project.

    Supporting Types

    PrivateNatTransitIpV3Timeouts, PrivateNatTransitIpV3TimeoutsArgs

    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 Transit IP V3 resource can be imported using the Transit IP ID, id.

    $ pulumi import opentelekomcloud:index/privateNatTransitIpV3:PrivateNatTransitIpV3 ip_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