Skip to main content

Intelaccessaccountwire

Properties

NameTypeDescriptionNotes
IdStringUnique account identifier in Identity Security Cloud.[required]
NameStringAccount name or login value on the correlated source.[required]
SourceIntelaccesssourcewireSource metadata for the account as returned by List Accounts wire format.[optional]
DisabledBooleanTrue when the account is administratively disabled on the source.[required]
LockedBooleanTrue when the account is locked from interactive sign-in on the source.[required]
AuthoritativeBooleanTrue when the account is treated as authoritative for attribute synchronization.[required]
SystemAccountBooleanTrue when the account represents a non-interactive or system principal.[required]
IsMachineBooleanTrue when the account belongs to a machine or service identity.[required]
ManuallyCorrelatedBooleanTrue when an administrator manually correlated the account to an identity.[required]
NativeIdentityStringNative identifier string on the source directory or application.[optional]
CreatedSystem.DateTimeTimestamp when the account record was created in Identity Security Cloud.[required]
ModifiedSystem.DateTimeTimestamp when the account record was last modified in Identity Security Cloud.[required]

Examples

  • Prepare the resource
$Intelaccessaccountwire = Initialize-Intelaccessaccountwire  -Id 2c91808874ff91550175097daaec161c `
-Name jdoe `
-Source null `
-Disabled false `
-Locked false `
-Authoritative true `
-SystemAccount false `
-IsMachine false `
-ManuallyCorrelated false `
-NativeIdentity CN=jdoe,OU=Users,DC=example,DC=com `
-Created 2023-11-01T10:00Z `
-Modified 2024-02-15T16:20Z
  • Convert the resource to JSON
$Intelaccessaccountwire | ConvertTo-JSON

[Back to top]