import { Ipv4Block } from '../Ipv4Block';
import { StatusEnum } from './popConfig/StatusEnum';
/** OVHcloud Connect Service Datacenter Configuration */
export interface DatacenterConfig {
    /** ID of the datacenter linked */
    datacenterId: number;
    /** ID of the Datacenter configuration */
    id: number;
    /** OVH Private AS */
    ovhBgpArea?: number;
    /** Status of the pop configuration */
    status: StatusEnum;
    /** Subnet should be a /28 min */
    subnet?: Ipv4Block;
}
//# sourceMappingURL=DatacenterConfig.d.ts.map