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.accountupdated_multi_value_attribute_changes_inner import AccountupdatedMultiValueAttributeChangesInner

accountupdated_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]