Skip to main content

Machineidentityownerreference

Reference to an owner of the machine identity.

Properties

NameTypeDescriptionNotes
typestrOwner's type.[required]
idstrOwner ID.[required]
namestrOwner's display name.[required]
is_primaryboolIndicates if this owner is the primary owner.[optional] [default to False]
}

Example

from sailpoint.triggers.models.machineidentityownerreference import Machineidentityownerreference

machineidentityownerreference = Machineidentityownerreference(
type='IDENTITY',
id='84d8c1b819144608b8b8bc3b84ddbb7b',
name='Jerrie admin3cf084',
is_primary=True
)

[Back to top]