add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
---
id: v2025-role-document-all-of-entitlements
title: RoleDocumentAllOfEntitlements
pagination_label: RoleDocumentAllOfEntitlements
sidebar_label: RoleDocumentAllOfEntitlements
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleDocumentAllOfEntitlements', 'V2025RoleDocumentAllOfEntitlements']
slug: /tools/sdk/python/v2025/models/role-document-all-of-entitlements
tags: ['SDK', 'Software Development Kit', 'RoleDocumentAllOfEntitlements', 'V2025RoleDocumentAllOfEntitlements']
---
# RoleDocumentAllOfEntitlements
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**has_permissions** | **bool** | Indicates whether the entitlement has permissions. | [optional] [default to False]
**description** | **str** | Entitlement's description. | [optional]
**attribute** | **str** | Entitlement attribute's name. | [optional]
**value** | **str** | Entitlement's value. | [optional]
**var_schema** | **str** | Entitlement's schema. | [optional]
**privileged** | **bool** | Indicates whether the entitlement is privileged. | [optional] [default to False]
**id** | **str** | Entitlement's ID. | [optional]
**name** | **str** | Entitlement's name. | [optional]
**source_schema_object_type** | **str** | Schema objectType. | [optional]
**hash** | **str** | Read-only calculated hash value of an entitlement. | [optional]
}
## Example
```python
from sailpoint.v2025.models.role_document_all_of_entitlements import RoleDocumentAllOfEntitlements
role_document_all_of_entitlements = RoleDocumentAllOfEntitlements(
has_permissions=False,
description='Cloud engineering',
attribute='memberOf',
value='CN=Cloud Engineering,DC=sailpoint,DC=COM',
var_schema='group',
privileged=False,
id='2c918084575812550157589064f33b89',
name='CN=Cloud Engineering,DC=sailpoint,DC=COM',
source_schema_object_type='group',
hash='c6fab95235584cca98a454a2f51e5683bc77d6a0'
)
```
[[Back to top]](#)