import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataFreeipaHbacPolicyConfig extends cdktf.TerraformMetaArguments { /** * Name of the hbac policy * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/hbac_policy#name DataFreeipaHbacPolicy#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/hbac_policy freeipa_hbac_policy} */ export declare class DataFreeipaHbacPolicy extends cdktf.TerraformDataSource { static readonly tfResourceType = "freeipa_hbac_policy"; /** * Generates CDKTF code for importing a DataFreeipaHbacPolicy 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 DataFreeipaHbacPolicy to import * @param importFromId The id of the existing DataFreeipaHbacPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/hbac_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataFreeipaHbacPolicy 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/hbac_policy freeipa_hbac_policy} 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 DataFreeipaHbacPolicyConfig */ constructor(scope: Construct, id: string, config: DataFreeipaHbacPolicyConfig); get description(): any; get enabled(): any; get hostcategory(): any; get id(): any; get memberGroup(): any; get memberHost(): any; get memberHostgroup(): any; get memberService(): any; get memberServicegroup(): any; get memberUser(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get servicecategory(): any; get usercategory(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }