import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudTcmqSubscribeConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#id DataTencentcloudTcmqSubscribe#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; /** * Number of topics to be returned per page in case of paginated return. If this parameter is not passed in, 20 will be used by default. Maximum value: 50. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#limit DataTencentcloudTcmqSubscribe#limit} */ readonly limit?: number; /** * Starting position of the list of topics to be returned on the current page in case of paginated return. If a value is entered, limit is required. If this parameter is left empty, 0 will be used by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#offset DataTencentcloudTcmqSubscribe#offset} */ readonly offset?: number; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#result_output_file DataTencentcloudTcmqSubscribe#result_output_file} */ readonly resultOutputFile?: string; /** * Fuzzy search by SubscriptionName. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#subscription_name DataTencentcloudTcmqSubscribe#subscription_name} */ readonly subscriptionName?: string; /** * Topic name, which must be unique in the same topic under the same account in the same region. It can contain up to 64 letters, digits, and hyphens and must begin with a letter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#topic_name DataTencentcloudTcmqSubscribe#topic_name} */ readonly topicName: string; } export interface DataTencentcloudTcmqSubscribeSubscriptionListStruct { } export declare function dataTencentcloudTcmqSubscribeSubscriptionListStructToTerraform(struct?: DataTencentcloudTcmqSubscribeSubscriptionListStruct): any; export declare function dataTencentcloudTcmqSubscribeSubscriptionListStructToHclTerraform(struct?: DataTencentcloudTcmqSubscribeSubscriptionListStruct): any; export declare class DataTencentcloudTcmqSubscribeSubscriptionListStructOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudTcmqSubscribeSubscriptionListStruct | undefined; set internalValue(value: DataTencentcloudTcmqSubscribeSubscriptionListStruct | undefined); get bindingKey(): any; get createTime(): any; get endpoint(): any; get filterTags(): any; get lastModifyTime(): any; get msgCount(): any; get notifyContentFormat(): any; get notifyStrategy(): any; get protocol(): any; get subscriptionId(): any; get subscriptionName(): any; get topicOwner(): any; } export declare class DataTencentcloudTcmqSubscribeSubscriptionListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudTcmqSubscribeSubscriptionListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe tencentcloud_tcmq_subscribe} */ export declare class DataTencentcloudTcmqSubscribe extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_tcmq_subscribe"; /** * Generates CDKTF code for importing a DataTencentcloudTcmqSubscribe 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 DataTencentcloudTcmqSubscribe to import * @param importFromId The id of the existing DataTencentcloudTcmqSubscribe that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_subscribe#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudTcmqSubscribe 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/data-sources/tcmq_subscribe tencentcloud_tcmq_subscribe} Data Source * * @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 DataTencentcloudTcmqSubscribeConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudTcmqSubscribeConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _limit?; get limit(): number; set limit(value: number); resetLimit(): void; get limitInput(): number; private _offset?; get offset(): number; set offset(value: number); resetOffset(): void; get offsetInput(): number; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _subscriptionList; get subscriptionList(): DataTencentcloudTcmqSubscribeSubscriptionListStructList; private _subscriptionName?; get subscriptionName(): string; set subscriptionName(value: string); resetSubscriptionName(): void; get subscriptionNameInput(): string; private _topicName?; get topicName(): string; set topicName(value: string); get topicNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }