UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 554 B
import { ResourceMetadata } from '../../iam/ResourceMetadata'; /** Zone dns Management */ export interface ZoneWithIAM { /** Is DNSSEC supported by this zone */ dnssecSupported: boolean; /** hasDnsAnycast flag of the DNS zone */ 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