@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 607 B
TypeScript
import { ResourceMetadata } from '../iam/ResourceMetadata';
import { LicenseStatusEnum } from './LicenseStatusEnum';
/** HYCU license State */
export interface StateWithIAM {
/** The latest comment or error message */
comment: string;
/** The HYCU controller ID for this license */
controllerId: string;
/** The license expiration date */
expirationDate: string;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** The license status */
licenseStatus: LicenseStatusEnum;
/** License ID */
serviceName: string;
}
//# sourceMappingURL=StateWithIAM.d.ts.map