Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/AccessProfileSourceRef.md
2025-04-23 16:48:54 +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
access-profile-source-ref AccessProfileSourceRef AccessProfileSourceRef AccessProfileSourceRef pythonsdk
python
Python
sdk
AccessProfileSourceRef
AccessProfileSourceRef
/tools/sdk/python/v3/models/access-profile-source-ref
SDK
Software Development Kit
AccessProfileSourceRef
AccessProfileSourceRef

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.v3.models.access_profile_source_ref import AccessProfileSourceRef

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

[Back to top]