add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-identity-deleted
title: IdentityDeleted
pagination_label: IdentityDeleted
sidebar_label: IdentityDeleted
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityDeleted', 'V2025IdentityDeleted']
slug: /tools/sdk/powershell/v2025/models/identity-deleted
tags: ['SDK', 'Software Development Kit', 'IdentityDeleted', 'V2025IdentityDeleted']
---
# 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.V2025IdentityDeleted -Identity null `
-Attributes {firstname=John}
```
- Convert the resource to JSON
```powershell
$IdentityDeleted | ConvertTo-JSON
```
[[Back to top]](#)