UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 741 B
import { Ipv4 } from '../Ipv4'; import { StatusEnum } from './popConfig/StatusEnum'; import { Ipv4Block } from '../Ipv4Block'; import { TypeEnum } from './datacenterExtraConfig/TypeEnum'; /** OVHcloud Connect Service Datacenter Extra Configuration */ export interface DatacenterExtraConfig { /** BGP AS number */ bgpNeighborArea?: number; /** Router IP for BGP */ bgpNeighborIp?: Ipv4; /** ID of the extra configuration */ id: number; /** Static route next hop */ nextHop?: Ipv4; /** Status of the pop configuration */ status: StatusEnum; /** Static route ip */ subnet?: Ipv4Block; /** Type of the configuration */ type: TypeEnum; } //# sourceMappingURL=DatacenterExtraConfig.d.ts.map