import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataFreeipaDnsZoneConfig extends cdktf.TerraformMetaArguments { /** * Zone name (FQDN) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_zone#zone_name DataFreeipaDnsZone#zone_name} */ readonly zoneName: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_zone freeipa_dns_zone} */ export declare class DataFreeipaDnsZone extends cdktf.TerraformDataSource { static readonly tfResourceType = "freeipa_dns_zone"; /** * Generates CDKTF code for importing a DataFreeipaDnsZone 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 DataFreeipaDnsZone to import * @param importFromId The id of the existing DataFreeipaDnsZone that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/dns_zone#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataFreeipaDnsZone 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_zone freeipa_dns_zone} 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 DataFreeipaDnsZoneConfig */ constructor(scope: Construct, id: string, config: DataFreeipaDnsZoneConfig); get adminEmailAddress(): any; get allowInlineDnssecSigning(): any; get allowPrtSync(): any; get allowQuery(): any; get allowTransfer(): any; get authoritativeNameserver(): any; get bindUpdatePolicy(): any; get defaultTtl(): any; get disableZone(): any; get dynamicUpdates(): any; get id(): any; get nsec3ParamRecord(): any; get skipNameserverCheck(): any; get skipOverlapCheck(): any; get soaExpire(): any; get soaMinimum(): any; get soaRefresh(): any; get soaRetry(): any; get soaSerialNumber(): any; get ttl(): any; get zoneForwarders(): any; private _zoneName?; get zoneName(): string; set zoneName(value: string); get zoneNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }