Skip to main content

Intelmachineentityref

Typed id and name reference for owners, machine identities, and authorized humans.

Properties

NameTypeDescriptionNotes
typestrReference type label from upstream (for example IDENTITY or MACHINE_IDENTITY).[required]
idstrReferenced object identifier.[required]
namestrDisplay name for the referenced identity or entity.[required]
emailstrEmail for authorized human holders when available upstream.[optional]
}

Example

from sailpoint.intelligence.models.intelmachineentityref import Intelmachineentityref

intelmachineentityref = Intelmachineentityref(
type='IDENTITY',
id='ef38f94347e94562b5bb8424a56397d8',
name='Example User',
email='user@example.com'
)

[Back to top]