Skip to main content

RoleInsightsRole

Properties

NameTypeDescriptionNotes
namestrRole name[optional]
idstrRole id[optional]
descriptionstrRole description[optional]
owner_namestrRole owner name[optional]
owner_idstrRole owner id[optional]
}

Example

from sailpoint.v2024.models.role_insights_role import RoleInsightsRole

role_insights_role = RoleInsightsRole(
name='Software Engineer',
id='1467e61e-f284-439c-ba2d-c6cc11cf0941',
description='Person who develops software',
owner_name='Bob',
owner_id='1467e61e-f284-439c-ba2d-c6cc11cf0941'
)

[Back to top]