import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataFreeipaDnsRecordConfig extends cdktf.TerraformMetaArguments { /** * Record name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_record#record_name DataFreeipaDnsRecord#record_name} */ readonly recordName: string; /** * Zone name (FQDN) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_record#zone_name DataFreeipaDnsRecord#zone_name} */ readonly zoneName: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_record freeipa_dns_record} */ export declare class DataFreeipaDnsRecord extends cdktf.TerraformDataSource { static readonly tfResourceType = "freeipa_dns_record"; /** * Generates CDKTF code for importing a DataFreeipaDnsRecord 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 DataFreeipaDnsRecord to import * @param importFromId The id of the existing DataFreeipaDnsRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/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 DataFreeipaDnsRecord 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/data-sources/dns_record freeipa_dns_record} 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 DataFreeipaDnsRecordConfig */ constructor(scope: Construct, id: string, config: DataFreeipaDnsRecordConfig); get id(): any; private _recordName?; get recordName(): string; set recordName(value: string); get recordNameInput(): string; private _zoneName?; get zoneName(): string; set zoneName(value: string); get zoneNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }