Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AccountAttributesChanged.md
2025-02-20 12:59:19 -05:00

2.4 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
beta-account-attributes-changed AccountAttributesChanged AccountAttributesChanged AccountAttributesChanged pythonsdk
python
Python
sdk
AccountAttributesChanged
BetaAccountAttributesChanged
/tools/sdk/python/beta/models/account-attributes-changed
SDK
Software Development Kit
AccountAttributesChanged
BetaAccountAttributesChanged

AccountAttributesChanged

Properties

Name Type Description Notes
identity AccountAttributesChangedIdentity [required]
source AccountAttributesChangedSource [required]
account AccountAttributesChangedAccount [required]
changes []AccountAttributesChangedChangesInner A list of attributes that changed. [required]
}

Example

from sailpoint.beta.models.account_attributes_changed import AccountAttributesChanged

account_attributes_changed = AccountAttributesChanged(
identity=sailpoint.beta.models.account_attributes_changed_identity.AccountAttributesChanged_identity(
                    type = 'IDENTITY', 
                    id = '2c7180a46faadee4016fb4e018c20642', 
                    name = 'Michael Michaels', ),
source=sailpoint.beta.models.account_attributes_changed_source.AccountAttributesChanged_source(
                    id = '4e4d982dddff4267ab12f0f1e72b5a6d', 
                    type = 'SOURCE', 
                    name = 'Corporate Active Directory', ),
account=sailpoint.beta.models.account_attributes_changed_account.AccountAttributesChanged_account(
                    id = '52170a74-ca89-11ea-87d0-0242ac130003', 
                    uuid = '1cb1f07d-3e5a-4431-becd-234fa4306108', 
                    name = 'john.doe', 
                    native_identity = 'cn=john.doe,ou=users,dc=acme,dc=com', 
                    type = ACCOUNT, ),
changes=[
                    sailpoint.beta.models.account_attributes_changed_changes_inner.AccountAttributesChanged_changes_inner(
                        attribute = 'sn', 
                        old_value = doe, 
                        new_value = ryans, )
                    ]
)

[Back to top]