AccountupdatedMultiValueAttributeChangesInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of the attribute that was changed. | [required] |
| added_values | []AccountupdatedMultiValueAttributeChangesInnerAddedValuesInner | The values that were added to the attribute. | [required] |
| removed_values | []AccountupdatedMultiValueAttributeChangesInnerAddedValuesInner | The 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"]
)