published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Use this resource to create TcaplusDB table group.
Example Usage
Create a tcaplusdb table group
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.TcaplusCluster("example", {
idlType: "PROTO",
clusterName: "tf_example_tcaplus_cluster",
vpcId: "vpc-i5yyodl9",
subnetId: "subnet-hhi88a58",
password: "Password@2026",
oldPasswordExpireLast: 3600,
});
const exampleTcaplusTablegroup = new tencentcloud.TcaplusTablegroup("example", {
clusterId: example.tcaplusClusterId,
tablegroupName: "tf_example_group_name",
resourceTags: [{
tagKey: "CreatedBy",
tagValue: "Terraform",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.TcaplusCluster("example",
idl_type="PROTO",
cluster_name="tf_example_tcaplus_cluster",
vpc_id="vpc-i5yyodl9",
subnet_id="subnet-hhi88a58",
password="Password@2026",
old_password_expire_last=3600)
example_tcaplus_tablegroup = tencentcloud.TcaplusTablegroup("example",
cluster_id=example.tcaplus_cluster_id,
tablegroup_name="tf_example_group_name",
resource_tags=[{
"tag_key": "CreatedBy",
"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 {
example, err := tencentcloud.NewTcaplusCluster(ctx, "example", &tencentcloud.TcaplusClusterArgs{
IdlType: pulumi.String("PROTO"),
ClusterName: pulumi.String("tf_example_tcaplus_cluster"),
VpcId: pulumi.String("vpc-i5yyodl9"),
SubnetId: pulumi.String("subnet-hhi88a58"),
Password: pulumi.String("Password@2026"),
OldPasswordExpireLast: pulumi.Float64(3600),
})
if err != nil {
return err
}
_, err = tencentcloud.NewTcaplusTablegroup(ctx, "example", &tencentcloud.TcaplusTablegroupArgs{
ClusterId: example.TcaplusClusterId,
TablegroupName: pulumi.String("tf_example_group_name"),
ResourceTags: tencentcloud.TcaplusTablegroupResourceTagArray{
&tencentcloud.TcaplusTablegroupResourceTagArgs{
TagKey: pulumi.String("CreatedBy"),
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 = "PROTO",
ClusterName = "tf_example_tcaplus_cluster",
VpcId = "vpc-i5yyodl9",
SubnetId = "subnet-hhi88a58",
Password = "Password@2026",
OldPasswordExpireLast = 3600,
});
var exampleTcaplusTablegroup = new Tencentcloud.TcaplusTablegroup("example", new()
{
ClusterId = example.TcaplusClusterId,
TablegroupName = "tf_example_group_name",
ResourceTags = new[]
{
new Tencentcloud.Inputs.TcaplusTablegroupResourceTagArgs
{
TagKey = "CreatedBy",
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.TcaplusTablegroup;
import com.pulumi.tencentcloud.TcaplusTablegroupArgs;
import com.pulumi.tencentcloud.inputs.TcaplusTablegroupResourceTagArgs;
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("PROTO")
.clusterName("tf_example_tcaplus_cluster")
.vpcId("vpc-i5yyodl9")
.subnetId("subnet-hhi88a58")
.password("Password@2026")
.oldPasswordExpireLast(3600.0)
.build());
var exampleTcaplusTablegroup = new TcaplusTablegroup("exampleTcaplusTablegroup", TcaplusTablegroupArgs.builder()
.clusterId(example.tcaplusClusterId())
.tablegroupName("tf_example_group_name")
.resourceTags(TcaplusTablegroupResourceTagArgs.builder()
.tagKey("CreatedBy")
.tagValue("Terraform")
.build())
.build());
}
}
resources:
example:
type: tencentcloud:TcaplusCluster
properties:
idlType: PROTO
clusterName: tf_example_tcaplus_cluster
vpcId: vpc-i5yyodl9
subnetId: subnet-hhi88a58
password: Password@2026
oldPasswordExpireLast: 3600
exampleTcaplusTablegroup:
type: tencentcloud:TcaplusTablegroup
name: example
properties:
clusterId: ${example.tcaplusClusterId}
tablegroupName: tf_example_group_name
resourceTags:
- tagKey: CreatedBy
tagValue: Terraform
Example coming soon!
Create a tcaplusdb table group with user-specified table group id
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.TcaplusCluster("example", {
idlType: "PROTO",
clusterName: "tf_example_tcaplus_cluster",
vpcId: "vpc-i5yyodl9",
subnetId: "subnet-hhi88a58",
password: "Password@2026",
oldPasswordExpireLast: 3600,
});
const exampleTcaplusTablegroup = new tencentcloud.TcaplusTablegroup("example", {
clusterId: example.tcaplusClusterId,
tablegroupName: "tf_example_group_name",
tableGroupId: "109",
resourceTags: [{
tagKey: "CreatedBy",
tagValue: "Terraform",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.TcaplusCluster("example",
idl_type="PROTO",
cluster_name="tf_example_tcaplus_cluster",
vpc_id="vpc-i5yyodl9",
subnet_id="subnet-hhi88a58",
password="Password@2026",
old_password_expire_last=3600)
example_tcaplus_tablegroup = tencentcloud.TcaplusTablegroup("example",
cluster_id=example.tcaplus_cluster_id,
tablegroup_name="tf_example_group_name",
table_group_id="109",
resource_tags=[{
"tag_key": "CreatedBy",
"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 {
example, err := tencentcloud.NewTcaplusCluster(ctx, "example", &tencentcloud.TcaplusClusterArgs{
IdlType: pulumi.String("PROTO"),
ClusterName: pulumi.String("tf_example_tcaplus_cluster"),
VpcId: pulumi.String("vpc-i5yyodl9"),
SubnetId: pulumi.String("subnet-hhi88a58"),
Password: pulumi.String("Password@2026"),
OldPasswordExpireLast: pulumi.Float64(3600),
})
if err != nil {
return err
}
_, err = tencentcloud.NewTcaplusTablegroup(ctx, "example", &tencentcloud.TcaplusTablegroupArgs{
ClusterId: example.TcaplusClusterId,
TablegroupName: pulumi.String("tf_example_group_name"),
TableGroupId: pulumi.String("109"),
ResourceTags: tencentcloud.TcaplusTablegroupResourceTagArray{
&tencentcloud.TcaplusTablegroupResourceTagArgs{
TagKey: pulumi.String("CreatedBy"),
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 = "PROTO",
ClusterName = "tf_example_tcaplus_cluster",
VpcId = "vpc-i5yyodl9",
SubnetId = "subnet-hhi88a58",
Password = "Password@2026",
OldPasswordExpireLast = 3600,
});
var exampleTcaplusTablegroup = new Tencentcloud.TcaplusTablegroup("example", new()
{
ClusterId = example.TcaplusClusterId,
TablegroupName = "tf_example_group_name",
TableGroupId = "109",
ResourceTags = new[]
{
new Tencentcloud.Inputs.TcaplusTablegroupResourceTagArgs
{
TagKey = "CreatedBy",
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.TcaplusTablegroup;
import com.pulumi.tencentcloud.TcaplusTablegroupArgs;
import com.pulumi.tencentcloud.inputs.TcaplusTablegroupResourceTagArgs;
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("PROTO")
.clusterName("tf_example_tcaplus_cluster")
.vpcId("vpc-i5yyodl9")
.subnetId("subnet-hhi88a58")
.password("Password@2026")
.oldPasswordExpireLast(3600.0)
.build());
var exampleTcaplusTablegroup = new TcaplusTablegroup("exampleTcaplusTablegroup", TcaplusTablegroupArgs.builder()
.clusterId(example.tcaplusClusterId())
.tablegroupName("tf_example_group_name")
.tableGroupId("109")
.resourceTags(TcaplusTablegroupResourceTagArgs.builder()
.tagKey("CreatedBy")
.tagValue("Terraform")
.build())
.build());
}
}
resources:
example:
type: tencentcloud:TcaplusCluster
properties:
idlType: PROTO
clusterName: tf_example_tcaplus_cluster
vpcId: vpc-i5yyodl9
subnetId: subnet-hhi88a58
password: Password@2026
oldPasswordExpireLast: 3600
exampleTcaplusTablegroup:
type: tencentcloud:TcaplusTablegroup
name: example
properties:
clusterId: ${example.tcaplusClusterId}
tablegroupName: tf_example_group_name
tableGroupId: '109'
resourceTags:
- tagKey: CreatedBy
tagValue: Terraform
Example coming soon!
Create TcaplusTablegroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TcaplusTablegroup(name: string, args: TcaplusTablegroupArgs, opts?: CustomResourceOptions);@overload
def TcaplusTablegroup(resource_name: str,
args: TcaplusTablegroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TcaplusTablegroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
tablegroup_name: Optional[str] = None,
resource_tags: Optional[Sequence[TcaplusTablegroupResourceTagArgs]] = None,
table_group_id: Optional[str] = None,
tcaplus_tablegroup_id: Optional[str] = None)func NewTcaplusTablegroup(ctx *Context, name string, args TcaplusTablegroupArgs, opts ...ResourceOption) (*TcaplusTablegroup, error)public TcaplusTablegroup(string name, TcaplusTablegroupArgs args, CustomResourceOptions? opts = null)
public TcaplusTablegroup(String name, TcaplusTablegroupArgs args)
public TcaplusTablegroup(String name, TcaplusTablegroupArgs args, CustomResourceOptions options)
type: tencentcloud:TcaplusTablegroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "tencentcloud_tcaplus_tablegroup" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args TcaplusTablegroupArgs
- 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 TcaplusTablegroupArgs
- 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 TcaplusTablegroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TcaplusTablegroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TcaplusTablegroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TcaplusTablegroup 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 TcaplusTablegroup resource accepts the following input properties:
- Cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- Tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
-
List<Tcaplus
Tablegroup Resource Tag> - Set of table group tags.
- Table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- Tcaplus
Tablegroup stringId - ID of the resource.
- Cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- Tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
-
[]Tcaplus
Tablegroup Resource Tag Args - Set of table group tags.
- Table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- Tcaplus
Tablegroup stringId - ID of the resource.
- cluster_
id string - ID of the TcaplusDB cluster to which the table group belongs.
- tablegroup_
name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- list(object)
- Set of table group tags.
- table_
group_ stringid - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tcaplus_
tablegroup_ stringid - ID of the resource.
- cluster
Id String - ID of the TcaplusDB cluster to which the table group belongs.
- tablegroup
Name String - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
-
List<Tcaplus
Tablegroup Resource Tag> - Set of table group tags.
- table
Group StringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tcaplus
Tablegroup StringId - ID of the resource.
- cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
-
Tcaplus
Tablegroup Resource Tag[] - Set of table group tags.
- table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tcaplus
Tablegroup stringId - ID of the resource.
- cluster_
id str - ID of the TcaplusDB cluster to which the table group belongs.
- tablegroup_
name str - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
-
Sequence[Tcaplus
Tablegroup Resource Tag Args] - Set of table group tags.
- table_
group_ strid - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tcaplus_
tablegroup_ strid - ID of the resource.
- cluster
Id String - ID of the TcaplusDB cluster to which the table group belongs.
- tablegroup
Name String - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- List<Property Map>
- Set of table group tags.
- table
Group StringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tcaplus
Tablegroup StringId - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TcaplusTablegroup resource produces the following output properties:
- Create
Time string - Create time of the TcaplusDB table group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Table
Count double - Number of tables.
- Total
Size double - Total storage size (MB).
- Create
Time string - Create time of the TcaplusDB table group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Table
Count float64 - Number of tables.
- Total
Size float64 - Total storage size (MB).
- create_
time string - Create time of the TcaplusDB table group.
- id string
- The provider-assigned unique ID for this managed resource.
- table_
count number - Number of tables.
- total_
size number - Total storage size (MB).
- create
Time String - Create time of the TcaplusDB table group.
- id String
- The provider-assigned unique ID for this managed resource.
- table
Count Double - Number of tables.
- total
Size Double - Total storage size (MB).
- create
Time string - Create time of the TcaplusDB table group.
- id string
- The provider-assigned unique ID for this managed resource.
- table
Count number - Number of tables.
- total
Size number - Total storage size (MB).
- create_
time str - Create time of the TcaplusDB table group.
- id str
- The provider-assigned unique ID for this managed resource.
- table_
count float - Number of tables.
- total_
size float - Total storage size (MB).
- create
Time String - Create time of the TcaplusDB table group.
- id String
- The provider-assigned unique ID for this managed resource.
- table
Count Number - Number of tables.
- total
Size Number - Total storage size (MB).
Look up Existing TcaplusTablegroup Resource
Get an existing TcaplusTablegroup 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?: TcaplusTablegroupState, opts?: CustomResourceOptions): TcaplusTablegroup@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
create_time: Optional[str] = None,
resource_tags: Optional[Sequence[TcaplusTablegroupResourceTagArgs]] = None,
table_count: Optional[float] = None,
table_group_id: Optional[str] = None,
tablegroup_name: Optional[str] = None,
tcaplus_tablegroup_id: Optional[str] = None,
total_size: Optional[float] = None) -> TcaplusTablegroupfunc GetTcaplusTablegroup(ctx *Context, name string, id IDInput, state *TcaplusTablegroupState, opts ...ResourceOption) (*TcaplusTablegroup, error)public static TcaplusTablegroup Get(string name, Input<string> id, TcaplusTablegroupState? state, CustomResourceOptions? opts = null)public static TcaplusTablegroup get(String name, Output<String> id, TcaplusTablegroupState state, CustomResourceOptions options)resources: _: type: tencentcloud:TcaplusTablegroup get: id: ${id}import {
to = tencentcloud_tcaplus_tablegroup.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.
- Cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- Create
Time string - Create time of the TcaplusDB table group.
-
List<Tcaplus
Tablegroup Resource Tag> - Set of table group tags.
- Table
Count double - Number of tables.
- Table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- Tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- Tcaplus
Tablegroup stringId - ID of the resource.
- Total
Size double - Total storage size (MB).
- Cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- Create
Time string - Create time of the TcaplusDB table group.
-
[]Tcaplus
Tablegroup Resource Tag Args - Set of table group tags.
- Table
Count float64 - Number of tables.
- Table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- Tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- Tcaplus
Tablegroup stringId - ID of the resource.
- Total
Size float64 - Total storage size (MB).
- cluster_
id string - ID of the TcaplusDB cluster to which the table group belongs.
- create_
time string - Create time of the TcaplusDB table group.
- list(object)
- Set of table group tags.
- table_
count number - Number of tables.
- table_
group_ stringid - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tablegroup_
name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- tcaplus_
tablegroup_ stringid - ID of the resource.
- total_
size number - Total storage size (MB).
- cluster
Id String - ID of the TcaplusDB cluster to which the table group belongs.
- create
Time String - Create time of the TcaplusDB table group.
-
List<Tcaplus
Tablegroup Resource Tag> - Set of table group tags.
- table
Count Double - Number of tables.
- table
Group StringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tablegroup
Name String - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- tcaplus
Tablegroup StringId - ID of the resource.
- total
Size Double - Total storage size (MB).
- cluster
Id string - ID of the TcaplusDB cluster to which the table group belongs.
- create
Time string - Create time of the TcaplusDB table group.
-
Tcaplus
Tablegroup Resource Tag[] - Set of table group tags.
- table
Count number - Number of tables.
- table
Group stringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tablegroup
Name string - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- tcaplus
Tablegroup stringId - ID of the resource.
- total
Size number - Total storage size (MB).
- cluster_
id str - ID of the TcaplusDB cluster to which the table group belongs.
- create_
time str - Create time of the TcaplusDB table group.
-
Sequence[Tcaplus
Tablegroup Resource Tag Args] - Set of table group tags.
- table_
count float - Number of tables.
- table_
group_ strid - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tablegroup_
name str - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- tcaplus_
tablegroup_ strid - ID of the resource.
- total_
size float - Total storage size (MB).
- cluster
Id String - ID of the TcaplusDB cluster to which the table group belongs.
- create
Time String - Create time of the TcaplusDB table group.
- List<Property Map>
- Set of table group tags.
- table
Count Number - Number of tables.
- table
Group StringId - ID of the TcaplusDB table group, can be user-specified (must be unique within the cluster) or auto-incremented by the API when not set. Immutable after creation.
- tablegroup
Name String - Table group name; may consist of Chinese characters, English letters, or numeric characters, with a maximum length of 32 characters.
- tcaplus
Tablegroup StringId - ID of the resource.
- total
Size Number - Total storage size (MB).
Supporting Types
TcaplusTablegroupResourceTag, TcaplusTablegroupResourceTagArgs
Import
TcaplusDB table group can be imported using the clusterId:tableGroupId, e.g.
$ pulumi import tencentcloud:index/tcaplusTablegroup:TcaplusTablegroup example 5516511420:52
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
tencentcloudTerraform Provider.
published on Friday, Aug 14, 2026 by tencentcloudstack