UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 383 B
import { Ipv4 } from '../Ipv4'; import { Ipv6 } from '../Ipv6'; /** A structure describing informations about available nameserver for secondary dns */ export interface SecondaryDNSNameServer { /** the name server */ hostname: string; /** IPv4 address (e.g., 192.0.2.0) */ ip: Ipv4; /** */ ipv6?: Ipv6; } //# sourceMappingURL=SecondaryDNSNameServer.d.ts.map