UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 390 B
import { Ipv4 } from '../../Ipv4'; import { Ipv4Block } from '../../Ipv4Block'; /** A structure describing IPv4 routing informations about this dedicated server */ export interface RoutingDetailsIpv4 { /** Server gateway */ gateway?: Ipv4; /** Server main IP */ ip?: Ipv4; /** Server network */ network?: Ipv4Block; } //# sourceMappingURL=RoutingDetailsIpv4.d.ts.map