UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 435 B
import { Ip } from '../../Ip'; /** Full name server configuration */ export interface FullNameServer { /** Host of the name server */ host: string; /** ID of the name server */ id: number; /** IP address of the name server */ ip?: Ip; /** isUsed flag of the name server */ isUsed: boolean; /** toDelete flag of the name server */ toDelete: boolean; } //# sourceMappingURL=FullNameServer.d.ts.map