UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 536 B
import { Ipv4 } from '../../Ipv4'; import { Ipv6 } from '../../Ipv6'; import { NameServerTypeEnum } from './NameServerTypeEnum'; /** Name server configuration */ export interface NameServer { /** ID of the name server */ id: number; /** IPv4 adress of the name server */ ipv4?: Ipv4; /** IPv6 adress of the name server */ ipv6?: Ipv6; /** Name of the name server */ nameServer: string; /** Type of the name server */ nameServerType: NameServerTypeEnum; } //# sourceMappingURL=NameServer.d.ts.map