UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

32 lines 1.1 kB
import { Ipv4 } from '../Ipv4'; import { StateEnum } from './optionAccessNetwork/StateEnum'; /** Federated Active Directory */ export interface FederationAccessNetwork { /** Id of the Active Directory */ activeDirectoryId: number; /** Active Directory base DN for groups */ baseDnForGroups: string; /** Active Directory base DN for users */ baseDnForUsers: string; /** Description of your option access network */ description: string; /** Active Directory NetBIOS name */ domainAlias: string; /** Active Directory domain name */ domainName: string; /** IP address of the remote service */ ip: Ipv4; /** Active Directory LDAP hostname */ ldapHostname?: string; /** Active Directory LDAP port */ ldapTcpPort: number; /** Use unsecure LDAP instead of LDAPS */ noSsl: boolean; /** SSL thumbprint of the remote service */ sslThumbprint?: string; /** State of the option */ state: StateEnum; /** Active Directory user name */ username: string; } //# sourceMappingURL=FederationAccessNetwork.d.ts.map