Skip to main content

LifecycleOwnerReference

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'WORKGROUP' ]Owner reference type.[optional]
idstrIdentifier of the owner.[optional]
namestrDisplay name of the owner.[optional]
}

Example

from sailpoint.machine_identities_lifecycle_actions.models.lifecycle_owner_reference import LifecycleOwnerReference

lifecycle_owner_reference = LifecycleOwnerReference(
type='IDENTITY',
id='2c9180858082150f0180893dbaf44201',
name='Pat Manager'
)

[Back to top]