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-identity-deleted
title: IdentityDeleted
pagination_label: IdentityDeleted
sidebar_label: IdentityDeleted
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityDeleted', 'BetaIdentityDeleted']
slug: /tools/sdk/powershell/beta/models/identity-deleted
tags: ['SDK', 'Software Development Kit', 'IdentityDeleted', 'BetaIdentityDeleted']
---
# IdentityDeleted
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Identity** | [**IdentityDeletedIdentity**](identity-deleted-identity) | | [required]
**Attributes** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | The attributes assigned to the identity. Attributes are determined by the identity profile. | [required]
## Examples
- Prepare the resource
```powershell
$IdentityDeleted = Initialize-PSSailpoint.BetaIdentityDeleted -Identity null `
-Attributes {firstname=John}
```
- Convert the resource to JSON
```powershell
$IdentityDeleted | ConvertTo-JSON
```
[[Back to top]](#)