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

1.6 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
v2025-source-account-selections SourceAccountSelections SourceAccountSelections SourceAccountSelections pythonsdk
python
Python
sdk
SourceAccountSelections
V2025SourceAccountSelections
/tools/sdk/python/v2025/models/source-account-selections
SDK
Software Development Kit
SourceAccountSelections
V2025SourceAccountSelections

SourceAccountSelections

Properties

Name Type Description Notes
type DtoType [optional]
id str The source id [optional]
name str The source name [optional]
accounts []AccountInfoRef The accounts information for a particular source in the requested item [optional]
}

Example

from sailpoint.v2025.models.source_account_selections import SourceAccountSelections

source_account_selections = SourceAccountSelections(
type='IDENTITY',
id='3ac3c43785a845fa9820b0c1ac767cd5',
name='Test Source_Name',
accounts=[
                    sailpoint.v2025.models.account_info_ref.AccountInfoRef(
                        uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}', 
                        native_identity = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local', 
                        type = 'IDENTITY', 
                        id = 'f19d168c27374fd1aff3b483573f997f', 
                        name = 'UserAccount.761a2248b', )
                    ]
)

[Back to top]