@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 780 B
TypeScript
import { HypervisorVersionEnum } from './HypervisorVersionEnum';
import { NetworkRoleEnum } from './right/NetworkRoleEnum';
/** Commercial ranges */
export interface CommercialRange {
/** The hypervisor versions compliant with this commercial Range */
allowedHypervisorVersions: HypervisorVersionEnum[];
/** The list of NetworkRoles allowed for one user in this commercial range */
allowedNetworkRoles: NetworkRoleEnum[];
/** The name of this commercial range */
commercialRangeName: string;
/** The name of the dedicated Cloud version associated to this commercial range */
dedicatedCloudVersion: string;
/** The range of this Datacenter in this VMware on OVHcloud version */
range?: string;
}
//# sourceMappingURL=CommercialRange.d.ts.map