import * as $dara from '@darabonba/typescript'; export declare class CreateNatGatewayRequestBandwidthPackage extends $dara.Model { /** * @remarks * The peak bandwidth for the EIPs in the bandwidth package. Unit: Mbit/s. */ bandwidth?: number; /** * @remarks * The number of EIPs to create in the bandwidth package. Valid values: 1 to 10. */ ipCount?: number; /** * @remarks * The ID of the zone in which to create the EIPs. If you do not specify a zone, the system randomly selects one. */ 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 * Configurations for the bandwidth packages to create and associate with the nat gateway. * * This parameter is required. */ bandwidthPackage?: CreateNatGatewayRequestBandwidthPackage[]; /** * @remarks * A client token to ensure the idempotence of the request. * * This token is client-generated and must be unique for each request. The token can contain only ASCII characters and cannot exceed 64 characters in length. */ clientToken?: string; /** * @remarks * A description of the nat gateway. * * The description must be 2 to 256 characters in length. It must start with a letter or a Chinese character but cannot start with `http://` or `https://`. */ description?: string; /** * @remarks * A name for the nat gateway. * * The name must be 2 to 128 characters in length. It must start with a letter or a Chinese character but cannot start with `http://` or `https://`. */ name?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region in which to create the nat gateway. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the VPC in which to create the nat gateway. * * This parameter is required. */ vpcId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }