Skip to main content

AccountupdatedMultiValueAttributeChangesInner

Properties

NameTypeDescriptionNotes
NameStringThe name of the attribute that was changed.[required]
AddedValues[]AccountupdatedMultiValueAttributeChangesInnerAddedValuesInnerThe values that were added to the attribute.[required]
RemovedValues[]AccountupdatedMultiValueAttributeChangesInnerAddedValuesInnerThe values that were removed from the attribute.[required]

Examples

  • Prepare the resource
$AccountupdatedMultiValueAttributeChangesInner = Initialize-AccountupdatedMultiValueAttributeChangesInner  -Name memberOf `
-AddedValues ["CN=Sales,OU=Groups,DC=acme,DC=com","CN=AllEmployees,OU=Groups,DC=acme,DC=com"] `
-RemovedValues ["CN=AllEmployees,OU=Groups,DC=acme,DC=com","CN=Contractors,OU=Groups,DC=acme,DC=com"]
  • Convert the resource to JSON
$AccountupdatedMultiValueAttributeChangesInner | ConvertTo-JSON

[Back to top]