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: beta-identity-history-response
title: IdentityHistoryResponse
pagination_label: IdentityHistoryResponse
sidebar_label: IdentityHistoryResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityHistoryResponse', 'BetaIdentityHistoryResponse']
slug: /tools/sdk/powershell/beta/models/identity-history-response
tags: ['SDK', 'Software Development Kit', 'IdentityHistoryResponse', 'BetaIdentityHistoryResponse']
---
# IdentityHistoryResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | the identity ID | [optional]
**DisplayName** | Pointer to **String** | the display name of the identity | [optional]
**Snapshot** | Pointer to **String** | the date when the identity record was created | [optional]
**DeletedDate** | Pointer to **String** | the date when the identity was deleted | [optional]
**AccessItemCount** | Pointer to **map[string]Int32** | A map containing the count of each access item | [optional]
**Attributes** | Pointer to [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | A map containing the identity attributes | [optional]
## Examples
- Prepare the resource
```powershell
$IdentityHistoryResponse = Initialize-PSSailpoint.BetaIdentityHistoryResponse -Id bc693f07e7b645539626c25954c58554 `
-DisplayName Adam Zampa `
-Snapshot 2007-03-01T13:00:00.000Z `
-DeletedDate 2007-03-01T13:00:00.000Z `
-AccessItemCount {app=0, role=2, entitlement=4, accessProfile=3, account=1} `
-Attributes {jobTitle=HR Manager, location=NYC, firstname=Adam, lastname=Zampa, department=HR}
```
- Convert the resource to JSON
```powershell
$IdentityHistoryResponse | ConvertTo-JSON
```
[[Back to top]](#)