Skip to main content

Machineaccount

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]
descriptionstrA description of the machine account[optional]
native_identitystrThe unique ID of the machine account generated by the source system[required]
uuidstrThe unique ID of the account as determined by the account schema[optional]
classification_methodEnum [ 'SOURCE', 'CRITERIA', 'DISCOVERY', 'MANUAL' ]Classification Method[required]
machine_identityobjectThe machine identity this account is associated with[optional]
owner_identityobjectThe identity who owns this account.[optional]
access_typestrThe connection type of the source this account is from[optional]
subtypestrThe sub-type[optional]
environmentstrEnvironment[optional]
attributesmap[string]objectCustom attributes specific to the machine account[optional]
connector_attributesmap[string]objectThe connector attributes for the account[required]
manually_correlatedboolIndicates if the account has been manually correlated to an identity[optional] [default to False]
manually_editedboolIndicates if the account has been manually edited[required][default to False]
lockedboolIndicates if the account is currently locked[required]
enabledboolIndicates if the account is enabled[required][default to False]
has_entitlementsboolIndicates if the account has entitlements[required][default to True]
sourceobjectThe source this machine account belongs to.[required]
}

Example

from sailpoint.machine_accounts.models.machineaccount import Machineaccount

machineaccount = Machineaccount(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z',
description='Service account for Active Directory',
native_identity='552775',
uuid='{b0dce506-d6d4-44d2-8a32-d9a5b21fb175}',
classification_method='SOURCE',
machine_identity={"id":"1540e5a4-6c2e-4bf1-b88e-c08cae0696e9","type":"MACHINE_IDENTITY","name":"SVC_ADService"},
owner_identity={"id":"2c918084660f45d6016617daa9210584","type":"IDENTITY","name":"Adam Kennedy"},
access_type='direct',
subtype='',
environment='TEST',
attributes={"firstName":"SailPoint","lastName":"Support","displayName":"SailPoint Support"},
connector_attributes={"mail":"machine-178@sailpoint.com","givenName":"Support","displayName":"SailPoint Support"},
manually_correlated=True,
manually_edited=True,
locked=False,
enabled=False,
has_entitlements=False,
source={"id":"8d3e0094e99445de98eef6c75e25jc04","type":"SOURCE","name":"Active Directory"}
)

[Back to top]