mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
38
docs/tools/sdk/python/Reference/Beta/Models/PermissionDto.md
Normal file
38
docs/tools/sdk/python/Reference/Beta/Models/PermissionDto.md
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: beta-permission-dto
|
||||
title: PermissionDto
|
||||
pagination_label: PermissionDto
|
||||
sidebar_label: PermissionDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'PermissionDto', 'BetaPermissionDto']
|
||||
slug: /tools/sdk/python/beta/models/permission-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'PermissionDto', 'BetaPermissionDto']
|
||||
---
|
||||
|
||||
# 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.beta.models.permission_dto import PermissionDto
|
||||
|
||||
permission_dto = PermissionDto(
|
||||
rights=[
|
||||
'SELECT'
|
||||
],
|
||||
target='SYS.GV_$TRANSACTION'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user