import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudCdnDomainVerifierConfig extends cdktf.TerraformMetaArguments { /** * Specify whether to keep first create result instead of re-create again. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#auto_verify DataTencentcloudCdnDomainVerifier#auto_verify} */ readonly autoVerify?: boolean | cdktf.IResolvable; /** * Specify domain name, e.g. `www.examplexxx123.com`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#domain DataTencentcloudCdnDomainVerifier#domain} */ readonly domain: string; /** * Indicates failed reason of verification. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#failed_reason DataTencentcloudCdnDomainVerifier#failed_reason} */ readonly failedReason?: string; /** * Specify whether the verification record needs to be freeze instead of refresh every 8 hours, this used for domain verification. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#freeze_record DataTencentcloudCdnDomainVerifier#freeze_record} */ readonly freezeRecord?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#id DataTencentcloudCdnDomainVerifier#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; /** * Used for save result json. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#result_output_file DataTencentcloudCdnDomainVerifier#result_output_file} */ readonly resultOutputFile?: string; /** * Specify verify type, values: `dns` (default), `file`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#verify_type DataTencentcloudCdnDomainVerifier#verify_type} */ readonly verifyType?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier tencentcloud_cdn_domain_verifier} */ export declare class DataTencentcloudCdnDomainVerifier extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_cdn_domain_verifier"; /** * Generates CDKTF code for importing a DataTencentcloudCdnDomainVerifier 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 DataTencentcloudCdnDomainVerifier to import * @param importFromId The id of the existing DataTencentcloudCdnDomainVerifier that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cdn_domain_verifier#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudCdnDomainVerifier 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/cdn_domain_verifier tencentcloud_cdn_domain_verifier} 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 DataTencentcloudCdnDomainVerifierConfig */ constructor(scope: Construct, id: string, config: DataTencentcloudCdnDomainVerifierConfig); private _autoVerify?; get autoVerify(): boolean | cdktf.IResolvable; set autoVerify(value: boolean | cdktf.IResolvable); resetAutoVerify(): void; get autoVerifyInput(): any; private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _failedReason?; get failedReason(): string; set failedReason(value: string); resetFailedReason(): void; get failedReasonInput(): string; get fileVerifyDomains(): any; get fileVerifyName(): any; get fileVerifyUrl(): any; private _freezeRecord?; get freezeRecord(): boolean | cdktf.IResolvable; set freezeRecord(value: boolean | cdktf.IResolvable); resetFreezeRecord(): void; get freezeRecordInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get record(): any; get recordType(): any; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; get subDomain(): any; get verifyResult(): any; private _verifyType?; get verifyType(): string; set verifyType(value: string); resetVerifyType(): void; get verifyTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }