Skip to main content

MachineidentityupdatedOwnerChanges

Changes to owners.

Properties

NameTypeDescriptionNotes
attribute_namestrName of the attribute that changed.[optional]
added[]MachineidentityownerreferenceOwners that were added.[optional]
removed[]MachineidentityownerreferenceOwners that were removed.[optional]
}

Example

from sailpoint.triggers.models.machineidentityupdated_owner_changes import MachineidentityupdatedOwnerChanges

machineidentityupdated_owner_changes = MachineidentityupdatedOwnerChanges(
attribute_name='owners',
added=[
{"type":"IDENTITY","id":"84d8c1b819144608b8b8bc3b84ddbb7b","name":"Jerrie admin3cf084","isPrimary":true}
],
removed=[
{"type":"IDENTITY","id":"84d8c1b819144608b8b8bc3b84ddbb7b","name":"Jerrie admin3cf084","isPrimary":true}
]
)

[Back to top]