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,39 @@
---
id: beta-identity-summary
title: IdentitySummary
pagination_label: IdentitySummary
sidebar_label: IdentitySummary
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentitySummary', 'BetaIdentitySummary']
slug: /tools/sdk/python/beta/models/identity-summary
tags: ['SDK', 'Software Development Kit', 'IdentitySummary', 'BetaIdentitySummary']
---
# IdentitySummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of this identity summary | [optional]
**name** | **str** | Human-readable display name of identity | [optional]
**identity_id** | **str** | ID of the identity that this summary represents | [optional]
**completed** | **bool** | Indicates if all access items for this summary have been decided on | [optional] [default to False]
}
## Example
```python
from sailpoint.beta.models.identity_summary import IdentitySummary
identity_summary = IdentitySummary(
id='ff80818155fe8c080155fe8d925b0316',
name='SailPoint Services',
identity_id='c15b9f5cca5a4e9599eaa0e64fa921bd',
completed=True
)
```
[[Back to top]](#)