import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GroupConfig extends cdktf.TerraformMetaArguments { /** * Add an attribute/value pair. Format is attr=value. The attribute must be part of the LDAP schema. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#addattr Group#addattr} */ readonly addattr?: string[]; /** * Group Description * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#description Group#description} */ readonly description?: string; /** * Allow adding external non-IPA members from trusted domains * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#external Group#external} */ readonly external?: boolean | cdktf.IResolvable; /** * GID (use this option to set it manually) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#gid_number Group#gid_number} */ readonly gidNumber?: number; /** * Group name * * - The name must not exceed 32 characters. * - The name must contain only lowercase letters (a-z), digits (0-9), and the characters (. - _). * - The name must not start with a special character. * - A user and a group cannot have the same name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#name Group#name} */ readonly name: string; /** * Create as a non-POSIX group * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#nonposix Group#nonposix} */ readonly nonposix?: boolean | cdktf.IResolvable; /** * 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/group#setattr Group#setattr} */ readonly setattr?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group freeipa_group} */ export declare class Group extends cdktf.TerraformResource { static readonly tfResourceType = "freeipa_group"; /** * Generates CDKTF code for importing a Group 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 Group to import * @param importFromId The id of the existing Group that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/resources/group#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Group 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/group freeipa_group} 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 GroupConfig */ constructor(scope: Construct, id: string, config: GroupConfig); 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; private _external?; get external(): boolean | cdktf.IResolvable; set external(value: boolean | cdktf.IResolvable); resetExternal(): void; get externalInput(): any; private _gidNumber?; get gidNumber(): number; set gidNumber(value: number); resetGidNumber(): void; get gidNumberInput(): number; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _nonposix?; get nonposix(): boolean | cdktf.IResolvable; set nonposix(value: boolean | cdktf.IResolvable); resetNonposix(): void; get nonposixInput(): any; private _setattr?; get setattr(): string[]; set setattr(value: string[]); resetSetattr(): void; get setattrInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }