import * as $dara from '@darabonba/typescript'; export declare class ReleaseCapacityReservationRequestPrivatePoolOptions extends $dara.Model { /** * @remarks * The ID of the capacity reservation. * * This parameter is required. * * @example * crp-bp67acfmxazb4**** */ id?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ReleaseCapacityReservationRequest extends $dara.Model { privatePoolOptions?: ReleaseCapacityReservationRequestPrivatePoolOptions; /** * @remarks * Specifies whether to perform only a dry run, without performing the actual request. Set the value to false. This indicates that the system directly releases the capacity reservation. * * @example * false */ dryRun?: boolean; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the capacity reservation. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation 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; }); }