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,38 @@
---
id: v2024-attr-sync-source
title: AttrSyncSource
pagination_label: AttrSyncSource
sidebar_label: AttrSyncSource
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AttrSyncSource', 'V2024AttrSyncSource']
slug: /tools/sdk/python/v2024/models/attr-sync-source
tags: ['SDK', 'Software Development Kit', 'AttrSyncSource', 'V2024AttrSyncSource']
---
# AttrSyncSource
Target source for attribute synchronization.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'SOURCE' ] | DTO type of target source for attribute synchronization. | [optional]
**id** | **str** | ID of target source for attribute synchronization. | [optional]
**name** | **str** | Human-readable name of target source for attribute synchronization. | [optional]
}
## Example
```python
from sailpoint.v2024.models.attr_sync_source import AttrSyncSource
attr_sync_source = AttrSyncSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)
```
[[Back to top]](#)