Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/RequestOnBehalfOfConfig.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.2 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
request-on-behalf-of-config RequestOnBehalfOfConfig RequestOnBehalfOfConfig RequestOnBehalfOfConfig powershellsdk
powershell
PowerShell
sdk
RequestOnBehalfOfConfig
/tools/sdk/powershell/beta/models/request-on-behalf-of-config
SDK
Software Development Kit
RequestOnBehalfOfConfig

RequestOnBehalfOfConfig

Properties

Name Type Description Notes
AllowRequestOnBehalfOfAnyoneByAnyone Pointer to Boolean If this is true, anyone can request access for anyone. [optional] [default to $false]
AllowRequestOnBehalfOfEmployeeByManager Pointer to Boolean If this is true, a manager can request access for his or her direct reports. [optional] [default to $false]

Examples

  • Prepare the resource
$RequestOnBehalfOfConfig = Initialize-PSSailpoint.BetaRequestOnBehalfOfConfig  -AllowRequestOnBehalfOfAnyoneByAnyone true `
 -AllowRequestOnBehalfOfEmployeeByManager true
  • Convert the resource to JSON
$RequestOnBehalfOfConfig | ConvertTo-JSON

[Back to top]