import * as $dara from '@darabonba/typescript'; export declare class DescribeNetworkInterfacePermissionsRequest extends $dara.Model { /** * @remarks * The ID of the network interface controller (NIC). You must specify `NetworkInterfaceId` or `NetworkInterfacePermissionId.N` to determine the query scope. * * @example * eni-bp17pdijfczax**** */ networkInterfaceId?: string; /** * @remarks * The list of NIC permission IDs. Number of elements in the list: 1 to 100. * * @example * eni-perm-bp1cs4lwn56lfb**** */ networkInterfacePermissionId?: string[]; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number of the NIC permission list. * * Minimum value: 1 * * Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page for a paged query. * * Maximum value: 100 * * Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The region of the network interface controller (NIC) permissions. You can call [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }