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: beta-reassignment
title: Reassignment
pagination_label: Reassignment
sidebar_label: Reassignment
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Reassignment', 'BetaReassignment']
slug: /tools/sdk/powershell/beta/models/reassignment
tags: ['SDK', 'Software Development Kit', 'Reassignment', 'BetaReassignment']
---
# Reassignment
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarFrom** | Pointer to [**CertificationReference**](certification-reference) | | [optional]
**Comment** | Pointer to **String** | Comments from the previous reviewer. | [optional]
## Examples
- Prepare the resource
```powershell
$Reassignment = Initialize-PSSailpoint.BetaReassignment -VarFrom null `
-Comment Please review
```
- Convert the resource to JSON
```powershell
$Reassignment | ConvertTo-JSON
```
[[Back to top]](#)