starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,41 @@
---
id: beta-role-insights-role
title: RoleInsightsRole
pagination_label: RoleInsightsRole
sidebar_label: RoleInsightsRole
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleInsightsRole', 'BetaRoleInsightsRole']
slug: /tools/sdk/python/beta/models/role-insights-role
tags: ['SDK', 'Software Development Kit', 'RoleInsightsRole', 'BetaRoleInsightsRole']
---
# RoleInsightsRole
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Role name | [optional]
**id** | **str** | Role id | [optional]
**description** | **str** | Role description | [optional]
**owner_name** | **str** | Role owner name | [optional]
**owner_id** | **str** | Role owner id | [optional]
}
## Example
```python
from sailpoint.beta.models.role_insights_role import RoleInsightsRole
role_insights_role = RoleInsightsRole(
name='Software Engineer',
id='1467e61e-f284-439c-ba2d-c6cc11cf0941',
description='Person who develops software',
owner_name='Bob',
owner_id='1467e61e-f284-439c-ba2d-c6cc11cf0941'
)
```
[[Back to top]](#)