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,37 @@
---
id: v2025-identity-entities-identity-entity
title: IdentityEntitiesIdentityEntity
pagination_label: IdentityEntitiesIdentityEntity
sidebar_label: IdentityEntitiesIdentityEntity
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityEntitiesIdentityEntity', 'V2025IdentityEntitiesIdentityEntity']
slug: /tools/sdk/python/v2025/models/identity-entities-identity-entity
tags: ['SDK', 'Software Development Kit', 'IdentityEntitiesIdentityEntity', 'V2025IdentityEntitiesIdentityEntity']
---
# IdentityEntitiesIdentityEntity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | id of the resource to which the identity is associated | [optional]
**name** | **str** | name of the resource to which the identity is associated | [optional]
**type** | **str** | type of the resource to which the identity is associated | [optional]
}
## Example
```python
from sailpoint.v2025.models.identity_entities_identity_entity import IdentityEntitiesIdentityEntity
identity_entities_identity_entity = IdentityEntitiesIdentityEntity(
id='031034e97f094a4096c1be53f75f6b91',
name='Gaston.800ddf9640a',
type='CAMPAIGN_CAMPAIGNER'
)
```
[[Back to top]](#)