import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataFreeipaUserConfig extends cdktf.TerraformMetaArguments { /** * UID or Login * * - 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/data-sources/user#name DataFreeipaUser#name} */ readonly name: string; /** * State of the account to lookup. Can be `active`, `disabled`, `staged` or `preserved` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/user#state DataFreeipaUser#state} */ readonly state?: string; /** * List of Base-64 encoded user certificates * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/user#user_certificates DataFreeipaUser#user_certificates} */ readonly userCertificates?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/user freeipa_user} */ export declare class DataFreeipaUser extends cdktf.TerraformDataSource { static readonly tfResourceType = "freeipa_user"; /** * Generates CDKTF code for importing a DataFreeipaUser 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 DataFreeipaUser to import * @param importFromId The id of the existing DataFreeipaUser that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs/data-sources/user#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataFreeipaUser 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/user freeipa_user} 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 DataFreeipaUserConfig */ constructor(scope: Construct, id: string, config: DataFreeipaUserConfig); get accountDisabled(): any; get accountPreserved(): any; get accountStaged(): any; get carLicense(): any; get city(): any; get displayName(): any; get emailAddress(): any; get employeeNumber(): any; get employeeType(): any; get firstName(): any; get fullName(): any; get gecos(): any; get gidNumber(): any; get homeDirectory(): any; get id(): any; get initials(): any; get jobTitle(): any; get krbPasswordExpiration(): any; get krbPrincipalExpiration(): any; get krbPrincipalName(): any; get lastName(): any; get loginShell(): any; get manager(): any; get memberofGroup(): any; get memberofHbacrule(): any; get memberofIndirectGroup(): any; get memberofIndirectHbacrule(): any; get memberofIndirectSudorule(): any; get memberofSudorule(): any; get mobileNumbers(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get organisationUnit(): any; get postalCode(): any; get preferredLanguage(): any; get province(): any; get randomPassword(): any; get sshPublicKey(): any; private _state?; get state(): string; set state(value: string); resetState(): void; get stateInput(): string; get streetAddress(): any; get telephoneNumbers(): any; get uidNumber(): any; private _userCertificates?; get userCertificates(): string[]; set userCertificates(value: string[]); resetUserCertificates(): void; get userCertificatesInput(): string[]; get userclass(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }