UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 570 B
import { GeolocationEnum } from './ip/GeolocationEnum'; import { TypeEnum } from './ip/TypeEnum'; import { IpVersionEnum } from '../coreTypes/IpVersionEnum'; /** Information about an IP address for a VPS Virtual Machine */ export interface Ip { /** */ gateway?: Ip; /** */ geolocation: GeolocationEnum; /** The effective ip address of the Ip object */ ipAddress: Ip; /** */ macAddress?: string; /** */ reverse?: string; /** */ type: TypeEnum; /** */ version: IpVersionEnum; } //# sourceMappingURL=Ip.d.ts.map