Skip to main content

AccountUpdatedMultiValueAttributeChangesInner

Properties

NameTypeDescriptionNotes
namestrThe name of the attribute that was changed.[required]
added_values[]AccountUpdatedMultiValueAttributeChangesInnerAddedValuesInnerThe values that were added to the attribute.[required]
removed_values[]AccountUpdatedMultiValueAttributeChangesInnerAddedValuesInnerThe values that were removed from the attribute.[required]
}

Example

from sailpoint.triggers.models.account_updated_multi_value_attribute_changes_inner import AccountUpdatedMultiValueAttributeChangesInner

account_updated_multi_value_attribute_changes_inner = AccountUpdatedMultiValueAttributeChangesInner(
name='memberOf',
added_values=["CN=Sales,OU=Groups,DC=acme,DC=com","CN=AllEmployees,OU=Groups,DC=acme,DC=com"],
removed_values=["CN=AllEmployees,OU=Groups,DC=acme,DC=com","CN=Contractors,OU=Groups,DC=acme,DC=com"]
)

[Back to top]