@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 808 B
TypeScript
import { AvailabilitiesRawRegion } from './AvailabilitiesRawRegion';
/** Cluster availability */
export interface AvailabilitiesRaw {
/** Plan code in which the hardware is involved */
clusterPlanCode: string;
/** Fully qualified name and unique name of the hardware */
fqn: string;
/** Name of the memory hardware part */
memory: string;
/** Plan code in which the hardware is involved */
planCode: string;
/** A structure describing the hardware availability for each region */
regions: AvailabilitiesRawRegion[];
/** Name of the base hardware */
server: string;
/** Name of the storage hardware part */
storage: string;
/** Name of the system storage hardware part */
systemStorage?: string;
}
//# sourceMappingURL=AvailabilitiesRaw.d.ts.map