Skip to main content

AccessItemAssociatedAccessItem

Properties

NameTypeDescriptionNotes
access_typestrthe access item type. role in this case[optional]
idstrthe access item id[optional]
namestrthe access profile name[optional]
source_namestrthe associated source name if it exists[optional]
source_idstrthe id of the source[optional]
descriptionstrthe description for the role[optional]
display_namestrthe role display name[optional]
entitlement_countstrthe number of entitlements the account will create[optional]
app_display_namestrthe name of[optional]
remove_datestrthe date the role is no longer assigned to the specified identity[optional]
standaloneboolindicates whether the entitlement is standalone[required]
revocableboolindicates whether the role is revocable[required]
native_identitystrthe native identifier used to uniquely identify an acccount[optional]
app_role_idstrthe app role id[optional]
attributestrthe entitlement attribute[optional]
valuestrthe associated value[optional]
entitlement_typestrthe type of entitlement[optional]
privilegedboolindicates whether the entitlement is privileged[required]
cloud_governedboolindicates whether the entitlement is cloud governed[required]
}

Example

from sailpoint.beta.models.access_item_associated_access_item import AccessItemAssociatedAccessItem

access_item_associated_access_item = AccessItemAssociatedAccessItem(
access_type='role',
id='2c918087763e69d901763e72e97f006f',
name='sample',
source_name='Source Name',
source_id='2793o32dwd',
description='Role - Workday/Citizenship access',
display_name='sample',
entitlement_count='12',
app_display_name='AppName',
remove_date='2024-07-01T06:00:00.00Z',
standalone=True,
revocable=True,
native_identity='dr.arden.ogahn.d',
app_role_id='2c918087763e69d901763e72e97f006f',
attribute='groups',
value='Upward mobility access',
entitlement_type='entitlement',
privileged=False,
cloud_governed=True
)

[Back to top]