import * as $dara from '@darabonba/typescript'; export declare class UpdateLoginProfileRequest extends $dara.Model { /** * @remarks * Specifies whether to enforce multi-factor authentication (MFA) for the RAM user. Valid values: * * - true: Enforce MFA. The RAM user must attach an MFA device at the next logon. * * - false: Do not enforce MFA. * * @example * false */ MFABindRequired?: boolean; /** * @remarks * The new console logon password for the RAM user. * * The password must meet the password policy. * * @example * mypassword */ password?: string; /** * @remarks * Specifies whether the RAM user must reset the password at the next logon. Valid values: * * - true * * - false * * @example * false */ passwordResetRequired?: boolean; /** * @remarks * Specifies whether to enable password-based logon to the console. Valid values: * * - Active: Enable * * - Inactive: Disable * * @example * Active */ status?: string; /** * @remarks * The logon name of the RAM user. * * This parameter is required. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }