Skip to main content

Identitycollectordependency

A dependent object blocking deletion of an identity collector.

Properties

NameTypeDescriptionNotes
namestrThe display name of the dependent object. For applications, the platform dependency query may prefix the object name (for example, Application - Finance SharePoint).[optional]
typestrThe internal dependent object type identifier (fully qualified type name).[optional]
type_display_namestrThe human-readable display name of the dependent object type.[optional]
}

Example

from sailpoint.data_access_security.models.identitycollectordependency import Identitycollectordependency

identitycollectordependency = Identitycollectordependency(
name='Application - Finance SharePoint',
type='WBX.WhiteOPS.ServerCore.BAM',
type_display_name='Application'
)

[Back to top]