@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 627 B
TypeScript
import { Ipv4 } from '../../Ipv4';
import { StateEnum } from '../StateEnum';
import { SqlServerVersionEnum } from '../SqlServerVersionEnum';
/** Your SQL Server license */
export interface SqlServer {
/** This license creation date */
creation: string;
/** 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 state */
status: StateEnum;
/** This license version */
version: SqlServerVersionEnum;
}
//# sourceMappingURL=SqlServer.d.ts.map