UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 447 B
import { Ip } from '../Ip'; /** List all Active Directories linked to your CDI Active Directory */ export interface DomainTrust { /** IP of your Active Directory */ activeDirectoryIP: Ip; /** IP of your first DNS */ dns1?: Ip; /** IP of your second DNS */ dns2?: Ip; /** Name of your private domain */ domain: string; /** Domain trust id */ domainTrustId: number; } //# sourceMappingURL=DomainTrust.d.ts.map