import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqTopicConfig extends cdktf.TerraformMetaArguments { /** * The Dedicated Cluster Id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#cluster_id TdmqTopic#cluster_id} */ readonly clusterId: string; /** * The name of tdmq namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#environ_id TdmqTopic#environ_id} */ readonly environId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#id TdmqTopic#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; /** * The partitions of topic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#partitions TdmqTopic#partitions} */ readonly partitions: number; /** * Pulsar Topic Type 0: Non-persistent non-partitioned 1: Non-persistent partitioned 2: Persistent non-partitioned 3: Persistent partitioned. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#pulsar_topic_type TdmqTopic#pulsar_topic_type} */ readonly pulsarTopicType?: number; /** * Description of the namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#remark TdmqTopic#remark} */ readonly remark?: string; /** * The name of topic to be created. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#topic_name TdmqTopic#topic_name} */ readonly topicName: string; /** * The type of topic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#topic_type TdmqTopic#topic_type} */ readonly topicType?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic tencentcloud_tdmq_topic} */ export declare class TdmqTopic extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_topic"; /** * Generates CDKTF code for importing a TdmqTopic 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 TdmqTopic to import * @param importFromId The id of the existing TdmqTopic that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_topic#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqTopic 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_topic tencentcloud_tdmq_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 TdmqTopicConfig */ constructor(scope: Construct, id: string, config: TdmqTopicConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _environId?; get environId(): string; set environId(value: string); get environIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _partitions?; get partitions(): number; set partitions(value: number); get partitionsInput(): number; private _pulsarTopicType?; get pulsarTopicType(): number; set pulsarTopicType(value: number); resetPulsarTopicType(): void; get pulsarTopicTypeInput(): 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 _topicType?; get topicType(): number; set topicType(value: number); resetTopicType(): void; get topicTypeInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }