adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-role-match-dto
title: RoleMatchDto
pagination_label: RoleMatchDto
sidebar_label: RoleMatchDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMatchDto', 'V2024RoleMatchDto']
slug: /tools/sdk/powershell/v2024/models/role-match-dto
tags: ['SDK', 'Software Development Kit', 'RoleMatchDto', 'V2024RoleMatchDto']
---
# RoleMatchDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RoleRef** | Pointer to [**BaseReferenceDto1**](base-reference-dto1) | | [optional]
**MatchedAttributes** | Pointer to [**[]ContextAttributeDto**](context-attribute-dto) | | [optional]
## Examples
- Prepare the resource
```powershell
$RoleMatchDto = Initialize-PSSailpoint.V2024RoleMatchDto -RoleRef null `
-MatchedAttributes null
```
- Convert the resource to JSON
```powershell
$RoleMatchDto | ConvertTo-JSON
```
[[Back to top]](#)