import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AutomemberaddConfig extends cdktf.TerraformMetaArguments { /** * Add an attribute/value pair. Format is attr=value. The attribute must be part of the schema. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#addattr Automemberadd#addattr} */ readonly addattr?: string[]; /** * Automember rule description * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#description Automemberadd#description} */ readonly description?: string; /** * Automember rule name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#name Automemberadd#name} */ readonly name: string; /** * Set an attribute to a name/value pair. Format is attr=value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#setattr Automemberadd#setattr} */ readonly setattr?: string[]; /** * Automember rule type * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#type Automemberadd#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd freeipa_automemberadd} */ export declare class Automemberadd extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_automemberadd"; /** * Generates CDKTF code for importing a Automemberadd 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 Automemberadd to import * @param importFromId The id of the existing Automemberadd that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/automemberadd#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Automemberadd 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 freeipa_automemberadd} 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 AutomemberaddConfig */ constructor(scope: Construct, id: string, config: AutomemberaddConfig); private _addattr?; get addattr(): string[]; set addattr(value: string[]); resetAddattr(): void; get addattrInput(): string[]; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _setattr?; get setattr(): string[]; set setattr(value: string[]); resetSetattr(): void; get setattrInput(): string[]; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }