// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { MFABindRequired: 'MFABindRequired', password: 'Password', passwordResetRequired: 'PasswordResetRequired', userName: 'UserName', }; } static types(): { [key: string]: any } { return { MFABindRequired: 'boolean', password: 'string', passwordResetRequired: 'boolean', userName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }