Skip to main content

PublicMachineIdentityOwner

Primary owner of a machine identity exposed by the public list endpoint.

Properties

NameTypeDescriptionNotes
idstrIdentity id of the primary owner.[optional]
namestrHuman-readable display name of the primary owner.[optional]
emailstrEmail address of the primary owner.[optional]
}

Example

from sailpoint.public_machine_identities.models.public_machine_identity_owner import PublicMachineIdentityOwner

public_machine_identity_owner = PublicMachineIdentityOwner(
id='2c9180857182305e0171993735622948',
name='Alison Ferguso',
email='alison.ferguso@acme-solar.com'
)

[Back to top]