starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-identity-history-response
title: IdentityHistoryResponse
pagination_label: IdentityHistoryResponse
sidebar_label: IdentityHistoryResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityHistoryResponse', 'BetaIdentityHistoryResponse']
slug: /tools/sdk/python/beta/models/identity-history-response
tags: ['SDK', 'Software Development Kit', 'IdentityHistoryResponse', 'BetaIdentityHistoryResponse']
---
# IdentityHistoryResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | the identity ID | [optional]
**display_name** | **str** | the display name of the identity | [optional]
**snapshot** | **str** | the date when the identity record was created | [optional]
**deleted_date** | **str** | the date when the identity was deleted | [optional]
**access_item_count** | **map[string]int** | A map containing the count of each access item | [optional]
**attributes** | **map[string]object** | A map containing the identity attributes | [optional]
}
## Example
```python
from sailpoint.beta.models.identity_history_response import IdentityHistoryResponse
identity_history_response = IdentityHistoryResponse(
id='bc693f07e7b645539626c25954c58554',
display_name='Adam Zampa',
snapshot='2007-03-01T13:00:00.000Z',
deleted_date='2007-03-01T13:00:00.000Z',
access_item_count={app=0, role=2, entitlement=4, accessProfile=3, account=1},
attributes={jobTitle=HR Manager, location=NYC, firstname=Adam, lastname=Zampa, department=HR}
)
```
[[Back to top]](#)