Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/RoleDocumentAllOfDimensions.md
2025-03-10 11:34:32 -04:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-role-document-all-of-dimensions RoleDocumentAllOfDimensions RoleDocumentAllOfDimensions RoleDocumentAllOfDimensions pythonsdk
python
Python
sdk
RoleDocumentAllOfDimensions
V2024RoleDocumentAllOfDimensions
/tools/sdk/python/v2024/models/role-document-all-of-dimensions
SDK
Software Development Kit
RoleDocumentAllOfDimensions
V2024RoleDocumentAllOfDimensions

RoleDocumentAllOfDimensions

Properties

Name Type Description Notes
id str Unique ID of the dimension. [optional]
name str Name of the dimension. [optional]
description str Description of the dimension. [optional]
entitlements []RoleDocumentAllOfEntitlements1 Entitlements included with the role. [optional]
access_profiles []BaseAccessProfile Access 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]