Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccessProfileSourceRef.md
2025-04-01 21:14:08 +00: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
v2024-access-profile-source-ref AccessProfileSourceRef AccessProfileSourceRef AccessProfileSourceRef pythonsdk
python
Python
sdk
AccessProfileSourceRef
V2024AccessProfileSourceRef
/tools/sdk/python/v2024/models/access-profile-source-ref
SDK
Software Development Kit
AccessProfileSourceRef
V2024AccessProfileSourceRef

AccessProfileSourceRef

Properties

Name Type Description Notes
id str ID of the source the access profile is associated with. [optional]
type Enum [ 'SOURCE' ] Source's DTO type. [optional]
name str Source name. [optional]
}

Example

from sailpoint.v2024.models.access_profile_source_ref import AccessProfileSourceRef

access_profile_source_ref = AccessProfileSourceRef(
id='2c91809773dee3610173fdb0b6061ef4',
type='SOURCE',
name='ODS-AD-SOURCE'
)

[Back to top]