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:
42
docs/tools/sdk/python/Reference/V2024/Models/RoleMatchDto.md
Normal file
42
docs/tools/sdk/python/Reference/V2024/Models/RoleMatchDto.md
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
id: v2024-role-match-dto
|
||||
title: RoleMatchDto
|
||||
pagination_label: RoleMatchDto
|
||||
sidebar_label: RoleMatchDto
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RoleMatchDto', 'V2024RoleMatchDto']
|
||||
slug: /tools/sdk/python/v2024/models/role-match-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleMatchDto', 'V2024RoleMatchDto']
|
||||
---
|
||||
|
||||
# RoleMatchDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**role_ref** | [**BaseReferenceDto1**](base-reference-dto1) | | [optional]
|
||||
**matched_attributes** | [**[]ContextAttributeDto**](context-attribute-dto) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.role_match_dto import RoleMatchDto
|
||||
|
||||
role_match_dto = RoleMatchDto(
|
||||
role_ref=sailpoint.v2024.models.base_reference_dto_1.BaseReferenceDto_1(
|
||||
id = 'ff8081814d977c21014da056804a0af3',
|
||||
name = 'Github', ),
|
||||
matched_attributes=[
|
||||
sailpoint.v2024.models.context_attribute_dto.ContextAttributeDto(
|
||||
attribute = 'location',
|
||||
value = Austin,
|
||||
derived = False, )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user