import * as $dara from '@darabonba/typescript'; export declare class DeleteKeyPairsRequest extends $dara.Model { /** * @remarks * The names of SSH key pairs. The value can be a JSON array that consists of up to 100 SSH key pair names. Separate multiple names with commas (,). * * >Before you delete SSH key pairs, you can call [DescribeKeyPairs](https://help.aliyun.com/document_detail/51773.html) to query existing key pairs. * * This parameter is required. * * @example * ["TestKeyPairName-1", "TestKeyPairName-2", … "TestKeyPairName-100"] */ keyPairNames?: string; ownerId?: number; /** * @remarks * The region where the SSH key pairs reside. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }