Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.63 KB

File metadata and controls

37 lines (31 loc) · 1.63 KB

LdapConfigUsers

Properties

Name Type Description Notes
Username String Name of the attribute that corresponds to the username (e-mail address) [optional]
DisplayName String Name of the attribute that contains the name [optional]
Filters String[] List of additional filter expressions to use for user search [optional]
VarFilter String LDAP search filter to apply to user lookup [optional]
Templates String[] List of mapping templates to use [optional]
Attributes System.Collections.Hashtable LDAP attribute -> PropTag mapping to used for LDAP import. Any mappings specified take precedence over active templates [optional]
DefaultQuota Int32 Storage quota of imported users if no mapping exists [optional]
SearchAttributes String[] List of attributes to use for searching [optional]
Aliases String LDAP attribute containing alternative e-mail addresses [optional]

Examples

  • Prepare the resource
$LdapConfigUsers = Initialize-GrommunioAdminLdapConfigUsers  -Username null `
 -DisplayName null `
 -Filters null `
 -VarFilter (&(objectclass=person)(mailPrimaryAddress=*)) `
 -Templates null `
 -Attributes null `
 -DefaultQuota null `
 -SearchAttributes null `
 -Aliases null
  • Convert the resource to JSON
$LdapConfigUsers | ConvertTo-JSON

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