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,37 @@
---
id: beta-identity-entities-identity-entity
title: IdentityEntitiesIdentityEntity
pagination_label: IdentityEntitiesIdentityEntity
sidebar_label: IdentityEntitiesIdentityEntity
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityEntitiesIdentityEntity', 'BetaIdentityEntitiesIdentityEntity']
slug: /tools/sdk/python/beta/models/identity-entities-identity-entity
tags: ['SDK', 'Software Development Kit', 'IdentityEntitiesIdentityEntity', 'BetaIdentityEntitiesIdentityEntity']
---
# 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.beta.models.identity_entities_identity_entity import IdentityEntitiesIdentityEntity
identity_entities_identity_entity = IdentityEntitiesIdentityEntity(
id='031034e97f094a4096c1be53f75f6b91',
name='Gaston.800ddf9640a',
type='CAMPAIGN_CAMPAIGNER'
)
```
[[Back to top]](#)