Skip to main content

AccessItemAssociatedAccessItem

Properties

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

Example

from sailpoint.v2024.models.access_item_associated_access_item import AccessItemAssociatedAccessItem

access_item_associated_access_item = AccessItemAssociatedAccessItem(
id='2c918087763e69d901763e72e97f006f',
access_type='app',
display_name='Display Name',
source_name='appName',
attribute='groups',
value='Upward mobility access',
type='ENTITLEMENT',
description='Role - Workday/Citizenship access',
source_id='2793o32dwd',
standalone=False,
privileged=False,
cloud_governed=True,
entitlement_count=12,
app_refs=[{cloudAppId=8c190e6787aa4ed9a90bd9d5344523fb, cloudAppName=Sample App}, {cloudAppId=2c91808a77ff216301782327a50f09bf, cloudAppName=Another App}],
remove_date='2024-07-01T06:00:00.00Z',
revocable=True,
native_identity='dr.arden.ogahn.d',
app_role_id='2c918087763e69d901763e72e97f006f'
)

[Back to top]