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.role_insights.models.roleinsightsrole import Roleinsightsrole

roleinsightsrole = 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]