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-reassignment
title: Reassignment
pagination_label: Reassignment
sidebar_label: Reassignment
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Reassignment', 'V2024Reassignment']
slug: /tools/sdk/powershell/v2024/models/reassignment
tags: ['SDK', 'Software Development Kit', 'Reassignment', 'V2024Reassignment']
---
# Reassignment
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarFrom** | Pointer to [**CertificationReference**](certification-reference) | | [optional]
**Comment** | Pointer to **String** | The comment entered when the Certification was reassigned | [optional]
## Examples
- Prepare the resource
```powershell
$Reassignment = Initialize-PSSailpoint.V2024Reassignment -VarFrom null `
-Comment Reassigned for a reason
```
- Convert the resource to JSON
```powershell
$Reassignment | ConvertTo-JSON
```
[[Back to top]](#)