UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

28 lines 1.03 kB
import { VirtuozzoContainerNumberEnum } from '../VirtuozzoContainerNumberEnum'; import { Ipv4 } from '../../Ipv4'; import { StateEnum } from '../StateEnum'; import { VirtuozzoVersionEnum } from '../VirtuozzoVersionEnum'; /** Your Virtuozzo license */ export interface Virtuozzo { /** The amount of containers this license can manage */ containerNumber: VirtuozzoContainerNumberEnum; /** This license creation date */ creation: string; /** Shall we delete this on expiration ? */ deleteAtExpiration: boolean; /** The internal name of your license */ domain: string; /** This license Information key */ informationKey?: string; /** The ip on which this license is attached */ ip: Ipv4; /** The license id on license provider side */ licenseId: string; /** This license product key */ productKey?: string; /** This license state */ status: StateEnum; /** This license version */ version: VirtuozzoVersionEnum; } //# sourceMappingURL=Virtuozzo.d.ts.map