import * as $dara from '@darabonba/typescript'; export declare class CreateNetworkInterfacePermissionResponseBodyNetworkInterfacePermission extends $dara.Model { /** * @remarks * The ID of the Alibaba Cloud partner (certified ISV) account. * * @example * 1234567890 */ accountId?: number; /** * @remarks * The ENI ID. * * @example * eni-bp14v2sdd3v8htln**** */ networkInterfaceId?: string; /** * @remarks * The ENI permission ID. * * @example * eni-perm-bp1cs4lwn56lfb**** */ networkInterfacePermissionId?: string; /** * @remarks * The ENI permission. * * @example * InstanceAttach */ permission?: string; /** * @remarks * The ENI permission state. Valid values: * * - Pending: The permission is being granted. * - Granted: The permission has been granted. * - Revoking: The permission is being revoked. * - Revoked: The permission has been revoked. * * @example * Granted */ permissionState?: string; /** * @remarks * The Alibaba Cloud service name. * * @example * Elastic Compute Service */ serviceName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateNetworkInterfacePermissionResponseBody extends $dara.Model { /** * @remarks * The information about the ENI permission. */ networkInterfacePermission?: CreateNetworkInterfacePermissionResponseBodyNetworkInterfacePermission; /** * @remarks * The request ID. * * @example * 0FCD3DEF-63D3-4605-A818-805C8BD7DB87 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }