Skip to content

Latest commit

 

History

History
executable file
·
29 lines (23 loc) · 970 Bytes

LdapConfig.md

File metadata and controls

executable file
·
29 lines (23 loc) · 970 Bytes

LdapConfig

Properties

Name Type Description Notes
Disabled Boolean Disable LDAP service [optional] [default to $false]
Connection LdapConfigConnection [optional]
BaseDn String Base DN to use for user search [optional]
ObjectID String Name of an attribute that uniquely identifies an LDAP object [optional]
Users LdapConfigUsers [optional]

Examples

  • Prepare the resource
$LdapConfig = Initialize-GrommunioAdminLdapConfig  -Disabled null `
 -Connection null `
 -BaseDn null `
 -ObjectID null `
 -Users null
  • Convert the resource to JSON
$LdapConfig | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]