Skip to main content

MachineIdentity

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional] [readonly]
namestrName of the Object[required]
createddatetimeCreation date of the Object[optional] [readonly]
modifieddatetimeLast modification date of the Object[optional] [readonly]
business_applicationstrThe business application that the identity represents[required]
descriptionstrDescription of machine identity[optional]
manually_editedboolIndicates if the machine identity has been manually edited[optional] [default to False]
attributesobjectA map of custom machine identity attributes[optional]
subtypestrThe subtype value associated to the machine identity[required]
ownersMachineIdentityDtoOwners[optional]
}

Example

from sailpoint.v2025.models.machine_identity import MachineIdentity

machine_identity = MachineIdentity(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z',
business_application='ADService',
description='',
manually_edited=True,
attributes={"Region":"EU"},
subtype='Application',
owners=sailpoint.v2025.models.machine_identity_dto_owners.MachineIdentityDto_owners(
primary_identity = sailpoint.v2025.models.machine_identity_dto_owners_primary_identity.MachineIdentityDto_owners_primaryIdentity(),
secondary_identities = [
sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
], )
)

[Back to top]