import { AvailabilityByRegion } from './AvailabilityByRegion';
/** A structure describing the availabilities of dedicated server */
export interface RegionAvailability {
    /** Fully qualified and unique name of the hardware */
    fqn: string;
    /** Name of the gpu hardware part */
    gpu?: string;
    /** Name of the memory hardware part */
    memory?: string;
    /** Plan code in which the hardware is involved */
    planCode: string;
    /** The hardware availability for each region */
    regions?: AvailabilityByRegion[];
    /** 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=RegionAvailability.d.ts.map