@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 578 B
TypeScript
/** DNS zone options for a domain order */
export interface ZoneOptions {
/** Enable Anycast on the DNS zone. Applied only when a new zone is created (create=true and no existing zone); ignored otherwise. */
anycast?: boolean;
/** Whether to create the DNS zone along with the domain. Defaults to true if omitted. */
create?: boolean;
/** Enable DNSSEC on the DNS zone. Applied only when a new zone is created (create=true and no existing zone); defaults to true in that case when omitted. */
dnssec?: boolean;
}
//# sourceMappingURL=ZoneOptions.d.ts.map