@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 357 B
TypeScript
import { Ipv6 } from '../Ipv6';
import { Ipv6Block } from '../Ipv6Block';
/** Routed subranges within your IP v6 block */
export interface RoutedSubrange {
/** nexthop used as a gateway for your routed subrange */
nexthop: Ipv6;
/** subrange routed into your vrack */
routedSubrange: Ipv6Block;
}
//# sourceMappingURL=RoutedSubrange.d.ts.map