Skip to main content

Intelidentityenvelope

Properties

NameTypeDescriptionNotes
IdStringIdentity Security Cloud identifier for this non-human identity.[required]
TypeEnum [ "Human", "NHI" ]Identity type for the matched record.[required]
DisplayNameStringPreferred display name for the non-human identity.[optional]
DescriptionStringOptional description from upstream when present.[optional]
SubtypeStringSub-classification label for that NHI.[optional]
Attributesmap[string]AnyTypeConnector or runtime metadata; empty object when absent upstream.[required]
CreatedSystem.DateTimeTimestamp when the identity record was created in Identity Security Cloud.[optional]
ModifiedSystem.DateTimeTimestamp when the identity record was last modified in Identity Security Cloud.[optional]
AliasStringPrimary login or account alias for the identity.[optional]
EmailStringPrimary business email address for the identity.[optional]
IdentityStatusStringCurrent identity lifecycle status label from Identity Security Cloud.[optional]
IsManagerBooleanTrue when the identity is flagged as a people manager in the organization.[optional] [default to $false]
IdentityGraphIntelidentitygraphlinkOmitted when the tenant lacks the idg:base license.[optional]
AccountsIntelmachineaccountsslice[required]
PrivilegedAccessIntelPrivilegedAccessSliceFull privileged access result for the identity.[required]
OutliersIntelOutliersSliceRare access slice; omitted when the tenant lacks the IDA-outliers license.[optional]
AccessHistoryIntelAccessHistoryAccess-history split into access items and certifications sub-slices.[required]
MatchConfidenceEnum [ "exact", "partial" ]Match quality for opaque prefix resolution; omitted for direct id eq and exact opaque matches.[optional]
NativeIdentityStringNative identifier on the source system.[required]
DatasetIdStringDataset identifier from upstream machine-identity services when present.[optional]
SourceIntelmachinesourcewireSource metadata for the machine identity when present upstream.[optional]
ExistsOnSourceStringUpstream existsOnSource value. Wire uses uppercase strings such as TRUE or FALSE.[optional]
ManuallyEditedBooleanTrue when an administrator manually edited machine identity attributes.[optional] [default to $false]
ManuallyCreatedBooleanTrue when the machine identity was created manually in Identity Security Cloud.[optional] [default to $false]
OwnersIntelmachineidentityowners[required]
UserEntitlements[]IntelmachineuserentitlementEntitlements associated with the machine identity from upstream.[optional]
DerivedIntelmachinederived[required]

Examples

  • Prepare the resource
$Intelidentityenvelope = Initialize-Intelidentityenvelope  -Id ef38f94347e94562b5bb8424a56397d8 `
-Type Human `
-DisplayName display name `
-Description null `
-Subtype AI Agent `
-Attributes {} `
-Created 2026-05-12T08:00Z `
-Modified 2026-05-12T09:15:30Z `
-Alias example.user `
-Email user@example.com `
-IdentityStatus ACTIVE `
-IsManager false `
-IdentityGraph null `
-Accounts null `
-PrivilegedAccess null `
-Outliers null `
-AccessHistory null `
-MatchConfidence exact `
-NativeIdentity arn:aws:bedrock:us-east-1:336721:agent/ABCDEFGHI `
-DatasetId dataset-001 `
-Source null `
-ExistsOnSource TRUE `
-ManuallyEdited false `
-ManuallyCreated false `
-Owners null `
-UserEntitlements null `
-Derived null
  • Convert the resource to JSON
$Intelidentityenvelope | ConvertTo-JSON

[Back to top]