@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 416 B
TypeScript
/** Zone dns Management */
export interface Zone {
/** Is DNSSEC supported by this zone */
dnssecSupported: boolean;
/** hasDnsAnycast flag of the DNS zone */
hasDnsAnycast: boolean;
/** Last update date of the DNS zone */
lastUpdate: string;
/** Zone name */
name: string;
/** Name servers that host the DNS zone */
nameServers: string[];
}
//# sourceMappingURL=Zone.d.ts.map