@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 379 B
TypeScript
import { IpInfo } from './IpInfo';
import { LinkInfo } from './LinkInfo';
/** A structure describing the Bay`s network configuration */
export interface NetworkInfo {
/** IPv4 network information */
ipv4?: IpInfo;
/** IPv6 network information */
ipv6?: IpInfo;
/** Router related information */
link?: LinkInfo;
}
//# sourceMappingURL=NetworkInfo.d.ts.map