UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 770 B
import { ResourceMetadata } from '../../iam/ResourceMetadata'; import { Ipv4 } from '../../Ipv4'; import { StateEnum } from '../StateEnum'; import { CloudLinuxVersionEnum } from '../CloudLinuxVersionEnum'; /** Your CloudLinux license */ export interface CloudLinuxWithIAM { /** This license creation date */ creation: string; /** The internal name of your license */ domain: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** 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: CloudLinuxVersionEnum; } //# sourceMappingURL=CloudLinuxWithIAM.d.ts.map