Azure Role Assignment

Add the following attributes to your schema using the Create New Schema IdentityNow REST API.

Note
For more information on IdentityNow APIs, refer to Best Practices: IdentityNow REST API Authentication and IdentityNow REST API - Update Source (Partial) in the SailPoint Developer Community.

Example schema:

Copy
<Schema displayAttribute="displayName" identityAttribute="id" nativeObjectType="azureRoleAssignment" objectType="azureRoleAssignment">
    <AttributeDefinition name="id" type="string">
        <Description>Azure Role Assignment ID</Description>
    </AttributeDefinition>
    <AttributeDefinition name="displayName" type="string">
        <Description>Display Name</Description>
    </AttributeDefinition>
    <AttributeDefinition name="resource" type="string">
        <Description>Display name of the resource on which role can be assigned</Description>
    </AttributeDefinition>
    <AttributeDefinition name="roleName" type="string">
        <Description>Display name of the role which can be assigned on resource</Description>
    </AttributeDefinition>
</Schema>

The following is the corresponding sample entry of this entitlement in the account schema (if needed):

Copy
<AttributeDefinition entitlement="true" managed="true" multi="true" name="azureRoleAssignments" schemaObjectType="azureRoleAssignment" type="string">
    <Description>azureRoleAssignments</Description>
</AttributeDefinition>