Update python SDK docs: 15458634025

This commit is contained in:
developer-relations-sp
2025-06-05 04:45:52 +00:00
parent 2114091848
commit 0680419cb0
18 changed files with 1547 additions and 4 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2025-attribute-mappings
title: AttributeMappings
pagination_label: AttributeMappings
sidebar_label: AttributeMappings
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AttributeMappings', 'V2025AttributeMappings']
slug: /tools/sdk/python/v2025/models/attribute-mappings
tags: ['SDK', 'Software Development Kit', 'AttributeMappings', 'V2025AttributeMappings']
---
# AttributeMappings
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**target** | [**AttributeMappingsAllOfTarget**](attribute-mappings-all-of-target) | | [optional]
**transform_definition** | [**AttributeMappingsAllOfTransformDefinition**](attribute-mappings-all-of-transform-definition) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.attribute_mappings import AttributeMappings
attribute_mappings = AttributeMappings(
target=sailpoint.v2025.models.attribute_mappings_all_of_target.AttributeMappings_allOf_target(
type = 'IDENTITY',
attribute_name = 'businessApplication',
source_id = '2c9180835d2e5168015d32f890ca1581', ),
transform_definition=sailpoint.v2025.models.attribute_mappings_all_of_transform_definition.AttributeMappings_allOf_transformDefinition(
type = 'reference',
attributes = sailpoint.v2025.models.attribute_mappings_all_of_transform_definition_attributes.AttributeMappings_allOf_transformDefinition_attributes(
input = sailpoint.v2025.models.attribute_mappings_all_of_transform_definition_attributes_input.AttributeMappings_allOf_transformDefinition_attributes_input(
type = 'accountAttribute', ), ),
id = 'ToUpper', )
)
```
[[Back to top]](#)