adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-revocability-for-role
title: RevocabilityForRole
pagination_label: RevocabilityForRole
sidebar_label: RevocabilityForRole
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RevocabilityForRole']
slug: /tools/sdk/powershell/v2024/models/revocability-for-role
tags: ['SDK', 'Software Development Kit', 'RevocabilityForRole']
---
# RevocabilityForRole
## 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 [**[]ApprovalSchemeForRole**](approval-scheme-for-role) | List describing the steps in approving the revocation request | [optional]
## Examples
- Prepare the resource
```powershell
$RevocabilityForRole = Initialize-PSSailpoint.V2024RevocabilityForRole -CommentsRequired false `
-DenialCommentsRequired false `
-ApprovalSchemes null
```
- Convert the resource to JSON
```powershell
$RevocabilityForRole | ConvertTo-JSON
```
[[Back to top]](#)