-
Notifications
You must be signed in to change notification settings - Fork 4
Add AcmaSchemaBinding
Ryan Newington edited this page May 26, 2022
·
4 revisions
The Add-AcmaSchemaBinding cmdlet creates a binding of an attribute to an object class. Bindings can be static, or inherited from a referenced object present on the object class. An inherited binding becomes read-only and is automatically updated when the referenced attribute changes.
Add-AcmaSchemaBinding -Attribute <string> -ObjectClass <string>
Add-AcmaSchemaBinding -Attribute <string> -ObjectClass <string> -InheritanceSourceClass <string> -InheritanceSourceReference <string -InheritanceSourceAttribute <string>
The name of the attribute to bind to the object class
The name of the object class to bind the attribute to
The attribute on the object that contains a reference value to inherit from
The type of object that the InheritanceSourceReference references
The attribute on the referenced object to inherit
Add-AcmaSchemaBinding -Attribute "accountName" -ObjectClass "person"
Add-AcmaSchemaBinding -Attribute "orgUnitName" -ObjectClass "person" -InheritanceSourceReference "orgUnit" -InhertianceSourceClass "organizationalUnit" -InheritanceSourceAttribute "displayName"