import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DnspodDomainLockConfig extends cdktf.TerraformMetaArguments { /** * Domain name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dnspod_domain_lock#domain DnspodDomainLock#domain} */ readonly domain: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dnspod_domain_lock#id DnspodDomainLock#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 number of max days to lock the domain+ Old packages: D_FREE 30 days, D_PLUS 90 days, D_EXTRA 30 days, D_EXPERT 60 days, D_ULTRA 365 days+ New packages: DP_FREE 365 days, DP_PLUS 365 days, DP_EXTRA 365 days, DP_EXPERT 365 days, DP_ULTRA 365 days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dnspod_domain_lock#lock_days DnspodDomainLock#lock_days} */ readonly lockDays: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dnspod_domain_lock tencentcloud_dnspod_domain_lock} */ export declare class DnspodDomainLock extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dnspod_domain_lock"; /** * Generates CDKTF code for importing a DnspodDomainLock 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 DnspodDomainLock to import * @param importFromId The id of the existing DnspodDomainLock that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dnspod_domain_lock#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DnspodDomainLock 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/dnspod_domain_lock tencentcloud_dnspod_domain_lock} 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 DnspodDomainLockConfig */ constructor(scope: Construct, id: string, config: DnspodDomainLockConfig); private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get lockCode(): any; private _lockDays?; get lockDays(): number; set lockDays(value: number); get lockDaysInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }