merge changes from main and pull the latest from python docs

This commit is contained in:
darrell-thobe-sp
2025-03-10 11:34:32 -04:00
3122 changed files with 95404 additions and 24060 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2024-role-document-all-of-dimensions
title: RoleDocumentAllOfDimensions
pagination_label: RoleDocumentAllOfDimensions
sidebar_label: RoleDocumentAllOfDimensions
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleDocumentAllOfDimensions', 'V2024RoleDocumentAllOfDimensions']
slug: /tools/sdk/python/v2024/models/role-document-all-of-dimensions
tags: ['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**](role-document-all-of-entitlements1) | Entitlements included with the role. | [optional]
**access_profiles** | [**[]BaseAccessProfile**](base-access-profile) | Access profiles included in the dimension. | [optional]
}
## Example
```python
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]](#)