import { RegionAvailability } from './RegionAvailability';
/** Cluster availability */
export interface Availability {
    /** 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 datacenter */
    regions: RegionAvailability[];
    /** 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=Availability.d.ts.map