Skip to main content

RoleDocumentAllOfDimensions

Properties

NameTypeDescriptionNotes
idstrUnique ID of the dimension.[optional]
namestrName of the dimension.[optional]
descriptionstrDescription of the dimension.[optional]
entitlements[]RoleDocumentAllOfEntitlements1Entitlements included with the role.[optional]
access_profiles[]BaseAccessProfileAccess profiles included in the dimension.[optional]
}

Example

from sailpoint.v2024.models.role_document_all_of_dimensions import RoleDocumentAllOfDimensions

role_document_all_of_dimensions = RoleDocumentAllOfDimensions(
id='b3c28992ba964a40a7598978139d1ced',
name='Manager Austin Branch',
description='Managers located at the Austin branch',
entitlements=[
null
],
access_profiles=[
sailpoint.v2024.models.base_access_profile.BaseAccessProfile(
id = '2c91809c6faade77016fb4f0b63407ae',
name = 'Admin Access', )
]
)

[Back to top]