import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PrivateDnsRecordConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#id PrivateDnsRecord#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; /** * MX priority, which is required when the record type is MX. Valid values: 5, 10, 15, 20, 30, 40, 50. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#mx PrivateDnsRecord#mx} */ readonly mx?: number; /** * Record type. Valid values: `A`, `AAAA`, `CNAME`, `MX`, `TXT`, `PTR`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#record_type PrivateDnsRecord#record_type} */ readonly recordType: string; /** * Record value, such as IP: 192.168.10.2, CNAME: cname.qcloud.com, and MX: mail.qcloud.com. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#record_value PrivateDnsRecord#record_value} */ readonly recordValue: string; /** * Record status. Valid values: `enabled`, `disabled`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#status PrivateDnsRecord#status} */ readonly status?: string; /** * Subdomain, such as `www`, `m`, and `@`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#sub_domain PrivateDnsRecord#sub_domain} */ readonly subDomain: string; /** * Record cache time. The smaller the value, the faster the record will take effect. Value range: 1~86400s. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#ttl PrivateDnsRecord#ttl} */ readonly ttl?: number; /** * Record weight. Value range: 1~100. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#weight PrivateDnsRecord#weight} */ readonly weight?: number; /** * Private domain ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#zone_id PrivateDnsRecord#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record tencentcloud_private_dns_record} */ export declare class PrivateDnsRecord extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_private_dns_record"; /** * Generates CDKTF code for importing a PrivateDnsRecord 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 PrivateDnsRecord to import * @param importFromId The id of the existing PrivateDnsRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_record#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PrivateDnsRecord 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/private_dns_record tencentcloud_private_dns_record} 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 PrivateDnsRecordConfig */ constructor(scope: Construct, id: string, config: PrivateDnsRecordConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _mx?; get mx(): number; set mx(value: number); resetMx(): void; get mxInput(): number; private _recordType?; get recordType(): string; set recordType(value: string); get recordTypeInput(): string; private _recordValue?; get recordValue(): string; set recordValue(value: string); get recordValueInput(): string; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; private _subDomain?; get subDomain(): string; set subDomain(value: string); get subDomainInput(): string; private _ttl?; get ttl(): number; set ttl(value: number); resetTtl(): void; get ttlInput(): number; private _weight?; get weight(): number; set weight(value: number); resetWeight(): void; get weightInput(): number; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }