import * as $dara from '@darabonba/typescript'; export declare class CreateLoginProfileRequest extends $dara.Model { /** * @remarks * Specifies whether the RAM user must bind a multi-factor authentication (MFA) device upon the next logon. Default value: `false`. * * @example * false */ MFABindRequired?: boolean; /** * @remarks * The logon password of the RAM user. The password must meet the password strength requirements. For more information, see [GetPasswordPolicy](https://help.aliyun.com/document_detail/2337691.html). * * @example * mypassword */ password?: string; /** * @remarks * Specifies whether the RAM user has to change the password upon logon. Default value: `false`. * * @example * false */ passwordResetRequired?: boolean; /** * @remarks * The name of the RAM user. * * @example * zhangq**** */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }