1. Registry
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. TcaplusCluster
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack

    Provides a resource to create a TcaplusDB cluster.

    NOTE: TcaplusDB now only supports the following regions: ap-shanghai, ap-hongkong, na-siliconvalley, ap-singapore, ap-seoul, ap-tokyo, eu-frankfurt, and na-ashburn.

    Example Usage

    Create a tcaplus cluster instance with cluster_type is 1

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.TcaplusCluster("example", {
        idlType: "MIX",
        clusterName: "tf_example",
        vpcId: "vpc-jll1dzwr",
        subnetId: "subnet-ef14ogeu",
        password: "Password@2026",
        oldPasswordExpireLast: 3600,
        clusterType: 1,
        resourceTags: [{
            tagKey: "createBy",
            tagValue: "Terraform",
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.TcaplusCluster("example",
        idl_type="MIX",
        cluster_name="tf_example",
        vpc_id="vpc-jll1dzwr",
        subnet_id="subnet-ef14ogeu",
        password="Password@2026",
        old_password_expire_last=3600,
        cluster_type=1,
        resource_tags=[{
            "tag_key": "createBy",
            "tag_value": "Terraform",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewTcaplusCluster(ctx, "example", &tencentcloud.TcaplusClusterArgs{
    			IdlType:               pulumi.String("MIX"),
    			ClusterName:           pulumi.String("tf_example"),
    			VpcId:                 pulumi.String("vpc-jll1dzwr"),
    			SubnetId:              pulumi.String("subnet-ef14ogeu"),
    			Password:              pulumi.String("Password@2026"),
    			OldPasswordExpireLast: pulumi.Float64(3600),
    			ClusterType:           pulumi.Float64(1),
    			ResourceTags: tencentcloud.TcaplusClusterResourceTagArray{
    				&tencentcloud.TcaplusClusterResourceTagArgs{
    					TagKey:   pulumi.String("createBy"),
    					TagValue: pulumi.String("Terraform"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.TcaplusCluster("example", new()
        {
            IdlType = "MIX",
            ClusterName = "tf_example",
            VpcId = "vpc-jll1dzwr",
            SubnetId = "subnet-ef14ogeu",
            Password = "Password@2026",
            OldPasswordExpireLast = 3600,
            ClusterType = 1,
            ResourceTags = new[]
            {
                new Tencentcloud.Inputs.TcaplusClusterResourceTagArgs
                {
                    TagKey = "createBy",
                    TagValue = "Terraform",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TcaplusCluster;
    import com.pulumi.tencentcloud.TcaplusClusterArgs;
    import com.pulumi.tencentcloud.inputs.TcaplusClusterResourceTagArgs;
    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) {
            var example = new TcaplusCluster("example", TcaplusClusterArgs.builder()
                .idlType("MIX")
                .clusterName("tf_example")
                .vpcId("vpc-jll1dzwr")
                .subnetId("subnet-ef14ogeu")
                .password("Password@2026")
                .oldPasswordExpireLast(3600.0)
                .clusterType(1.0)
                .resourceTags(TcaplusClusterResourceTagArgs.builder()
                    .tagKey("createBy")
                    .tagValue("Terraform")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:TcaplusCluster
        properties:
          idlType: MIX
          clusterName: tf_example
          vpcId: vpc-jll1dzwr
          subnetId: subnet-ef14ogeu
          password: Password@2026
          oldPasswordExpireLast: 3600
          clusterType: 1
          resourceTags:
            - tagKey: createBy
              tagValue: Terraform
    
    Example coming soon!
    

    Create a tcaplus cluster instance with cluster_type is 2

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.TcaplusCluster("example", {
        idlType: "MIX",
        clusterName: "tf_example",
        vpcId: "vpc-qtzga3pm",
        subnetId: "subnet-c063n9el",
        password: "Password@2026",
        oldPasswordExpireLast: 3600,
        clusterType: 2,
        serverLists: [{
            machineType: "T1",
            machineNum: 4,
        }],
        proxyLists: [{
            machineType: "T1",
            machineNum: 2,
        }],
        resourceTags: [{
            tagKey: "createBy",
            tagValue: "Terraform",
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.TcaplusCluster("example",
        idl_type="MIX",
        cluster_name="tf_example",
        vpc_id="vpc-qtzga3pm",
        subnet_id="subnet-c063n9el",
        password="Password@2026",
        old_password_expire_last=3600,
        cluster_type=2,
        server_lists=[{
            "machine_type": "T1",
            "machine_num": 4,
        }],
        proxy_lists=[{
            "machine_type": "T1",
            "machine_num": 2,
        }],
        resource_tags=[{
            "tag_key": "createBy",
            "tag_value": "Terraform",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewTcaplusCluster(ctx, "example", &tencentcloud.TcaplusClusterArgs{
    			IdlType:               pulumi.String("MIX"),
    			ClusterName:           pulumi.String("tf_example"),
    			VpcId:                 pulumi.String("vpc-qtzga3pm"),
    			SubnetId:              pulumi.String("subnet-c063n9el"),
    			Password:              pulumi.String("Password@2026"),
    			OldPasswordExpireLast: pulumi.Float64(3600),
    			ClusterType:           pulumi.Float64(2),
    			ServerLists: tencentcloud.TcaplusClusterServerListArray{
    				&tencentcloud.TcaplusClusterServerListArgs{
    					MachineType: pulumi.String("T1"),
    					MachineNum:  pulumi.Float64(4),
    				},
    			},
    			ProxyLists: tencentcloud.TcaplusClusterProxyListArray{
    				&tencentcloud.TcaplusClusterProxyListArgs{
    					MachineType: pulumi.String("T1"),
    					MachineNum:  pulumi.Float64(2),
    				},
    			},
    			ResourceTags: tencentcloud.TcaplusClusterResourceTagArray{
    				&tencentcloud.TcaplusClusterResourceTagArgs{
    					TagKey:   pulumi.String("createBy"),
    					TagValue: pulumi.String("Terraform"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.TcaplusCluster("example", new()
        {
            IdlType = "MIX",
            ClusterName = "tf_example",
            VpcId = "vpc-qtzga3pm",
            SubnetId = "subnet-c063n9el",
            Password = "Password@2026",
            OldPasswordExpireLast = 3600,
            ClusterType = 2,
            ServerLists = new[]
            {
                new Tencentcloud.Inputs.TcaplusClusterServerListArgs
                {
                    MachineType = "T1",
                    MachineNum = 4,
                },
            },
            ProxyLists = new[]
            {
                new Tencentcloud.Inputs.TcaplusClusterProxyListArgs
                {
                    MachineType = "T1",
                    MachineNum = 2,
                },
            },
            ResourceTags = new[]
            {
                new Tencentcloud.Inputs.TcaplusClusterResourceTagArgs
                {
                    TagKey = "createBy",
                    TagValue = "Terraform",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TcaplusCluster;
    import com.pulumi.tencentcloud.TcaplusClusterArgs;
    import com.pulumi.tencentcloud.inputs.TcaplusClusterServerListArgs;
    import com.pulumi.tencentcloud.inputs.TcaplusClusterProxyListArgs;
    import com.pulumi.tencentcloud.inputs.TcaplusClusterResourceTagArgs;
    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) {
            var example = new TcaplusCluster("example", TcaplusClusterArgs.builder()
                .idlType("MIX")
                .clusterName("tf_example")
                .vpcId("vpc-qtzga3pm")
                .subnetId("subnet-c063n9el")
                .password("Password@2026")
                .oldPasswordExpireLast(3600.0)
                .clusterType(2.0)
                .serverLists(TcaplusClusterServerListArgs.builder()
                    .machineType("T1")
                    .machineNum(4.0)
                    .build())
                .proxyLists(TcaplusClusterProxyListArgs.builder()
                    .machineType("T1")
                    .machineNum(2.0)
                    .build())
                .resourceTags(TcaplusClusterResourceTagArgs.builder()
                    .tagKey("createBy")
                    .tagValue("Terraform")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:TcaplusCluster
        properties:
          idlType: MIX
          clusterName: tf_example
          vpcId: vpc-qtzga3pm
          subnetId: subnet-c063n9el
          password: Password@2026
          oldPasswordExpireLast: 3600
          clusterType: 2
          serverLists:
            - machineType: T1
              machineNum: 4
          proxyLists:
            - machineType: T1
              machineNum: 2
          resourceTags:
            - tagKey: createBy
              tagValue: Terraform
    
    Example coming soon!
    

    Create TcaplusCluster Resource

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

    Constructor syntax

    new TcaplusCluster(name: string, args: TcaplusClusterArgs, opts?: CustomResourceOptions);
    @overload
    def TcaplusCluster(resource_name: str,
                       args: TcaplusClusterArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def TcaplusCluster(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       cluster_name: Optional[str] = None,
                       idl_type: Optional[str] = None,
                       password: Optional[str] = None,
                       subnet_id: Optional[str] = None,
                       vpc_id: Optional[str] = None,
                       cluster_type: Optional[float] = None,
                       old_password_expire_last: Optional[float] = None,
                       proxy_lists: Optional[Sequence[TcaplusClusterProxyListArgs]] = None,
                       resource_tags: Optional[Sequence[TcaplusClusterResourceTagArgs]] = None,
                       server_lists: Optional[Sequence[TcaplusClusterServerListArgs]] = None,
                       tcaplus_cluster_id: Optional[str] = None)
    func NewTcaplusCluster(ctx *Context, name string, args TcaplusClusterArgs, opts ...ResourceOption) (*TcaplusCluster, error)
    public TcaplusCluster(string name, TcaplusClusterArgs args, CustomResourceOptions? opts = null)
    public TcaplusCluster(String name, TcaplusClusterArgs args)
    public TcaplusCluster(String name, TcaplusClusterArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TcaplusCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_tcaplus_cluster" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TcaplusClusterArgs
    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 TcaplusClusterArgs
    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 TcaplusClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TcaplusClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TcaplusClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ClusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    IdlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    Password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    SubnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    VpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    ClusterType double
    Cluster type: 1 shared, 2 dedicated.
    OldPasswordExpireLast double
    Expiration time of old password after password update, unit: second.
    ProxyLists List<TcaplusClusterProxyList>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    ResourceTags List<TcaplusClusterResourceTag>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    ServerLists List<TcaplusClusterServerList>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    TcaplusClusterId string
    ID of the resource.
    ClusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    IdlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    Password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    SubnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    VpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    ClusterType float64
    Cluster type: 1 shared, 2 dedicated.
    OldPasswordExpireLast float64
    Expiration time of old password after password update, unit: second.
    ProxyLists []TcaplusClusterProxyListArgs
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    ResourceTags []TcaplusClusterResourceTagArgs
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    ServerLists []TcaplusClusterServerListArgs
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    TcaplusClusterId string
    ID of the resource.
    cluster_name string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    idl_type string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    subnet_id string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    vpc_id string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    cluster_type number
    Cluster type: 1 shared, 2 dedicated.
    old_password_expire_last number
    Expiration time of old password after password update, unit: second.
    proxy_lists list(object)
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resource_tags list(object)
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    server_lists list(object)
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    tcaplus_cluster_id string
    ID of the resource.
    clusterName String
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    idlType String
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    password String
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    subnetId String
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    vpcId String
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    clusterType Double
    Cluster type: 1 shared, 2 dedicated.
    oldPasswordExpireLast Double
    Expiration time of old password after password update, unit: second.
    proxyLists List<TcaplusClusterProxyList>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags List<TcaplusClusterResourceTag>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists List<TcaplusClusterServerList>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    tcaplusClusterId String
    ID of the resource.
    clusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    idlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    subnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    vpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    clusterType number
    Cluster type: 1 shared, 2 dedicated.
    oldPasswordExpireLast number
    Expiration time of old password after password update, unit: second.
    proxyLists TcaplusClusterProxyList[]
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags TcaplusClusterResourceTag[]
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists TcaplusClusterServerList[]
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    tcaplusClusterId string
    ID of the resource.
    cluster_name str
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    idl_type str
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    password str
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    subnet_id str
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    vpc_id str
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    cluster_type float
    Cluster type: 1 shared, 2 dedicated.
    old_password_expire_last float
    Expiration time of old password after password update, unit: second.
    proxy_lists Sequence[TcaplusClusterProxyListArgs]
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resource_tags Sequence[TcaplusClusterResourceTagArgs]
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    server_lists Sequence[TcaplusClusterServerListArgs]
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    tcaplus_cluster_id str
    ID of the resource.
    clusterName String
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    idlType String
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    password String
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    subnetId String
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    vpcId String
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    clusterType Number
    Cluster type: 1 shared, 2 dedicated.
    oldPasswordExpireLast Number
    Expiration time of old password after password update, unit: second.
    proxyLists List<Property Map>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags List<Property Map>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists List<Property Map>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    tcaplusClusterId String
    ID of the resource.

    Outputs

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

    ApiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessPort double
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ClusterId string
    Cluster ID.
    CreateTime string
    Create time of the TcaplusDB cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkType string
    Network type of the TcaplusDB cluster.
    OldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    PasswordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    ApiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessPort float64
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ClusterId string
    Cluster ID.
    CreateTime string
    Create time of the TcaplusDB cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkType string
    Network type of the TcaplusDB cluster.
    OldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    PasswordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    api_access_id string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_ip string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_port number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    cluster_id string
    Cluster ID.
    create_time string
    Create time of the TcaplusDB cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    network_type string
    Network type of the TcaplusDB cluster.
    old_password_expire_time string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password_status string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    apiAccessId String
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp String
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort Double
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId String
    Cluster ID.
    createTime String
    Create time of the TcaplusDB cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    networkType String
    Network type of the TcaplusDB cluster.
    oldPasswordExpireTime String
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    passwordStatus String
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    apiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId string
    Cluster ID.
    createTime string
    Create time of the TcaplusDB cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    networkType string
    Network type of the TcaplusDB cluster.
    oldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    passwordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    api_access_id str
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_ip str
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_port float
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    cluster_id str
    Cluster ID.
    create_time str
    Create time of the TcaplusDB cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    network_type str
    Network type of the TcaplusDB cluster.
    old_password_expire_time str
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password_status str
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    apiAccessId String
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp String
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort Number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId String
    Cluster ID.
    createTime String
    Create time of the TcaplusDB cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    networkType String
    Network type of the TcaplusDB cluster.
    oldPasswordExpireTime String
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    passwordStatus String
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.

    Look up Existing TcaplusCluster Resource

    Get an existing TcaplusCluster 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?: TcaplusClusterState, opts?: CustomResourceOptions): TcaplusCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_access_id: Optional[str] = None,
            api_access_ip: Optional[str] = None,
            api_access_port: Optional[float] = None,
            cluster_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            cluster_type: Optional[float] = None,
            create_time: Optional[str] = None,
            idl_type: Optional[str] = None,
            network_type: Optional[str] = None,
            old_password_expire_last: Optional[float] = None,
            old_password_expire_time: Optional[str] = None,
            password: Optional[str] = None,
            password_status: Optional[str] = None,
            proxy_lists: Optional[Sequence[TcaplusClusterProxyListArgs]] = None,
            resource_tags: Optional[Sequence[TcaplusClusterResourceTagArgs]] = None,
            server_lists: Optional[Sequence[TcaplusClusterServerListArgs]] = None,
            subnet_id: Optional[str] = None,
            tcaplus_cluster_id: Optional[str] = None,
            vpc_id: Optional[str] = None) -> TcaplusCluster
    func GetTcaplusCluster(ctx *Context, name string, id IDInput, state *TcaplusClusterState, opts ...ResourceOption) (*TcaplusCluster, error)
    public static TcaplusCluster Get(string name, Input<string> id, TcaplusClusterState? state, CustomResourceOptions? opts = null)
    public static TcaplusCluster get(String name, Output<String> id, TcaplusClusterState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TcaplusCluster    get:      id: ${id}
    import {
      to = tencentcloud_tcaplus_cluster.example
      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:
    ApiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessPort double
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ClusterId string
    Cluster ID.
    ClusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    ClusterType double
    Cluster type: 1 shared, 2 dedicated.
    CreateTime string
    Create time of the TcaplusDB cluster.
    IdlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    NetworkType string
    Network type of the TcaplusDB cluster.
    OldPasswordExpireLast double
    Expiration time of old password after password update, unit: second.
    OldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    Password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    PasswordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    ProxyLists List<TcaplusClusterProxyList>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    ResourceTags List<TcaplusClusterResourceTag>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    ServerLists List<TcaplusClusterServerList>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    SubnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    TcaplusClusterId string
    ID of the resource.
    VpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    ApiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ApiAccessPort float64
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    ClusterId string
    Cluster ID.
    ClusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    ClusterType float64
    Cluster type: 1 shared, 2 dedicated.
    CreateTime string
    Create time of the TcaplusDB cluster.
    IdlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    NetworkType string
    Network type of the TcaplusDB cluster.
    OldPasswordExpireLast float64
    Expiration time of old password after password update, unit: second.
    OldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    Password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    PasswordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    ProxyLists []TcaplusClusterProxyListArgs
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    ResourceTags []TcaplusClusterResourceTagArgs
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    ServerLists []TcaplusClusterServerListArgs
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    SubnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    TcaplusClusterId string
    ID of the resource.
    VpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    api_access_id string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_ip string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_port number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    cluster_id string
    Cluster ID.
    cluster_name string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    cluster_type number
    Cluster type: 1 shared, 2 dedicated.
    create_time string
    Create time of the TcaplusDB cluster.
    idl_type string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    network_type string
    Network type of the TcaplusDB cluster.
    old_password_expire_last number
    Expiration time of old password after password update, unit: second.
    old_password_expire_time string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    password_status string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    proxy_lists list(object)
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resource_tags list(object)
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    server_lists list(object)
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    subnet_id string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    tcaplus_cluster_id string
    ID of the resource.
    vpc_id string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    apiAccessId String
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp String
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort Double
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId String
    Cluster ID.
    clusterName String
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    clusterType Double
    Cluster type: 1 shared, 2 dedicated.
    createTime String
    Create time of the TcaplusDB cluster.
    idlType String
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    networkType String
    Network type of the TcaplusDB cluster.
    oldPasswordExpireLast Double
    Expiration time of old password after password update, unit: second.
    oldPasswordExpireTime String
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password String
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    passwordStatus String
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    proxyLists List<TcaplusClusterProxyList>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags List<TcaplusClusterResourceTag>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists List<TcaplusClusterServerList>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    subnetId String
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    tcaplusClusterId String
    ID of the resource.
    vpcId String
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    apiAccessId string
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp string
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId string
    Cluster ID.
    clusterName string
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    clusterType number
    Cluster type: 1 shared, 2 dedicated.
    createTime string
    Create time of the TcaplusDB cluster.
    idlType string
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    networkType string
    Network type of the TcaplusDB cluster.
    oldPasswordExpireLast number
    Expiration time of old password after password update, unit: second.
    oldPasswordExpireTime string
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password string
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    passwordStatus string
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    proxyLists TcaplusClusterProxyList[]
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags TcaplusClusterResourceTag[]
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists TcaplusClusterServerList[]
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    subnetId string
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    tcaplusClusterId string
    ID of the resource.
    vpcId string
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    api_access_id str
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_ip str
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    api_access_port float
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    cluster_id str
    Cluster ID.
    cluster_name str
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    cluster_type float
    Cluster type: 1 shared, 2 dedicated.
    create_time str
    Create time of the TcaplusDB cluster.
    idl_type str
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    network_type str
    Network type of the TcaplusDB cluster.
    old_password_expire_last float
    Expiration time of old password after password update, unit: second.
    old_password_expire_time str
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password str
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    password_status str
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    proxy_lists Sequence[TcaplusClusterProxyListArgs]
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resource_tags Sequence[TcaplusClusterResourceTagArgs]
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    server_lists Sequence[TcaplusClusterServerListArgs]
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    subnet_id str
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    tcaplus_cluster_id str
    ID of the resource.
    vpc_id str
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.
    apiAccessId String
    Access ID of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessIp String
    Access IP of the TcaplusDB cluster. For TcaplusDB SDK connect.
    apiAccessPort Number
    Access port of the TcaplusDB cluster. For TcaplusDB SDK connect.
    clusterId String
    Cluster ID.
    clusterName String
    Cluster name, Chinese or English characters can be used, maximum length is 32 characters.
    clusterType Number
    Cluster type: 1 shared, 2 dedicated.
    createTime String
    Create time of the TcaplusDB cluster.
    idlType String
    Cluster data description language type, uniformly filled with MIX, enumeration value: MIX: supports both PROTO and TDR tables.
    networkType String
    Network type of the TcaplusDB cluster.
    oldPasswordExpireLast Number
    Expiration time of old password after password update, unit: second.
    oldPasswordExpireTime String
    Expiration time of the old password. If password_status is unmodifiable, it means the old password has not yet expired.
    password String
    Cluster access password, must be a-zA-Z0-9 characters, and must contain numbers, uppercase and lowercase letters.
    passwordStatus String
    Password status of the TcaplusDB cluster. Valid values: unmodifiable, modifiable. unmodifiable. which means the password can not be changed in this moment; modifiable, which means the password can be changed in this moment.
    proxyLists List<Property Map>
    Dedicated cluster occupied proxy machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    resourceTags List<Property Map>
    Cluster tag set. Note: this field cannot be modified after cluster creation via CreateCluster, but can be modified via ModifyClusterTags. Tags will be refreshed on Read via DescribeClusterTags.
    serverLists List<Property Map>
    Dedicated cluster occupied svr machines. Only valid when cluster_type is 2 (dedicated cluster). For creation, each element exposes machine_type and machine_num.
    subnetId String
    The subnet instance ID bound to the cluster, such as: subnet-pxir56ns.
    tcaplusClusterId String
    ID of the resource.
    vpcId String
    The private network instance ID bound to the cluster, such as: vpc-f49l6u0z.

    Supporting Types

    TcaplusClusterProxyList, TcaplusClusterProxyListArgs

    MachineNum double
    Machine quantity.
    MachineType string
    Machine type.
    MachineNum float64
    Machine quantity.
    MachineType string
    Machine type.
    machine_num number
    Machine quantity.
    machine_type string
    Machine type.
    machineNum Double
    Machine quantity.
    machineType String
    Machine type.
    machineNum number
    Machine quantity.
    machineType string
    Machine type.
    machine_num float
    Machine quantity.
    machine_type str
    Machine type.
    machineNum Number
    Machine quantity.
    machineType String
    Machine type.

    TcaplusClusterResourceTag, TcaplusClusterResourceTagArgs

    TagKey string
    Tag key.
    TagValue string
    Tag value.
    TagKey string
    Tag key.
    TagValue string
    Tag value.
    tag_key string
    Tag key.
    tag_value string
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.
    tagKey string
    Tag key.
    tagValue string
    Tag value.
    tag_key str
    Tag key.
    tag_value str
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.

    TcaplusClusterServerList, TcaplusClusterServerListArgs

    MachineNum double
    Machine quantity.
    MachineType string
    Machine type.
    MachineNum float64
    Machine quantity.
    MachineType string
    Machine type.
    machine_num number
    Machine quantity.
    machine_type string
    Machine type.
    machineNum Double
    Machine quantity.
    machineType String
    Machine type.
    machineNum number
    Machine quantity.
    machineType string
    Machine type.
    machine_num float
    Machine quantity.
    machine_type str
    Machine type.
    machineNum Number
    Machine quantity.
    machineType String
    Machine type.

    Import

    TcaplusDB cluster can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/tcaplusCluster:TcaplusCluster example 35402666774
    

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

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.33
    published on Monday, Sep 21, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial