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-forward-approval-dto
title: ForwardApprovalDto
pagination_label: ForwardApprovalDto
sidebar_label: ForwardApprovalDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ForwardApprovalDto', 'BetaForwardApprovalDto']
slug: /tools/sdk/powershell/beta/models/forward-approval-dto
tags: ['SDK', 'Software Development Kit', 'ForwardApprovalDto', 'BetaForwardApprovalDto']
---
# ForwardApprovalDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**NewOwnerId** | **String** | The Id of the new owner | [required]
**Comment** | **String** | The comment provided by the forwarder | [required]
## Examples
- Prepare the resource
```powershell
$ForwardApprovalDto = Initialize-PSSailpoint.BetaForwardApprovalDto -NewOwnerId null `
-Comment null
```
- Convert the resource to JSON
```powershell
$ForwardApprovalDto | ConvertTo-JSON
```
[[Back to top]](#)