Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SodRecipient.md
2025-01-28 13:29:29 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-sod-recipient SodRecipient SodRecipient SodRecipient powershellsdk
powershell
PowerShell
sdk
SodRecipient
BetaSodRecipient
/tools/sdk/powershell/beta/models/sod-recipient
SDK
Software Development Kit
SodRecipient
BetaSodRecipient

SodRecipient

Properties

Name Type Description Notes
Type Pointer to Enum [ "IDENTITY" ] SOD policy recipient DTO type. [optional]
Id Pointer to String SOD policy recipient's identity ID. [optional]
Name Pointer to String SOD policy recipient's display name. [optional]

Examples

  • Prepare the resource
$SodRecipient = Initialize-PSSailpoint.BetaSodRecipient  -Type IDENTITY `
 -Id 2c7180a46faadee4016fb4e018c20642 `
 -Name Michael Michaels
  • Convert the resource to JSON
$SodRecipient | ConvertTo-JSON

[Back to top]