Skip to main content

Intelaccessaccountwire

Properties

NameTypeDescriptionNotes
idstrUnique account identifier in Identity Security Cloud.[required]
namestrAccount name or login value on the correlated source.[required]
sourceIntelaccesssourcewireSource metadata for the account as returned by List Accounts wire format.[optional]
disabledboolTrue when the account is administratively disabled on the source.[required]
lockedboolTrue when the account is locked from interactive sign-in on the source.[required]
authoritativeboolTrue when the account is treated as authoritative for attribute synchronization.[required]
system_accountboolTrue when the account represents a non-interactive or system principal.[required]
is_machineboolTrue when the account belongs to a machine or service identity.[required]
manually_correlatedboolTrue when an administrator manually correlated the account to an identity.[required]
native_identitystrNative identifier string on the source directory or application.[optional]
createddatetimeTimestamp when the account record was created in Identity Security Cloud.[required]
modifieddatetimeTimestamp when the account record was last modified in Identity Security Cloud.[required]
}

Example

from sailpoint.intelligence.models.intelaccessaccountwire import Intelaccessaccountwire

intelaccessaccountwire = Intelaccessaccountwire(
id='2c91808874ff91550175097daaec161c',
name='jdoe',
source=sailpoint.intelligence.models.intelaccesssourcewire.intelaccesssourcewire(
id = '2c9180835d2e5168015d32f890301e89',
name = 'Active Directory', ),
disabled=False,
locked=False,
authoritative=True,
system_account=False,
is_machine=False,
manually_correlated=False,
native_identity='CN=jdoe,OU=Users,DC=example,DC=com',
created='2023-11-01T10:00Z',
modified='2024-02-15T16:20Z'
)

[Back to top]