import { AvailabilityDatacenter } from './AvailabilityDatacenter';
/** A structure describing the availabilities of dedicated server */
export interface DatacenterAvailability {
    /** The hardware availability for each datacenter */
    datacenters: AvailabilityDatacenter[];
    /** 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;
    /** 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=DatacenterAvailability.d.ts.map