import * as $dara from '@darabonba/typescript'; export declare class CreateLoginProfileResponseBodyLoginProfile extends $dara.Model { /** * @remarks * Indicates whether the RAM user is required to enable MFA. * * @example * false */ MFABindRequired?: boolean; /** * @remarks * Indicates whether the RAM user must reset the password at the next logon. * * @example * false */ passwordResetRequired?: boolean; /** * @remarks * The status of the initial password. This password is set when a logon configuration is created or when console logon is re-enabled. * * Valid values * * - "NotInitial": The password is not an initial password. * * - "InitialValid": The initial password is valid. * * - "InitialExpired": The initial password has expired. * * @example * NotInitial */ passwordStatus?: string; /** * @remarks * Indicates whether password-based logon for the console is enabled or disabled. * * @example * Active */ status?: string; /** * @remarks * The time when the logon configuration was last updated. * * @example * 2020-10-14T03:47:51Z */ updateDate?: string; /** * @remarks * The logon name of the RAM user. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateLoginProfileResponseBody extends $dara.Model { /** * @remarks * The console logon settings of the RAM user. */ loginProfile?: CreateLoginProfileResponseBodyLoginProfile; /** * @remarks * The request ID. * * @example * 29CB303C-1F05-43A6-A6BC-EBC5A797F8DB */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }