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,38 @@
---
id: v2025-permission-dto
title: PermissionDto
pagination_label: PermissionDto
sidebar_label: PermissionDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PermissionDto', 'V2025PermissionDto']
slug: /tools/sdk/python/v2025/models/permission-dto
tags: ['SDK', 'Software Development Kit', 'PermissionDto', 'V2025PermissionDto']
---
# PermissionDto
Simplified DTO for the Permission objects stored in SailPoint's database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**rights** | **[]str** | All the rights (e.g. actions) that this permission allows on the target | [optional] [readonly]
**target** | **str** | The target the permission would grants rights on. | [optional] [readonly]
}
## Example
```python
from sailpoint.v2025.models.permission_dto import PermissionDto
permission_dto = PermissionDto(
rights=[
'SELECT'
],
target='SYS.GV_$TRANSACTION'
)
```
[[Back to top]](#)