import * as $dara from '@darabonba/typescript'; export declare class DescribeVSwitchesRequest extends $dara.Model { /** * @remarks * Specifies whether the vSwitch is the default vSwitch in the zone. Valid values: * * - `true` * - `false` */ isDefault?: boolean; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number to return. * * Default value: 1. */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Valid values: 1 to 50. * * Default value: 10. */ pageSize?: number; /** * @remarks * The ID of the region where the vSwitches are located. To query the latest list of regions, call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the vSwitch. */ vSwitchId?: string; /** * @remarks * The ID of the VPC. */ vpcId?: string; /** * @remarks * The ID of the zone. */ zoneId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }