Skip to main content

PublicMachineIdentity

Properties

NameTypeDescriptionNotes
IdStringMachine identity id.[optional]
NameStringHuman-readable display name of the machine identity.[optional]
DescriptionStringDescription of the machine identity.[optional]
SubtypeStringMachine identity subtype. Present when your tenant returns enriched public machine identity data; otherwise omitted or null.[optional]
OwnerPublicMachineIdentityOwner[optional]

Examples

  • Prepare the resource
$PublicMachineIdentity = Initialize-PublicMachineIdentity  -Id 2c9180857182305e0171993735622948 `
-Name Production API Agent `
-Description Agent used for nightly reconciliation jobs. `
-Subtype AI Agent `
-Owner null
  • Convert the resource to JSON
$PublicMachineIdentity | ConvertTo-JSON

[Back to top]