Skip to main content

AccessItemRequestedFor

Properties

NameTypeDescriptionNotes
TypeEnum [ "IDENTITY", "MACHINE_IDENTITY" ]DTO type of identity the access item is requested for. IDENTITY for human identities. MACHINE_IDENTITY for machine identities. When MACHINE_IDENTITY, id is the machine identity id.[optional]
IdStringID of identity the access item is requested for.[optional]
NameStringHuman-readable display name of identity the access item is requested for.[optional]

Examples

  • Prepare the resource
$AccessItemRequestedFor = Initialize-AccessItemRequestedFor -Type IDENTITY `
-Id 2c4180a46faadee4016fb4e018c20626 `
-Name Robert Robinson
  • Convert the resource to JSON
$AccessItemRequestedFor | ConvertTo-JSON

[Back to top]