import { RegionEnum } from '../common/RegionEnum';
import { RegionTypeEnum } from './datacenter/RegionTypeEnum';
/** OVHcloud Connect Datacenter */
export interface Datacenter {
    /** Get availability to add new configuration on it */
    available: boolean;
    /** ID of the datacenter */
    id: number;
    /** name of the datacenter */
    name: string;
    /** region of the datacenter */
    region: RegionEnum;
    /** region type of the datacenter */
    regionType: RegionTypeEnum;
}
//# sourceMappingURL=Datacenter.d.ts.map