import * as $dara from '@darabonba/typescript'; export declare class CreateNetworkInterfacePermissionRequest extends $dara.Model { /** * @remarks * The ID of the Alibaba Cloud partner (a certified ISV) or individual user. * * This parameter is required. * * @example * 1234567890 */ accountId?: number; /** * @remarks * The ID of the ENI. * * This parameter is required. * * @example * eni-bp14v2sdd3v8htln**** */ networkInterfaceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The permission on the ENI. Valid values: * * InstanceAttach: the permission to attach the ENI to an ECS instance. The ENI and the ECS instance must be in the same zone. * * This parameter is required. * * @example * InstanceAttach */ permission?: string; /** * @remarks * The region ID of the ENI. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation 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; }); }