import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface HbacPolicyConfig extends cdktf.TerraformMetaArguments { /** * HBAC policy description * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#description HbacPolicy#description} */ readonly description?: string; /** * Enable this hbac policy * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#enabled HbacPolicy#enabled} */ readonly enabled?: boolean | cdktf.IResolvable; /** * Host category the hbac policy is applied to (allowed value: all) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#hostcategory HbacPolicy#hostcategory} */ readonly hostcategory?: string; /** * Name of the hbac policy * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#name HbacPolicy#name} */ readonly name: string; /** * Service category the hbac policy is applied to (allowed value: all) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#servicecategory HbacPolicy#servicecategory} */ readonly servicecategory?: string; /** * User category the hbac policy is applied to (allowed value: all) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy#usercategory HbacPolicy#usercategory} */ readonly usercategory?: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/hbac_policy freeipa_hbac_policy} */ export declare class HbacPolicy extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_hbac_policy"; /** * Generates CDKTF code for importing a HbacPolicy 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 HbacPolicy to import * @param importFromId The id of the existing HbacPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/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 HbacPolicy 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/hbac_policy freeipa_hbac_policy} 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 HbacPolicyConfig */ constructor(scope: Construct, id: string, config: HbacPolicyConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); resetEnabled(): void; get enabledInput(): any; private _hostcategory?; get hostcategory(): string; set hostcategory(value: string); resetHostcategory(): void; get hostcategoryInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _servicecategory?; get servicecategory(): string; set servicecategory(value: string); resetServicecategory(): void; get servicecategoryInput(): string; private _usercategory?; get usercategory(): string; set usercategory(value: string); resetUsercategory(): void; get usercategoryInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }