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,38 @@
---
id: v2025-approval-identity
title: ApprovalIdentity
pagination_label: ApprovalIdentity
sidebar_label: ApprovalIdentity
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ApprovalIdentity', 'V2025ApprovalIdentity']
slug: /tools/sdk/python/v2025/models/approval-identity
tags: ['SDK', 'Software Development Kit', 'ApprovalIdentity', 'V2025ApprovalIdentity']
---
# ApprovalIdentity
Identity Object
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The identity ID | [optional]
**type** | **Enum** [ 'IDENTITY' ] | Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc | [optional]
**name** | **str** | Name of the identity | [optional]
}
## Example
```python
from sailpoint.v2025.models.approval_identity import ApprovalIdentity
approval_identity = ApprovalIdentity(
id='85d173e7d57e496569df763231d6deb6a',
type='IDENTITY',
name='John Doe'
)
```
[[Back to top]](#)