import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataFreeipaHostConfig extends cdktf.TerraformMetaArguments { /** * Host fully qualified name * * - May contain only letters, numbers, '-'. * - DNS label may not start or end with '-' * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/host#name DataFreeipaHost#name} */ readonly name: string; /** * Client credentials may be delegated to the service * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/host#trusted_for_delegation DataFreeipaHost#trusted_for_delegation} */ readonly trustedForDelegation?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/host freeipa_host} */ export declare class DataFreeipaHost extends cdktf.TerraformDataSource { static readonly tfResourceType = "freeipa_host"; /** * Generates CDKTF code for importing a DataFreeipaHost 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 DataFreeipaHost to import * @param importFromId The id of the existing DataFreeipaHost that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/host#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataFreeipaHost 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/host freeipa_host} 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 DataFreeipaHostConfig */ constructor(scope: Construct, id: string, config: DataFreeipaHostConfig); get assignedIdview(): any; get description(): any; get id(): any; get ipasshpubkeys(): any; get krbAuthIndicators(): any; get krbPreauth(): any; get locality(): any; get location(): any; get macAddresses(): any; get memberofHbacrule(): any; get memberofHostgroup(): any; get memberofIndirectHbacrule(): any; get memberofIndirectHostgroup(): any; get memberofIndirectSudorule(): any; get memberofSudorule(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get operatingSystem(): any; get platform(): any; private _trustedForDelegation?; get trustedForDelegation(): boolean | cdktf.IResolvable; set trustedForDelegation(value: boolean | cdktf.IResolvable); resetTrustedForDelegation(): void; get trustedForDelegationInput(): any; get trustedToAuthAsDelegate(): any; get userCertificates(): any; get userclass(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }