import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MpsuserConfig extends cdktf.TerraformMetaArguments { /** * Enables session timeout for user. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#enable_session_timeout Mpsuser#enable_session_timeout} */ readonly enableSessionTimeout?: boolean | cdktf.IResolvable; /** * Enable external authentication. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#external_authentication Mpsuser#external_authentication} */ readonly externalAuthentication?: boolean | cdktf.IResolvable; /** * Groups to which user belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#groups Mpsuser#groups} */ readonly groups: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#id Mpsuser#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * User Name. Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#name Mpsuser#name} */ readonly name: string; /** * Password. Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#password Mpsuser#password} */ readonly password: string; /** * Session timeout for the user. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#session_timeout Mpsuser#session_timeout} */ readonly sessionTimeout?: number; /** * Session timeout unit for the user. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#session_timeout_unit Mpsuser#session_timeout_unit} */ readonly sessionTimeoutUnit?: string; /** * Tenant Id of the system users. Minimum length = 1 Maximum length = 128 * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#tenant_id Mpsuser#tenant_id} */ readonly tenantId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser netscalersdx_mpsuser} */ export declare class Mpsuser extends cdktf.TerraformResource { static readonly tfResourceType = "netscalersdx_mpsuser"; /** * Generates CDKTF code for importing a Mpsuser 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 Mpsuser to import * @param importFromId The id of the existing Mpsuser that should be imported. Refer to the {@link https://registry.terraform.io/providers/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Mpsuser 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/netscaler/netscalersdx/0.7.2/docs/resources/mpsuser netscalersdx_mpsuser} 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 MpsuserConfig */ constructor(scope: Construct, id: string, config: MpsuserConfig); private _enableSessionTimeout?; get enableSessionTimeout(): boolean | cdktf.IResolvable; set enableSessionTimeout(value: boolean | cdktf.IResolvable); resetEnableSessionTimeout(): void; get enableSessionTimeoutInput(): any; private _externalAuthentication?; get externalAuthentication(): boolean | cdktf.IResolvable; set externalAuthentication(value: boolean | cdktf.IResolvable); resetExternalAuthentication(): void; get externalAuthenticationInput(): any; private _groups?; get groups(): string[]; set groups(value: string[]); get groupsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _password?; get password(): string; set password(value: string); get passwordInput(): string; private _sessionTimeout?; get sessionTimeout(): number; set sessionTimeout(value: number); resetSessionTimeout(): void; get sessionTimeoutInput(): number; private _sessionTimeoutUnit?; get sessionTimeoutUnit(): string; set sessionTimeoutUnit(value: string); resetSessionTimeoutUnit(): void; get sessionTimeoutUnitInput(): string; private _tenantId?; get tenantId(): string; set tenantId(value: string); resetTenantId(): void; get tenantIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }