import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqRocketmqGroupConfig extends cdktf.TerraformMetaArguments { /** * Whether to enable broadcast consumption. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#broadcast_enable TdmqRocketmqGroup#broadcast_enable} */ readonly broadcastEnable: boolean | cdktf.IResolvable; /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#cluster_id TdmqRocketmqGroup#cluster_id} */ readonly clusterId: string; /** * Group name (8-64 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#group_name TdmqRocketmqGroup#group_name} */ readonly groupName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#id TdmqRocketmqGroup#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; /** * Namespace. Currently, only one namespace is supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#namespace TdmqRocketmqGroup#namespace} */ readonly namespace: string; /** * Whether to enable consumption. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#read_enable TdmqRocketmqGroup#read_enable} */ readonly readEnable: boolean | cdktf.IResolvable; /** * Remarks (up to 128 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#remark TdmqRocketmqGroup#remark} */ readonly remark?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group tencentcloud_tdmq_rocketmq_group} */ export declare class TdmqRocketmqGroup extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_rocketmq_group"; /** * Generates CDKTF code for importing a TdmqRocketmqGroup 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 TdmqRocketmqGroup to import * @param importFromId The id of the existing TdmqRocketmqGroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqRocketmqGroup 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_group tencentcloud_tdmq_rocketmq_group} 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 TdmqRocketmqGroupConfig */ constructor(scope: Construct, id: string, config: TdmqRocketmqGroupConfig); private _broadcastEnable?; get broadcastEnable(): boolean | cdktf.IResolvable; set broadcastEnable(value: boolean | cdktf.IResolvable); get broadcastEnableInput(): any; get clientProtocol(): any; private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get consumerNum(): any; get consumerType(): any; get consumptionMode(): any; get createTime(): any; private _groupName?; get groupName(): string; set groupName(value: string); get groupNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _namespace?; get namespace(): string; set namespace(value: string); get namespaceInput(): string; private _readEnable?; get readEnable(): boolean | cdktf.IResolvable; set readEnable(value: boolean | cdktf.IResolvable); get readEnableInput(): any; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; get retryPartitionNum(): any; get totalAccumulative(): any; get tps(): any; get updateTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }