Skip to main content

MachineIdentity

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
BusinessApplicationStringThe business application that the identity represents[required]
DescriptionStringDescription of machine identity[optional]
ManuallyEditedBooleanIndicates if the machine identity has been manually edited[optional] [default to $false]
Attributes[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0A map of custom machine identity attributes[optional]

Examples

  • Prepare the resource
$MachineIdentity = Initialize-PSSailpoint.V2024MachineIdentity  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-BusinessApplication ADService `
-Description `
-ManuallyEdited true `
-Attributes {"Region":"EU"}
  • Convert the resource to JSON
$MachineIdentity | ConvertTo-JSON

[Back to top]