UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

26 lines 917 B
import { Ipv4 } from '../../Ipv4'; import { DirectAdminOsEnum } from '../DirectAdminOsEnum'; import { StateEnum } from '../StateEnum'; import { DirectAdminVersionEnum } from '../DirectAdminVersionEnum'; /** Your DirectAdmin license */ export interface DirectAdmin { /** The client id on license provider side */ clientId: number; /** This license creation date */ creation: string; /** Shall we delete this on expiration ? */ deleteAtExpiration: boolean; /** The internal name of your license */ domain: string; /** The ip on which this license is attached */ ip: Ipv4; /** The license id on license provider side */ licenseId: string; /** This license operating system */ os: DirectAdminOsEnum; /** This license state */ status: StateEnum; /** This license version */ version: DirectAdminVersionEnum; } //# sourceMappingURL=DirectAdmin.d.ts.map