Skip to main content

PublicMachineIdentity

Reduced machine identity details for public catalog and request workflows.

Properties

NameTypeDescriptionNotes
idstrMachine identity id.[optional]
namestrHuman-readable display name of the machine identity.[optional]
descriptionstrDescription of the machine identity.[optional]
subtypestrMachine identity subtype. Present when your tenant returns enriched public machine identity data; otherwise omitted or null.[optional]
ownerPublicMachineIdentityOwner[optional]
}

Example

from sailpoint.public_machine_identities.models.public_machine_identity import PublicMachineIdentity

public_machine_identity = PublicMachineIdentity(
id='2c9180857182305e0171993735622948',
name='Production API Agent',
description='Agent used for nightly reconciliation jobs.',
subtype='AI Agent',
owner=sailpoint.public_machine_identities.models.public_machine_identity_owner.Public Machine Identity Owner(
id = '2c9180857182305e0171993735622948',
name = 'Alison Ferguso',
email = 'alison.ferguso@acme-solar.com', )
)

[Back to top]