UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 767 B
import { DNSRegistryConfiguration } from './DNSRegistryConfiguration'; import { DomainRegistryConfiguration } from './DomainRegistryConfiguration'; import { LifecycleRegistryConfiguration } from './LifecycleRegistryConfiguration'; /** The registry configurations applied to a domain extension (TLD, SLD) */ export interface RegistryConfigurations { /** Configurations on the DNS associated to the domain for the given extension */ dns: DNSRegistryConfiguration; /** Configurations on the domain name itself for the given extension */ domain: DomainRegistryConfiguration; /** Configurations on the lifecycle of a domain for the given extension */ lifecycle: LifecycleRegistryConfiguration; } //# sourceMappingURL=RegistryConfigurations.d.ts.map