mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: beta-attr-sync-source-attribute-config
|
||||
title: AttrSyncSourceAttributeConfig
|
||||
pagination_label: AttrSyncSourceAttributeConfig
|
||||
sidebar_label: AttrSyncSourceAttributeConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'AttrSyncSourceAttributeConfig', 'BetaAttrSyncSourceAttributeConfig']
|
||||
slug: /tools/sdk/python/beta/models/attr-sync-source-attribute-config
|
||||
tags: ['SDK', 'Software Development Kit', 'AttrSyncSourceAttributeConfig', 'BetaAttrSyncSourceAttributeConfig']
|
||||
---
|
||||
|
||||
# AttrSyncSourceAttributeConfig
|
||||
|
||||
Specification of source attribute sync mapping configuration for an identity attribute
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | Name of the identity attribute | [required]
|
||||
**display_name** | **str** | Display name of the identity attribute | [required]
|
||||
**enabled** | **bool** | Determines whether or not the attribute is enabled for synchronization | [required]
|
||||
**target** | **str** | Name of the source account attribute to which the identity attribute value will be synchronized if enabled | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.attr_sync_source_attribute_config import AttrSyncSourceAttributeConfig
|
||||
|
||||
attr_sync_source_attribute_config = AttrSyncSourceAttributeConfig(
|
||||
name='email',
|
||||
display_name='Email',
|
||||
enabled=True,
|
||||
target='mail'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user