import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudTcmqQueueConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#id DataTencentcloudTcmqQueue#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; /** * For filtering by tag, this parameter must be set to `true`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#is_tag_filter DataTencentcloudTcmqQueue#is_tag_filter} */ readonly isTagFilter?: boolean | cdktf.IResolvable; /** * The number of queues 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_queue#limit DataTencentcloudTcmqQueue#limit} */ readonly limit?: number; /** * Starting position of a queue list to be returned on the current page in case of paginated return. If a value is entered, limit must be specified. 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_queue#offset DataTencentcloudTcmqQueue#offset} */ readonly offset?: number; /** * Filter by QueueName. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#queue_name DataTencentcloudTcmqQueue#queue_name} */ readonly queueName?: string; /** * Filter by CMQ queue name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#queue_name_list DataTencentcloudTcmqQueue#queue_name_list} */ readonly queueNameList?: string[]; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#result_output_file DataTencentcloudTcmqQueue#result_output_file} */ readonly resultOutputFile?: string; /** * filters block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#filters DataTencentcloudTcmqQueue#filters} */ readonly filters?: DataTencentcloudTcmqQueueFilters[] | cdktf.IResolvable; } export interface DataTencentcloudTcmqQueueQueueListDeadLetterPolicy { } export declare function dataTencentcloudTcmqQueueQueueListDeadLetterPolicyToTerraform(struct?: DataTencentcloudTcmqQueueQueueListDeadLetterPolicy): any; export declare function dataTencentcloudTcmqQueueQueueListDeadLetterPolicyToHclTerraform(struct?: DataTencentcloudTcmqQueueQueueListDeadLetterPolicy): any; export declare class DataTencentcloudTcmqQueueQueueListDeadLetterPolicyOutputReference 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(): DataTencentcloudTcmqQueueQueueListDeadLetterPolicy | undefined; set internalValue(value: DataTencentcloudTcmqQueueQueueListDeadLetterPolicy | undefined); get deadLetterQueue(): any; get maxReceiveCount(): any; get maxTimeToLive(): any; get policy(): any; } export declare class DataTencentcloudTcmqQueueQueueListDeadLetterPolicyList 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): DataTencentcloudTcmqQueueQueueListDeadLetterPolicyOutputReference; } export interface DataTencentcloudTcmqQueueQueueListDeadLetterSource { } export declare function dataTencentcloudTcmqQueueQueueListDeadLetterSourceToTerraform(struct?: DataTencentcloudTcmqQueueQueueListDeadLetterSource): any; export declare function dataTencentcloudTcmqQueueQueueListDeadLetterSourceToHclTerraform(struct?: DataTencentcloudTcmqQueueQueueListDeadLetterSource): any; export declare class DataTencentcloudTcmqQueueQueueListDeadLetterSourceOutputReference 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(): DataTencentcloudTcmqQueueQueueListDeadLetterSource | undefined; set internalValue(value: DataTencentcloudTcmqQueueQueueListDeadLetterSource | undefined); get queueId(): any; get queueName(): any; } export declare class DataTencentcloudTcmqQueueQueueListDeadLetterSourceList 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): DataTencentcloudTcmqQueueQueueListDeadLetterSourceOutputReference; } export interface DataTencentcloudTcmqQueueQueueListTags { } export declare function dataTencentcloudTcmqQueueQueueListTagsToTerraform(struct?: DataTencentcloudTcmqQueueQueueListTags): any; export declare function dataTencentcloudTcmqQueueQueueListTagsToHclTerraform(struct?: DataTencentcloudTcmqQueueQueueListTags): any; export declare class DataTencentcloudTcmqQueueQueueListTagsOutputReference 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(): DataTencentcloudTcmqQueueQueueListTags | undefined; set internalValue(value: DataTencentcloudTcmqQueueQueueListTags | undefined); get tagKey(): any; get tagValue(): any; } export declare class DataTencentcloudTcmqQueueQueueListTagsList 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): DataTencentcloudTcmqQueueQueueListTagsOutputReference; } export interface DataTencentcloudTcmqQueueQueueListTransactionPolicy { } export declare function dataTencentcloudTcmqQueueQueueListTransactionPolicyToTerraform(struct?: DataTencentcloudTcmqQueueQueueListTransactionPolicy): any; export declare function dataTencentcloudTcmqQueueQueueListTransactionPolicyToHclTerraform(struct?: DataTencentcloudTcmqQueueQueueListTransactionPolicy): any; export declare class DataTencentcloudTcmqQueueQueueListTransactionPolicyOutputReference 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(): DataTencentcloudTcmqQueueQueueListTransactionPolicy | undefined; set internalValue(value: DataTencentcloudTcmqQueueQueueListTransactionPolicy | undefined); get firstQueryInterval(): any; get maxQueryCount(): any; } export declare class DataTencentcloudTcmqQueueQueueListTransactionPolicyList 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): DataTencentcloudTcmqQueueQueueListTransactionPolicyOutputReference; } export interface DataTencentcloudTcmqQueueQueueListStruct { } export declare function dataTencentcloudTcmqQueueQueueListStructToTerraform(struct?: DataTencentcloudTcmqQueueQueueListStruct): any; export declare function dataTencentcloudTcmqQueueQueueListStructToHclTerraform(struct?: DataTencentcloudTcmqQueueQueueListStruct): any; export declare class DataTencentcloudTcmqQueueQueueListStructOutputReference 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(): DataTencentcloudTcmqQueueQueueListStruct | undefined; set internalValue(value: DataTencentcloudTcmqQueueQueueListStruct | undefined); get activeMsgNum(): any; get bps(): any; get createTime(): any; get createUin(): any; private _deadLetterPolicy; get deadLetterPolicy(): DataTencentcloudTcmqQueueQueueListDeadLetterPolicyList; private _deadLetterSource; get deadLetterSource(): DataTencentcloudTcmqQueueQueueListDeadLetterSourceList; get delayMsgNum(): any; get inactiveMsgNum(): any; get lastModifyTime(): any; get maxDelaySeconds(): any; get maxMsgBacklogSize(): any; get maxMsgHeapNum(): any; get maxMsgSize(): any; get maxUnackedMsgNum(): any; get minMsgTime(): any; get msgRetentionSeconds(): any; get namespaceName(): any; get pollingWaitSeconds(): any; get qps(): any; get queueId(): any; get queueName(): any; get retentionSizeInMb(): any; get rewindMsgNum(): any; get rewindSeconds(): any; get status(): any; private _tags; get tags(): DataTencentcloudTcmqQueueQueueListTagsList; get tenantId(): any; get trace(): any; get transaction(): any; private _transactionPolicy; get transactionPolicy(): DataTencentcloudTcmqQueueQueueListTransactionPolicyList; get visibilityTimeout(): any; } export declare class DataTencentcloudTcmqQueueQueueListStructList 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): DataTencentcloudTcmqQueueQueueListStructOutputReference; } export interface DataTencentcloudTcmqQueueFilters { /** * Filter parameter name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#name DataTencentcloudTcmqQueue#name} */ readonly name?: string; /** * Value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#values DataTencentcloudTcmqQueue#values} */ readonly values?: string[]; } export declare function dataTencentcloudTcmqQueueFiltersToTerraform(struct?: DataTencentcloudTcmqQueueFilters | cdktf.IResolvable): any; export declare function dataTencentcloudTcmqQueueFiltersToHclTerraform(struct?: DataTencentcloudTcmqQueueFilters | cdktf.IResolvable): any; export declare class DataTencentcloudTcmqQueueFiltersOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataTencentcloudTcmqQueueFilters | cdktf.IResolvable | undefined; set internalValue(value: DataTencentcloudTcmqQueueFilters | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _values?; get values(): string[]; set values(value: string[]); resetValues(): void; get valuesInput(): string[]; } export declare class DataTencentcloudTcmqQueueFiltersList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataTencentcloudTcmqQueueFilters[] | cdktf.IResolvable; /** * @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): DataTencentcloudTcmqQueueFiltersOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue tencentcloud_tcmq_queue} */ export declare class DataTencentcloudTcmqQueue extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_tcmq_queue"; /** * Generates CDKTF code for importing a DataTencentcloudTcmqQueue 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 DataTencentcloudTcmqQueue to import * @param importFromId The id of the existing DataTencentcloudTcmqQueue that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/tcmq_queue#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudTcmqQueue 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_queue tencentcloud_tcmq_queue} 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 DataTencentcloudTcmqQueueConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudTcmqQueueConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _isTagFilter?; get isTagFilter(): boolean | cdktf.IResolvable; set isTagFilter(value: boolean | cdktf.IResolvable); resetIsTagFilter(): void; get isTagFilterInput(): any; 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 _queueList; get queueList(): DataTencentcloudTcmqQueueQueueListStructList; private _queueName?; get queueName(): string; set queueName(value: string); resetQueueName(): void; get queueNameInput(): string; private _queueNameList?; get queueNameList(): string[]; set queueNameList(value: string[]); resetQueueNameList(): void; get queueNameListInput(): string[]; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _filters; get filters(): DataTencentcloudTcmqQueueFiltersList; putFilters(value: DataTencentcloudTcmqQueueFilters[] | cdktf.IResolvable): void; resetFilters(): void; get filtersInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }