import * as $dara from '@darabonba/typescript'; export declare class DescribeNatGatewaysRequest extends $dara.Model { /** * @remarks * The ID of the nat gateway. */ natGatewayId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. Default: 1. */ pageNumber?: number; /** * @remarks * The number of entries per page. The valid range is 1 to 100. Default: 10. */ pageSize?: number; /** * @remarks * The ID of the region to which the nat gateways belong. Call the DescribeRegions operation to obtain the latest region list. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the VPC to which the nat gateway belongs. */ vpcId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }