import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface FreeipaProviderConfig { /** * Path to the server's SSL CA certificate. Can be set through the environment variable `FREEIPA_CA_CERT`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#ca_certificate FreeipaProvider#ca_certificate} */ readonly caCertificate?: string; /** * The FreeIPA host. Can be set through the environment variable `FREEIPA_HOST`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#host FreeipaProvider#host} */ readonly host: string; /** * Whether to verify the server's SSL certificate. Can be set through the environment variable `FREEIPA_INSECURE`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#insecure FreeipaProvider#insecure} */ readonly insecure?: boolean | cdktf.IResolvable; /** * Password to use for connection. Can be set through the environment variable `FREEIPA_PASSWORD`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#password FreeipaProvider#password} */ readonly password?: string; /** * Username to use for connection. Can be set through the environment variable `FREEIPA_USERNAME`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#username FreeipaProvider#username} */ readonly username?: string; /** * Alias name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#alias FreeipaProvider#alias} */ readonly alias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs freeipa} */ export declare class FreeipaProvider extends cdktf.TerraformProvider { static readonly tfResourceType = "freeipa"; /** * Generates CDKTF code for importing a FreeipaProvider 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 FreeipaProvider to import * @param importFromId The id of the existing FreeipaProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/rework-space-com/freeipa/5.2.1/docs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the FreeipaProvider 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 freeipa} 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 FreeipaProviderConfig */ constructor(scope: Construct, id: string, config: FreeipaProviderConfig); private _caCertificate?; get caCertificate(): string | undefined; set caCertificate(value: string | undefined); resetCaCertificate(): void; get caCertificateInput(): string; private _host?; get host(): string | undefined; set host(value: string | undefined); get hostInput(): string; private _insecure?; get insecure(): boolean | cdktf.IResolvable | undefined; set insecure(value: boolean | cdktf.IResolvable | undefined); resetInsecure(): void; get insecureInput(): any; private _password?; get password(): string | undefined; set password(value: string | undefined); resetPassword(): void; get passwordInput(): string; private _username?; get username(): string | undefined; set username(value: string | undefined); resetUsername(): void; get usernameInput(): string; private _alias?; get alias(): string | undefined; set alias(value: string | undefined); resetAlias(): void; get aliasInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }