Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AttrSyncSource.md
2025-02-20 12:59:19 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-attr-sync-source AttrSyncSource AttrSyncSource AttrSyncSource pythonsdk
python
Python
sdk
AttrSyncSource
BetaAttrSyncSource
/tools/sdk/python/beta/models/attr-sync-source
SDK
Software Development Kit
AttrSyncSource
BetaAttrSyncSource

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

from sailpoint.beta.models.attr_sync_source import AttrSyncSource

attr_sync_source = AttrSyncSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]