import * as $dara from '@darabonba/typescript'; export declare class DescribeBandwidthPackagesRequest extends $dara.Model { /** * @remarks * The ID of the bandwidth package. */ bandwidthPackageId?: string; /** * @remarks * The ID of the nat gateway. If specified, the operation returns only bandwidth packages associated with the specified nat gateway. */ natGatewayId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. Starting value: 1. Default value: 1. */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Valid values: 1 to 100. Default value: 20. */ pageSize?: number; /** * @remarks * The ID of the region where the bandwidth package is located. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }