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: v2024-identity-association-details
title: IdentityAssociationDetails
pagination_label: IdentityAssociationDetails
sidebar_label: IdentityAssociationDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentityAssociationDetails', 'V2024IdentityAssociationDetails']
slug: /tools/sdk/python/v2024/models/identity-association-details
tags: ['SDK', 'Software Development Kit', 'IdentityAssociationDetails', 'V2024IdentityAssociationDetails']
---
# IdentityAssociationDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **str** | any additional context information of the http call result | [optional]
**association_details** | [**[]IdentityAssociationDetailsAssociationDetailsInner**](identity-association-details-association-details-inner) | list of all the resource associations for the identity | [optional]
}
## Example
```python
from sailpoint.v2024.models.identity_association_details import IdentityAssociationDetails
identity_association_details = IdentityAssociationDetails(
message='Identity cannot be deleted as it is owner of following resources',
association_details=[
sailpoint.v2024.models.identity_association_details_association_details_inner.IdentityAssociationDetails_associationDetails_inner(
association_type = 'CAMPAIGN_OWNER',
entities = {id=b660a232f05b4e04812ca974b3011e0f, name=Gaston.800ddf9640a, type=CAMPAIGN_CAMPAIGNER}, )
]
)
```
[[Back to top]](#)