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,42 @@
---
id: v2024-role-target-dto
title: RoleTargetDto
pagination_label: RoleTargetDto
sidebar_label: RoleTargetDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleTargetDto', 'V2024RoleTargetDto']
slug: /tools/sdk/python/v2024/models/role-target-dto
tags: ['SDK', 'Software Development Kit', 'RoleTargetDto', 'V2024RoleTargetDto']
---
# RoleTargetDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**source** | [**BaseReferenceDto1**](base-reference-dto1) | | [optional]
**account_info** | [**AccountInfoDto**](account-info-dto) | | [optional]
**role_name** | **str** | Specific role name for this target if using multiple accounts | [optional]
}
## Example
```python
from sailpoint.v2024.models.role_target_dto import RoleTargetDto
role_target_dto = RoleTargetDto(
source=sailpoint.v2024.models.base_reference_dto_1.BaseReferenceDto_1(
id = 'ff8081814d977c21014da056804a0af3',
name = 'Github', ),
account_info=sailpoint.v2024.models.account_info_dto.AccountInfoDto(
native_identity = 'CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
display_name = 'Abby.Smith',
uuid = '{ad9fc391-246d-40af-b248-b6556a2b7c01}', ),
role_name='Marketing'
)
```
[[Back to top]](#)