UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 378 B
import { CountryEnum } from './CountryEnum'; import { Ipv4 } from '../../Ipv4'; import { Ipv6 } from '../../Ipv6'; /** Available clusterIp by country */ export interface CountriesIp { /** The whois country of the ip */ country: CountryEnum; /** The cluster ip */ ip?: Ipv4; /** The cluster ipv6 */ ipv6?: Ipv6; } //# sourceMappingURL=CountriesIp.d.ts.map