Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/SourceItemRef.md
2025-04-14 20:23:46 +00:00

1.2 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
source-item-ref SourceItemRef SourceItemRef SourceItemRef pythonsdk
python
Python
sdk
SourceItemRef
SourceItemRef
/tools/sdk/python/v3/models/source-item-ref
SDK
Software Development Kit
SourceItemRef
SourceItemRef

SourceItemRef

Properties

Name Type Description Notes
source_id str The id for the source on which account selections are made [optional]
accounts []AccountItemRef A list of account selections on the source. Currently, only one selection per source is supported. [optional]
}

Example

from sailpoint.v3.models.source_item_ref import SourceItemRef

source_item_ref = SourceItemRef(
source_id='cb89bc2f1ee6445fbea12224c526ba3a',
accounts=[
                    sailpoint.v3.models.account_item_ref.AccountItemRef(
                        account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}', 
                        native_identity = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local', )
                    ]
)

[Back to top]