UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 652 B
import { ResourceMetadata } from '../../iam/ResourceMetadata'; import { StateEnum } from '../StateEnum'; /** Your Hycu license */ export interface HycuWithIAM { /** This license creation date */ creation: string; /** Shall we delete this on expiration ? */ deleteAtExpiration: boolean; /** The internal name of your license */ domain: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** The Hycu license file */ license: string; /** The license id on license provider side */ licenseId: string; /** This license state */ status: StateEnum; } //# sourceMappingURL=HycuWithIAM.d.ts.map