Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RevocabilityForRole.md
2025-05-07 14:37:48 +00: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
v2024-revocability-for-role RevocabilityForRole RevocabilityForRole RevocabilityForRole powershellsdk
powershell
PowerShell
sdk
RevocabilityForRole
V2024RevocabilityForRole
/tools/sdk/powershell/v2024/models/revocability-for-role
SDK
Software Development Kit
RevocabilityForRole
V2024RevocabilityForRole

RevocabilityForRole

Properties

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

Examples

  • Prepare the resource
$RevocabilityForRole = Initialize-V2024RevocabilityForRole  -CommentsRequired false `
 -DenialCommentsRequired false `
 -ApprovalSchemes null
  • Convert the resource to JSON
$RevocabilityForRole | ConvertTo-JSON

[Back to top]