Skip to main content

Roleminingpotentialroleprovisionrequest

Properties

NameTypeDescriptionNotes
role_namestrName of the new role being created[optional]
role_descriptionstrShort description of the new role being created[optional]
owner_idstrID of the identity that will own this role[optional]
include_identitiesboolWhen true, create access requests for the identities associated with the potential role[optional] [default to False]
directly_assigned_entitlementsboolWhen true, assign entitlements directly to the role; otherwise, create access profiles containing the entitlements[optional] [default to False]
}

Example

from sailpoint.iai_role_mining.models.roleminingpotentialroleprovisionrequest import Roleminingpotentialroleprovisionrequest

roleminingpotentialroleprovisionrequest = Roleminingpotentialroleprovisionrequest(
role_name='Finance - Accounting',
role_description='General access for accounting department',
owner_id='2b568c65bc3c4c57a43bd97e3a8e41',
include_identities=True,
directly_assigned_entitlements=False
)

[Back to top]