UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 349 B
import { Ip } from '../../Ip'; /** IpAddress */ export interface IpAddress { /** Gateway IP */ gatewayIp?: Ip; /** Instance IP address */ ip: string; /** Network ID */ networkId: string; /** Instance IP address type */ type: string; /** IP version */ version: number; } //# sourceMappingURL=IpAddress.d.ts.map