UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 812 B
import { NetworkRoleEnum } from './right/NetworkRoleEnum'; import { RightEnum } from './right/RightEnum'; import { VmNetworkRoleEnum } from './right/VmNetworkRoleEnum'; /** User datacenter right */ export interface Right { /** Determine if the user can add ressources in your VMware on OVHcloud */ canAddRessource: boolean; /** */ datacenterId: number; /** Determine how this user can interact with the VMware on OVHcloud V(x)Lans */ networkRole: NetworkRoleEnum; /** Determine what kind of access the User will have in this Datacenter of your VMware on OVHcloud */ right: RightEnum; /** */ rightId: number; /** Determine how this user can interact with the VMware on OVHcloud VM Network */ vmNetworkRole: VmNetworkRoleEnum; } //# sourceMappingURL=Right.d.ts.map