import * as $dara from '@darabonba/typescript'; export declare class UpdateAccessKeyRequest extends $dara.Model { /** * @remarks * The status of the AccessKey pair. Valid values: `Active` and `Inactive`. * * @example * Inactive */ status?: string; /** * @remarks * The AccessKey ID in the AccessKey pair whose status you want to change.`` * * @example * 0wNEpMMlzy7s**** */ userAccessKeyId?: string; /** * @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; }); }