import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqRocketmqTopicConfig extends cdktf.TerraformMetaArguments { /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#cluster_id TdmqRocketmqTopic#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#id TdmqRocketmqTopic#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Topic namespace. Currently, you can create topics only in one single namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#namespace_name TdmqRocketmqTopic#namespace_name} */ readonly namespaceName: string; /** * Number of partitions. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#partition_num TdmqRocketmqTopic#partition_num} */ readonly partitionNum?: number; /** * Topic remarks (up to 128 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#remark TdmqRocketmqTopic#remark} */ readonly remark?: string; /** * Topic name, which can contain 3-64 letters, digits, hyphens, and underscores. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#topic_name TdmqRocketmqTopic#topic_name} */ readonly topicName: string; /** * Topic type. Valid values: Normal, GlobalOrder, PartitionedOrder. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#type TdmqRocketmqTopic#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic tencentcloud_tdmq_rocketmq_topic} */ export declare class TdmqRocketmqTopic extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_rocketmq_topic"; /** * Generates CDKTF code for importing a TdmqRocketmqTopic resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the TdmqRocketmqTopic to import * @param importFromId The id of the existing TdmqRocketmqTopic that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqRocketmqTopic to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_topic tencentcloud_tdmq_rocketmq_topic} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options TdmqRocketmqTopicConfig */ constructor(scope: Construct, id: string, config: TdmqRocketmqTopicConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _namespaceName?; get namespaceName(): string; set namespaceName(value: string); get namespaceNameInput(): string; private _partitionNum?; get partitionNum(): number; set partitionNum(value: number); resetPartitionNum(): void; get partitionNumInput(): number; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _topicName?; get topicName(): string; set topicName(value: string); get topicNameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; get updateTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }