import { StatusEnum } from './popConfig/StatusEnum';
import { Ipv4Block } from '../Ipv4Block';
import { TypeEnum } from './popConfig/TypeEnum';
/** OVHcloud Connect Service Pop Configuration */
export interface PopConfig {
    /** Customer Private AS */
    customerBgpArea?: number;
    /** ID of the Pop Configuration */
    id: number;
    /** ID of the interface */
    interfaceId: number;
    /** OVH Private AS */
    ovhBgpArea?: number;
    /** Status of the pop configuration */
    status: StatusEnum;
    /** Subnet should be a /30, first IP for OVH, second IP for customer */
    subnet?: Ipv4Block;
    /** Type of the pop configuration */
    type: TypeEnum;
}
//# sourceMappingURL=PopConfig.d.ts.map