UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 633 B
import { ResourceMetadata } from '../iam/ResourceMetadata'; /** DNS zone */ export interface ZoneWithIAM { /** Is DNSSEC activated for this zone */ dnssecActivated: boolean; /** 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