Skip to main content

MachineIdentityRequest

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]
attributesobjectA map of custom machine identity attributes[optional]
subtypestrThe subtype value associated to the machine identity[required]
ownersMachineIdentityDtoOwners[optional]
source_idstrThe source id associated to the machine identity[optional]
uuidstrThe UUID associated to the machine identity directly aggregated from a source[optional]
native_identitystrThe native identity associated to the machine identity directly aggregated from a source[optional]
user_entitlements[]MachineIdentityRequestUserEntitlementsThe user entitlements associated to the machine identity[optional]
}

Example

from sailpoint.v2025.models.machine_identity_request import MachineIdentityRequest

machine_identity_request = MachineIdentityRequest(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z',
business_application='ADService',
description='',
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.Base Reference Dto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
], ),
source_id='6d28b7c1-620c-49c6-b6d5-cbf81eb4b5fa',
uuid='f5dd23fe-3414-42b7-bb1c-869400ad7a10',
native_identity='abc:123:dddd',
user_entitlements=[
sailpoint.v2025.models.machine_identity_request_user_entitlements.Machine_Identity_Request_userEntitlements(
entitlement_id = '6d28b7c1-620c-49c6-b6d5-cbf81eb4b5fa',
source_id = '5898b7c1-620c-49c6-cccc-cbf81eb4bddd', )
]
)

[Back to top]