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-assignment-ref
title: RoleAssignmentRef
pagination_label: RoleAssignmentRef
sidebar_label: RoleAssignmentRef
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleAssignmentRef', 'V2024RoleAssignmentRef']
slug: /tools/sdk/powershell/v2024/models/role-assignment-ref
tags: ['SDK', 'Software Development Kit', 'RoleAssignmentRef', 'V2024RoleAssignmentRef']
---
# RoleAssignmentRef
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Assignment Id | [optional]
**Role** | Pointer to [**BaseReferenceDto1**](base-reference-dto1) | | [optional]
## Examples
- Prepare the resource
```powershell
$RoleAssignmentRef = Initialize-PSSailpoint.V2024RoleAssignmentRef -Id 1cbb0705b38c4226b1334eadd8874086 `
-Role null
```
- Convert the resource to JSON
```powershell
$RoleAssignmentRef | ConvertTo-JSON
```
[[Back to top]](#)