adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 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']
slug: /tools/sdk/powershell/v2024/models/reassignment
tags: ['SDK', 'Software Development Kit', 'Reassignment']
---
# 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]](#)