import * as $dara from '@darabonba/typescript'; export declare class CreateNatGatewayRequestBandwidthPackage extends $dara.Model { bandwidth?: number; ipCount?: number; zone?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateNatGatewayRequest extends $dara.Model { /** * @remarks * This parameter is required. */ bandwidthPackage?: CreateNatGatewayRequestBandwidthPackage[]; clientToken?: string; description?: string; name?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * This parameter is required. */ vpcId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }