import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudDnspodRecordsConfig extends cdktf.TerraformMetaArguments { /** * The domain for which DNS records are to be obtained. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#domain DataTencentcloudDnspodRecords#domain} */ readonly domain?: string; /** * The ID of the domain for which DNS records are to be obtained. If DomainId is passed in, the system will omit the parameter domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#domain_id DataTencentcloudDnspodRecords#domain_id} */ readonly domainId?: string; /** * The group ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#group_id DataTencentcloudDnspodRecords#group_id} */ readonly groupId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#id DataTencentcloudDnspodRecords#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 keyword for searching for DNS records. Host headers and record values are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#keyword DataTencentcloudDnspodRecords#keyword} */ readonly keyword?: string; /** * The limit. It defaults to 100 and can be up to 3,000. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#limit DataTencentcloudDnspodRecords#limit} */ readonly limit?: number; /** * The offset. Default value: 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#offset DataTencentcloudDnspodRecords#offset} */ readonly offset?: number; /** * The split zone name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#record_line DataTencentcloudDnspodRecords#record_line} */ readonly recordLine?: string; /** * The split zone ID. If `record_line_id` is passed in, the system will omit the parameter `record_line`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#record_line_id DataTencentcloudDnspodRecords#record_line_id} */ readonly recordLineId?: string; /** * The type of DNS record, such as A, CNAME, NS, AAAA, explicit URL, implicit URL, CAA, or SPF record. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#record_type DataTencentcloudDnspodRecords#record_type} */ readonly recordType?: string; /** * Used for store query result as JSON. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#result_output_file DataTencentcloudDnspodRecords#result_output_file} */ readonly resultOutputFile?: string; /** * The sorting field. Available values: name, line, type, value, weight, mx, and ttl,updated_on. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#sort_field DataTencentcloudDnspodRecords#sort_field} */ readonly sortField?: string; /** * The sorting type. Valid values: ASC (ascending, default), DESC (descending). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#sort_type DataTencentcloudDnspodRecords#sort_type} */ readonly sortType?: string; /** * The host header of a DNS record. If this parameter is passed in, only the DNS record corresponding to this host header will be returned. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#subdomain DataTencentcloudDnspodRecords#subdomain} */ readonly subdomain?: string; } export interface DataTencentcloudDnspodRecordsRecordCountInfo { } export declare function dataTencentcloudDnspodRecordsRecordCountInfoToTerraform(struct?: DataTencentcloudDnspodRecordsRecordCountInfo): any; export declare function dataTencentcloudDnspodRecordsRecordCountInfoToHclTerraform(struct?: DataTencentcloudDnspodRecordsRecordCountInfo): any; export declare class DataTencentcloudDnspodRecordsRecordCountInfoOutputReference 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(): DataTencentcloudDnspodRecordsRecordCountInfo | undefined; set internalValue(value: DataTencentcloudDnspodRecordsRecordCountInfo | undefined); get listCount(): any; get subdomainCount(): any; get totalCount(): any; } export declare class DataTencentcloudDnspodRecordsRecordCountInfoList 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): DataTencentcloudDnspodRecordsRecordCountInfoOutputReference; } export interface DataTencentcloudDnspodRecordsResult { } export declare function dataTencentcloudDnspodRecordsResultToTerraform(struct?: DataTencentcloudDnspodRecordsResult): any; export declare function dataTencentcloudDnspodRecordsResultToHclTerraform(struct?: DataTencentcloudDnspodRecordsResult): any; export declare class DataTencentcloudDnspodRecordsResultOutputReference 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(): DataTencentcloudDnspodRecordsResult | undefined; set internalValue(value: DataTencentcloudDnspodRecordsResult | undefined); get line(): any; get lineId(): any; get monitorStatus(): any; get mx(): any; get name(): any; get recordId(): any; get remark(): any; get status(): any; get ttl(): any; get type(): any; get updatedOn(): any; get value(): any; get weight(): any; } export declare class DataTencentcloudDnspodRecordsResultList 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): DataTencentcloudDnspodRecordsResultOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records tencentcloud_dnspod_records} */ export declare class DataTencentcloudDnspodRecords extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_dnspod_records"; /** * Generates CDKTF code for importing a DataTencentcloudDnspodRecords 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 DataTencentcloudDnspodRecords to import * @param importFromId The id of the existing DataTencentcloudDnspodRecords that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/dnspod_records#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudDnspodRecords 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/dnspod_records tencentcloud_dnspod_records} 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 DataTencentcloudDnspodRecordsConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudDnspodRecordsConfig); private _domain?; get domain(): string; set domain(value: string); resetDomain(): void; get domainInput(): string; private _domainId?; get domainId(): string; set domainId(value: string); resetDomainId(): void; get domainIdInput(): string; private _groupId?; get groupId(): string; set groupId(value: string); resetGroupId(): void; get groupIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _keyword?; get keyword(): string; set keyword(value: string); resetKeyword(): void; get keywordInput(): 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 _recordCountInfo; get recordCountInfo(): DataTencentcloudDnspodRecordsRecordCountInfoList; private _recordLine?; get recordLine(): string; set recordLine(value: string); resetRecordLine(): void; get recordLineInput(): string; private _recordLineId?; get recordLineId(): string; set recordLineId(value: string); resetRecordLineId(): void; get recordLineIdInput(): string; private _recordType?; get recordType(): string; set recordType(value: string); resetRecordType(): void; get recordTypeInput(): string; private _result; get result(): DataTencentcloudDnspodRecordsResultList; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _sortField?; get sortField(): string; set sortField(value: string); resetSortField(): void; get sortFieldInput(): string; private _sortType?; get sortType(): string; set sortType(value: string); resetSortType(): void; get sortTypeInput(): string; private _subdomain?; get subdomain(): string; set subdomain(value: string); resetSubdomain(): void; get subdomainInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }