@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 495 B
TypeScript
import { NameServerStateEnum } from './NameServerStateEnum';
import { NameServerTypeEnum } from './NameServerTypeEnum';
/** DNS server status */
export interface NameServerStatus {
/** Whether or not the DNS server is working */
state: NameServerStateEnum;
/** Whether or not the DNS server is managed by OVHcloud */
type: NameServerTypeEnum;
/** Date from which the DNS server is used by the domain */
usedSince?: string;
}
//# sourceMappingURL=NameServerStatus.d.ts.map