import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AutomemberaddConditionConfig extends cdktf.TerraformMetaArguments { /** * Automember rule condition description * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#description AutomemberaddCondition#description} */ readonly description?: string; /** * Regex expression for values that should be excluded. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#exclusiveregex AutomemberaddCondition#exclusiveregex} */ readonly exclusiveregex?: string[]; /** * Regex expression for values that should be included. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#inclusiveregex AutomemberaddCondition#inclusiveregex} */ readonly inclusiveregex?: string[]; /** * Automember rule condition key * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#key AutomemberaddCondition#key} */ readonly key: string; /** * Automember rule condition name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#name AutomemberaddCondition#name} */ readonly name: string; /** * Automember rule condition type * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#type AutomemberaddCondition#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition freeipa_automemberadd_condition} */ export declare class AutomemberaddCondition extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_automemberadd_condition"; /** * Generates CDKTF code for importing a AutomemberaddCondition 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 AutomemberaddCondition to import * @param importFromId The id of the existing AutomemberaddCondition that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd_condition#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AutomemberaddCondition 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/automemberadd_condition freeipa_automemberadd_condition} 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 AutomemberaddConditionConfig */ constructor(scope: Construct, id: string, config: AutomemberaddConditionConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _exclusiveregex?; get exclusiveregex(): string[]; set exclusiveregex(value: string[]); resetExclusiveregex(): void; get exclusiveregexInput(): string[]; get id(): any; private _inclusiveregex?; get inclusiveregex(): string[]; set inclusiveregex(value: string[]); resetInclusiveregex(): void; get inclusiveregexInput(): string[]; private _key?; get key(): string; set key(value: string); get keyInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }