-
Notifications
You must be signed in to change notification settings - Fork 4
Add AcmaSchemaBinding
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.
# Simple binding
Add-AcmaSchemaBinding -Attribute <string> -ObjectClass <string>
# Inherited binding
Add-AcmaSchemaBinding -Attribute <string> -ObjectClass <string> -InheritanceSourceClass <string> -InheritanceSourceReference <string> -InheritanceSourceAttribute <string>The name of the attribute to bind to the object class
Type: String
Required: Yes
Position: 0
The name of the object class to bind the attribute to
Type: String
Required: Yes
Position: 1
The type of object that the InheritanceSourceReference references
Type: String
Required: Yes (for inherited binding)
Position: 2
The attribute on the object that contains a reference value to inherit from
Type: String
Required: Yes (for inherited binding)
Position: 3
The attribute on the referenced object to inherit
Type: String
Required: Yes (for inherited binding)
Position: 4
This cmdlet does not return any output
Add-AcmaSchemaBinding -Attribute "accountName" -ObjectClass "person"Add-AcmaSchemaBinding -Attribute "orgUnitName" -ObjectClass "person" -InheritanceSourceReference "orgUnit" -InheritanceSourceClass "organizationalUnit" -InheritanceSourceAttribute "displayName"