Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/IdentityHistoryResponse.md
2025-02-03 22:09:17 +00:00

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-identity-history-response IdentityHistoryResponse IdentityHistoryResponse IdentityHistoryResponse powershellsdk
powershell
PowerShell
sdk
IdentityHistoryResponse
BetaIdentityHistoryResponse
/tools/sdk/powershell/beta/models/identity-history-response
SDK
Software Development Kit
IdentityHistoryResponse
BetaIdentityHistoryResponse

IdentityHistoryResponse

Properties

Name Type Description Notes
Id String the identity ID [optional]
DisplayName String the display name of the identity [optional]
Snapshot String the date when the identity record was created [optional]
DeletedDate String the date when the identity was deleted [optional]
AccessItemCount map[string]Int32 A map containing the count of each access item [optional]
Attributes [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
$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
$IdentityHistoryResponse | ConvertTo-JSON

[Back to top]