Skip to main content

Identitycollectorlistitem

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the identity collector.[optional]
namestrThe display name of the identity collector.[optional]
typestrThe identity collector type, derived from its underlying source. Possible values include "Active Directory", "Azure Active Directory", "Google Drive", "Dropbox", "Box", "Microsoft Entra SaaS", "Snowflake", and "Databricks".[optional]
source_idstrThe identifier of the source the identity collector is associated with, represented as a UUID. Both hyphenated and non-hyphenated formats are accepted.[optional]
}

Example

from sailpoint.data_access_security.models.identitycollectorlistitem import Identitycollectorlistitem

identitycollectorlistitem = Identitycollectorlistitem(
id='12345',
name='Active Directory Identity Collector',
type='Active Directory',
source_id='2c9180835d2e5168015d32f890ca1581'
)

[Back to top]