import * as $dara from '@darabonba/typescript'; export declare class GetAccessKeyInfoInRecycleBinResponseBodyAccessKey extends $dara.Model { /** * @remarks * The AccessKey ID. * * @example * LTAI******************* */ accessKeyId?: string; /** * @remarks * The time when the AccessKey pair was created. * * @example * 2020-10-12T09:12:00Z */ createDate?: string; /** * @remarks * The time when the AccessKey pair will be permanently deleted from the recycle bin. * * @example * 2020-11-12T10:12:00Z */ deleteDate?: string; /** * @remarks * The time when the AccessKey pair was deleted and moved to the recycle bin. * * @example * 2020-10-12T10:12:00Z */ recycleDate?: string; /** * @remarks * The ID of the RAM user. * * @example * 20732900249392**** */ userId?: string; /** * @remarks * The logon name of the RAM user. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; /** * @remarks * Indicates whether the RAM user to which the AccessKey pair belongs is in the recycle bin. Valid values: * * - true * * - false * * @example * true */ userRecycled?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetAccessKeyInfoInRecycleBinResponseBody extends $dara.Model { /** * @remarks * The information about the AccessKey pair. */ accessKey?: GetAccessKeyInfoInRecycleBinResponseBodyAccessKey; /** * @remarks * The request ID. * * @example * 4507D1CD-526A-4E2B-A1E2-3AB045D1EE0B */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }