mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
48
docs/tools/sdk/python/Reference/V3/Models/RoleSummary.md
Normal file
48
docs/tools/sdk/python/Reference/V3/Models/RoleSummary.md
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
id: role-summary
|
||||
title: RoleSummary
|
||||
pagination_label: RoleSummary
|
||||
sidebar_label: RoleSummary
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RoleSummary', 'RoleSummary']
|
||||
slug: /tools/sdk/python/v3/models/role-summary
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleSummary', 'RoleSummary']
|
||||
---
|
||||
|
||||
# RoleSummary
|
||||
|
||||
Role
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**id** | **str** | The unique ID of the referenced object. | [optional]
|
||||
**name** | **str** | The human readable name of the referenced object. | [optional]
|
||||
**display_name** | **str** | | [optional]
|
||||
**type** | [**DtoType**](dto-type) | | [optional]
|
||||
**description** | **str** | | [optional]
|
||||
**owner** | [**DisplayReference**](display-reference) | | [optional]
|
||||
**disabled** | **bool** | | [optional]
|
||||
**revocable** | **bool** | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.role_summary import RoleSummary
|
||||
|
||||
role_summary = RoleSummary(
|
||||
id='2c91808568c529c60168cca6f90c1313',
|
||||
name='John Doe',
|
||||
display_name='John Q. Doe',
|
||||
type='IDENTITY',
|
||||
description='',
|
||||
owner=,
|
||||
disabled=True,
|
||||
revocable=True
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user