Skip to main content

AccessProfileSourceRef

Properties

NameTypeDescriptionNotes
idstrThe ID of the Source with with which the Access Profile is associated[optional]
typeEnum [ 'SOURCE' ]The type of the Source, will always be SOURCE[optional]
namestrThe display name of the associated Source[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]