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

2.1 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-access-item-entitlement-response AccessItemEntitlementResponse AccessItemEntitlementResponse AccessItemEntitlementResponse pythonsdk
python
Python
sdk
AccessItemEntitlementResponse
V2024AccessItemEntitlementResponse
/tools/sdk/python/v2024/models/access-item-entitlement-response
SDK
Software Development Kit
AccessItemEntitlementResponse
V2024AccessItemEntitlementResponse

AccessItemEntitlementResponse

Properties

Name Type Description Notes
access_type str the access item type. entitlement in this case [optional]
id str the access item id [optional]
attribute str the entitlement attribute [optional]
value str the associated value [optional]
entitlement_type str the type of entitlement [optional]
source_name str the name of the source [optional]
source_id str the id of the source [optional]
description str the description for the entitlment [optional]
display_name str the display name of the identity [optional]
standalone bool indicates whether the entitlement is standalone [required]
privileged bool indicates whether the entitlement is privileged [required]
cloud_governed bool indicates whether the entitlement is cloud governed [required]
}

Example

from sailpoint.v2024.models.access_item_entitlement_response import AccessItemEntitlementResponse

access_item_entitlement_response = AccessItemEntitlementResponse(
access_type='entitlement',
id='2c918087763e69d901763e72e97f006f',
attribute='groups',
value='Upward mobility access',
entitlement_type='entitlement',
source_name='DataScienceDataset',
source_id='2793o32dwd',
description='Entitlement - Workday/Citizenship access',
display_name='Dr. Arden Rogahn MD',
standalone=True,
privileged=False,
cloud_governed=True
)

[Back to top]