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

988 B

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-access-item-diff AccessItemDiff AccessItemDiff AccessItemDiff pythonsdk
python
Python
sdk
AccessItemDiff
BetaAccessItemDiff
/tools/sdk/python/beta/models/access-item-diff
SDK
Software Development Kit
AccessItemDiff
BetaAccessItemDiff

AccessItemDiff

Properties

Name Type Description Notes
id str the id of the access item [optional]
event_type Enum [ 'ADD', 'REMOVE' ] [optional]
display_name str the display name of the access item [optional]
source_name str the source name of the access item [optional]
}

Example

from sailpoint.beta.models.access_item_diff import AccessItemDiff

access_item_diff = AccessItemDiff(
id='',
event_type='ADD',
display_name='',
source_name=''
)

[Back to top]