Skip to main content

Updateidentitycollectorrequest

Properties

NameTypeDescriptionNotes
namestrThe display name of the identity collector. Must be unique within the tenant.[required]
source_idstrThe identifier of the associated source, represented as a UUID. Both hyphenated and non-hyphenated formats are accepted. This value cannot be modified for an existing identity collector and must match the current value.[required]
typestrThe identity collector type. This value cannot be modified for an existing identity collector and must match the current value.[required]
}

Example

from sailpoint.data_access_security.models.updateidentitycollectorrequest import Updateidentitycollectorrequest

updateidentitycollectorrequest = Updateidentitycollectorrequest(
name='Active Directory Identity Collector',
source_id='2c9180835d2e5168015d32f890ca1581',
type='Active Directory'
)

[Back to top]