mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.7 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| role-document-all-of-dimensions | RoleDocumentAllOfDimensions | RoleDocumentAllOfDimensions | RoleDocumentAllOfDimensions | pythonsdk |
|
/tools/sdk/python/v3/models/role-document-all-of-dimensions |
|
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.v3.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.v3.models.base_access_profile.BaseAccessProfile(
id = '2c91809c6faade77016fb4f0b63407ae',
name = 'Admin Access', )
]
)