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]