import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DnsRecordConfig extends cdktf.TerraformMetaArguments { /** * Record name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#name DnsRecord#name} */ readonly name: string; /** * A string list of records * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#records DnsRecord#records} */ readonly records: string[]; /** * Unique identifier to differentiate records with routing policies from one another * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#set_identifier DnsRecord#set_identifier} */ readonly setIdentifier?: string; /** * Time to live * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#ttl DnsRecord#ttl} */ readonly ttl?: number; /** * The record type (A, AAAA, CNAME, MX, PTR, SRV, TXT, SSHFP, NS) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#type DnsRecord#type} */ readonly type: string; /** * Zone name (FQDN) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record#zone_name DnsRecord#zone_name} */ readonly zoneName: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/dns_record freeipa_dns_record} */ export declare class DnsRecord extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_dns_record"; /** * Generates CDKTF code for importing a DnsRecord 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 DnsRecord to import * @param importFromId The id of the existing DnsRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/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 DnsRecord 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/rework-space-com/freeipa/5.2.1/docs/resources/dns_record freeipa_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 DnsRecordConfig */ constructor(scope: Construct, id: string, config: DnsRecordConfig); get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _records?; get records(): string[]; set records(value: string[]); get recordsInput(): string[]; private _setIdentifier?; get setIdentifier(): string; set setIdentifier(value: string); resetSetIdentifier(): void; get setIdentifierInput(): string; private _ttl?; get ttl(): number; set ttl(value: number); resetTtl(): void; get ttlInput(): number; private _type?; get type(): string; set type(value: string); get typeInput(): string; private _zoneName?; get zoneName(): string; set zoneName(value: string); get zoneNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }