mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.6 KiB
1.6 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-identity-attributes-changed | IdentityAttributesChanged | IdentityAttributesChanged | IdentityAttributesChanged | pythonsdk |
|
/tools/sdk/python/v2024/models/identity-attributes-changed |
|
IdentityAttributesChanged
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| identity | IdentityAttributesChangedIdentity | [required] | |
| changes | []IdentityAttributesChangedChangesInner | A list of one or more identity attributes that changed on the identity. | [required] |
| } |
Example
from sailpoint.v2024.models.identity_attributes_changed import IdentityAttributesChanged
identity_attributes_changed = IdentityAttributesChanged(
identity=sailpoint.v2024.models.identity_attributes_changed_identity.IdentityAttributesChanged_identity(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
changes=[
sailpoint.v2024.models.identity_attributes_changed_changes_inner.IdentityAttributesChanged_changes_inner(
attribute = 'department',
old_value = sales,
new_value = marketing, )
]
)