Skip to main content

ListIdentitySnapshotAccessItems200ResponseInner

Properties

NameTypeDescriptionNotes
idstrthe access item id[optional]
access_typestrthe access item type. role in this case[optional]
display_namestrthe role display name[optional]
source_namestrthe associated source name if it exists[optional]
entitlement_countintthe number of entitlements the account will create[required]
descriptionstrthe description for the role[optional]
source_idstrthe id of the source[optional]
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]
standaloneboolindicates whether the entitlement is standalone[required]
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]
attributestrthe entitlement attribute[required]
valuestrthe associated value[required]
typestrthe type of entitlement[required]
privilegedboolindicates whether the entitlement is privileged[required]
cloud_governedboolindicates whether the entitlement is cloud governed[required]
}

Example

from sailpoint.v2024.models.list_identity_snapshot_access_items200_response_inner import ListIdentitySnapshotAccessItems200ResponseInner

list_identity_snapshot_access_items200_response_inner = ListIdentitySnapshotAccessItems200ResponseInner(
id='2c918087763e69d901763e72e97f006f',
access_type='role',
display_name='sample',
source_name='Source Name',
entitlement_count=12,
description='Role - Workday/Citizenship access',
source_id='2793o32dwd',
app_refs=[{cloudAppId=8c190e6787aa4ed9a90bd9d5344523fb, cloudAppName=Sample App}, {cloudAppId=2c91808a77ff216301782327a50f09bf, cloudAppName=Another App}],
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',
type='ENTITLEMENT',
privileged=False,
cloud_governed=True
)

[Back to top]