mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
Update to python SDK docs: 14455009748
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: v2025-source-item-ref
|
||||
title: SourceItemRef
|
||||
pagination_label: SourceItemRef
|
||||
sidebar_label: SourceItemRef
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SourceItemRef', 'V2025SourceItemRef']
|
||||
slug: /tools/sdk/python/v2025/models/source-item-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'SourceItemRef', 'V2025SourceItemRef']
|
||||
---
|
||||
|
||||
# SourceItemRef
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**source_id** | **str** | The id for the source on which account selections are made | [optional]
|
||||
**accounts** | [**[]AccountItemRef**](account-item-ref) | A list of account selections on the source. Currently, only one selection per source is supported. | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.source_item_ref import SourceItemRef
|
||||
|
||||
source_item_ref = SourceItemRef(
|
||||
source_id='cb89bc2f1ee6445fbea12224c526ba3a',
|
||||
accounts=[
|
||||
sailpoint.v2025.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user