Skip to main content

Accessitemroleresponse

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]
descriptionstrthe description for the role[optional]
start_datestrthe date the access profile will be assigned to the specified identity, in case requested with a future start date[optional]
remove_datestrthe date the role is no longer assigned to the specified identity[optional]
revocableboolindicates whether the role is revocable[required]
}

Example

from sailpoint.identity_history.models.accessitemroleresponse import Accessitemroleresponse

accessitemroleresponse = Accessitemroleresponse(
id='2c918087763e69d901763e72e97f006f',
access_type='role',
display_name='sample',
source_name='Source Name',
description='Role - Workday/Citizenship access',
start_date='2024-07-01T05:00:00.00Z',
remove_date='2024-07-01T06:00:00.00Z',
revocable=True
)

[Back to top]