import { CommercialNameEnum } from './CommercialNameEnum';
/** Virtual datacenter */
export interface Datacenter {
    /** The commercial name of this Datacenter */
    commercialName: CommercialNameEnum;
    /** The commercial range associated to this Datacenter */
    commercialRangeName: string;
    /** Id of the Datacenter */
    datacenterId: number;
    /**  */
    description: string;
    /** Name of the associated Horizon View service if the VDI option is enabled */
    horizonViewName?: string;
    /** Check if this datacenter is removable (Need to be Empty) */
    isRemovable: boolean;
    /**  */
    name: string;
    /** Os version installed on your VMware on OVHcloud */
    version: string;
}
//# sourceMappingURL=Datacenter.d.ts.map