Skip to main content

MachineIdentityRequest

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]
Attributes[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0A map of custom machine identity attributes[optional]
SubtypeStringThe subtype value associated to the machine identity[required]
OwnersMachineIdentityDtoOwners[optional]
SourceIdStringThe source id associated to the machine identity[optional]
UuidStringThe UUID associated to the machine identity directly aggregated from a source[optional]
NativeIdentityStringThe native identity associated to the machine identity directly aggregated from a source[optional]
UserEntitlements[]MachineIdentityRequestUserEntitlementsThe user entitlements associated to the machine identity[optional]

Examples

  • Prepare the resource
$MachineIdentityRequest = Initialize-V2025MachineIdentityRequest  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-BusinessApplication ADService `
-Description `
-Attributes {"Region":"EU"} `
-Subtype Application `
-Owners null `
-SourceId 6d28b7c1-620c-49c6-b6d5-cbf81eb4b5fa `
-Uuid f5dd23fe-3414-42b7-bb1c-869400ad7a10 `
-NativeIdentity abc:123:dddd `
-UserEntitlements null
  • Convert the resource to JSON
$MachineIdentityRequest | ConvertTo-JSON

[Back to top]