import * as $dara from '@darabonba/typescript'; export declare class GetLoginProfileResponseBodyLoginProfile extends $dara.Model { /** * @remarks * The creation time. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * Indicates whether a multi-factor authentication (MFA) device must be bound to the RAM user. * * @example * true */ MFABindRequired?: boolean; /** * @remarks * Indicates whether the RAM user must change the password upon logon. * * @example * true */ 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; }); } export declare class GetLoginProfileResponseBody extends $dara.Model { /** * @remarks * The logon configurations of the RAM user. */ loginProfile?: GetLoginProfileResponseBodyLoginProfile; /** * @remarks * The request ID. * * @example * 04F0F334-1335-436C-A1D7-6C044FE73368 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }