@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 440 B
TypeScript
/** Engine version */
export interface EngineVersion {
/** List of region available of the version */
availableRegions: string[];
/** Description of the engine */
description: string;
/** End of life of this engine version */
endOfLife?: string;
/** End of support of this engine version */
endOfSupport?: string;
/** Name of the version */
name: string;
}
//# sourceMappingURL=EngineVersion.d.ts.map