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

1.3 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
requestability Requestability Requestability Requestability powershellsdk
powershell
PowerShell
sdk
Requestability
Requestability
/tools/sdk/powershell/v3/models/requestability
SDK
Software Development Kit
Requestability
Requestability

Requestability

Properties

Name Type Description Notes
CommentsRequired Pointer to Boolean Whether the requester of the containing object must provide comments justifying the request [optional] [default to $false]
DenialCommentsRequired Pointer to Boolean Whether an approver must provide comments when denying the request [optional] [default to $false]
ApprovalSchemes Pointer to []AccessProfileApprovalScheme List describing the steps in approving the request [optional]

Examples

  • Prepare the resource
$Requestability = Initialize-PSSailpoint.V3Requestability  -CommentsRequired true `
 -DenialCommentsRequired true `
 -ApprovalSchemes null
  • Convert the resource to JSON
$Requestability | ConvertTo-JSON

[Back to top]