adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: approval-identity
title: ApprovalIdentity
pagination_label: ApprovalIdentity
sidebar_label: ApprovalIdentity
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalIdentity']
slug: /tools/sdk/powershell/beta/models/approval-identity
tags: ['SDK', 'Software Development Kit', 'ApprovalIdentity']
---
# ApprovalIdentity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The identity ID | [optional]
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc | [optional]
**Name** | Pointer to **String** | Name of the identity | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalIdentity = Initialize-PSSailpoint.BetaApprovalIdentity -Id 85d173e7d57e496569df763231d6deb6a `
-Type IDENTITY `
-Name John Doe
```
- Convert the resource to JSON
```powershell
$ApprovalIdentity | ConvertTo-JSON
```
[[Back to top]](#)