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,45 @@
---
id: approval
title: Approval
pagination_label: Approval
sidebar_label: Approval
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Approval', 'Approval']
slug: /tools/sdk/powershell/v3/models/approval
tags: ['SDK', 'Software Development Kit', 'Approval', 'Approval']
---
# Approval
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Comments** | Pointer to [**[]ApprovalComment**](approval-comment) | | [optional]
**Created** | Pointer to **System.DateTime** | A date-time in ISO-8601 format | [optional]
**Modified** | Pointer to **System.DateTime** | A date-time in ISO-8601 format | [optional]
**Owner** | Pointer to [**AccountSource**](account-source) | | [optional]
**Result** | Pointer to **String** | The result of the approval | [optional]
**Type** | Pointer to **String** | | [optional]
## Examples
- Prepare the resource
```powershell
$Approval = Initialize-PSSailpoint.V3Approval -Comments null `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-Owner null `
-Result Finished `
-Type null
```
- Convert the resource to JSON
```powershell
$Approval | ConvertTo-JSON
```
[[Back to top]](#)