@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 558 B
TypeScript
import { ResourceMetadata } from '../iam/ResourceMetadata';
/** DNS zone */
export interface ZoneWithIAM {
/** Is DNSSEC supported by this zone */
dnssecSupported: boolean;
/** Whether the DNS zone has a DNS Anycast subscription */
hasDnsAnycast: boolean;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** Last update date of the DNS zone */
lastUpdate?: string;
/** Zone name */
name: string;
/** Name servers that host the DNS zone */
nameServers: string[];
}
//# sourceMappingURL=ZoneWithIAM.d.ts.map