Skip to main content

MachineidentitydeletedMachineIdentity

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the machine identity.[required]
NameStringName of the machine identity.[optional]
CreatedSystem.DateTimeCreation timestamp.[required]
ModifiedSystem.DateTimeLast modified timestamp.[required]
BusinessApplicationStringAssociated business application.[optional]
DescriptionStringDescription of the machine identity.[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4The attributes assigned to the identity.[optional]
SubtypeEnum [ "AI Agent", "Application" ]Subtype of the machine identity.[required]
Owners[]MachineidentityownerreferenceList of owners.[optional]
SourceIdStringSource identifier.[optional]
UuidStringUUID of the machine identity.[optional]
NativeIdentityStringNative identity value.[optional]
ManuallyEditedBooleanIndicates if manually edited.[required][default to $false]
ManuallyCreatedBooleanIndicates if manually created.[optional] [default to $false]
DatasetIdStringDataset identifier.[optional]
SourceMachineidentitysourcereference[optional]
UserEntitlements[]MachineidentityuserentitlementsList of user entitlements.[optional]
ExistsOnSourceStringExistence status on source.[optional]

Examples

  • Prepare the resource
$MachineidentitydeletedMachineIdentity = Initialize-MachineidentitydeletedMachineIdentity  -Id 8cd6c945-0057-4a6e-ad65-9cbf3b3c71b6 `
-Name TestName `
-Created 2025-08-08T12:42:21.491666Z `
-Modified 2025-09-01T06:36:54.401476Z `
-BusinessApplication MyBusinessApplication2 `
-Description test description event `
-Attributes {"botUserId":"005KV00000BLoMCYA1"} `
-Subtype AI Agent `
-Owners null `
-SourceId c0201251a6ce4d268aba536cdd60a7f2 `
-Uuid f5dd23fe-3414-42b7-bb1c-869400ad7a10 `
-NativeIdentity abc:123:dddd1 `
-ManuallyEdited true `
-ManuallyCreated true `
-DatasetId agentforce:agents `
-Source null `
-UserEntitlements null `
-ExistsOnSource NOT_APPLICABLE
  • Convert the resource to JSON
$MachineidentitydeletedMachineIdentity | ConvertTo-JSON

[Back to top]