Skip to main content

Intelmachineaccountwire

Properties

NameTypeDescriptionNotes
IdStringUnique account identifier in Identity Security Cloud.[required]
NameStringAccount name on the correlated source.[required]
NativeIdentityStringNative identifier on the source system.[required]
SourceIntelmachinesourcewireSource metadata for the machine account when present upstream.[required]
EnabledBooleanTrue when the account is enabled for use on the source.[required]
LockedBooleanTrue when the account is locked on the source.[required]
MachineIdentityIntelmachineentityrefReference to the parent machine identity when populated upstream.[required]
OwnerIdentityIntelmachineentityrefReference to the owning human identity when populated upstream.[required]
DescriptionStringFree-text account description from the source.[required]
SubtypeStringAccount subtype label from upstream classification.[required]
AccessTypeStringAccess type label for the account (for example account or entitlement).[required]
EnvironmentStringEnvironment label associated with the account.[required]
ClassificationMethodStringMethod used to classify the account as a machine account.[required]
ManuallyEditedBooleanTrue when an administrator manually edited account attributes.[required]
ManuallyCorrelatedBooleanTrue when an administrator manually correlated the account.[required]
HasEntitlementsBooleanTrue when the account holds one or more entitlements.[required]
CreatedSystem.DateTimeTimestamp when the account record was created.[required]
ModifiedSystem.DateTimeTimestamp when the account record was last modified.[required]
Attributesmap[string]AnyTypeExtended account attributes from the source connector.[required]
ConnectorAttributesmap[string]AnyTypeConnector-specific attribute bag from upstream.[required]

Examples

  • Prepare the resource
$Intelmachineaccountwire = Initialize-Intelmachineaccountwire  -Id 2c91808874ff91550175097daaec161c `
-Name account-name `
-NativeIdentity arn:aws:bedrock:us-east-1:336721:agent/ABCDEFGHI `
-Source null `
-Enabled true `
-Locked false `
-MachineIdentity null `
-OwnerIdentity null `
-Description Service account for automation `
-Subtype Service Account `
-AccessType account `
-Environment production `
-ClassificationMethod DISCOVERED `
-ManuallyEdited false `
-ManuallyCorrelated false `
-HasEntitlements true `
-Created 2026-01-01T00:00Z `
-Modified 2026-05-01T00:00Z `
-Attributes {} `
-ConnectorAttributes {}
  • Convert the resource to JSON
$Intelmachineaccountwire | ConvertTo-JSON

[Back to top]