Skip to main content

AccessItemEntitlementResponse

Properties

NameTypeDescriptionNotes
access_typestrthe access item type. entitlement in this case[optional]
idstrthe access item id[optional]
attributestrthe entitlement attribute[optional]
valuestrthe associated value[optional]
entitlement_typestrthe type of entitlement[optional]
source_namestrthe name of the source[optional]
source_idstrthe id of the source[optional]
descriptionstrthe description for the entitlment[optional]
display_namestrthe display name of the identity[optional]
standaloneboolindicates whether the entitlement is standalone[required]
privilegedboolindicates whether the entitlement is privileged[required]
cloud_governedboolindicates whether the entitlement is cloud governed[required]
}

Example

from sailpoint.beta.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]