import * as $dara from '@darabonba/typescript'; /** */ export declare class CreateAccessKeyResponseBodyAccessKey extends $dara.Model { /** * @remarks * The AccessKey ID. * * @example * 0wNEpMMlzy7s**** */ accessKeyId?: string; /** * @remarks * The AccessKey secret. * * @example * PupkTg8jdmau1cXxYacgE736PJ**** */ accessKeySecret?: string; /** * @remarks * The time when the AccessKey pair was created. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * The status of the AccessKey pair. Valid values: Active and Inactive. * * @example * Active */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateAccessKeyResponseBody extends $dara.Model { /** * @remarks * The information about the AccessKey pair. */ accessKey?: CreateAccessKeyResponseBodyAccessKey; /** * @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; }); }