mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
Update to powershell SDK docs: 15023035004
This commit is contained in:
@@ -918,7 +918,17 @@ $AccessRequestConfig = @"{
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ],
|
||||
"reauthorizationRequired" : false,
|
||||
"requestCommentRequired" : true
|
||||
},
|
||||
"revocationRequestConfig" : {
|
||||
"approvalSchemes" : [ {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
}, {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ]
|
||||
}
|
||||
},
|
||||
"reauthorizationEnabled" : true,
|
||||
|
||||
@@ -650,7 +650,17 @@ $EntitlementRequestConfig = @"{
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ],
|
||||
"reauthorizationRequired" : false,
|
||||
"requestCommentRequired" : true
|
||||
},
|
||||
"revocationRequestConfig" : {
|
||||
"approvalSchemes" : [ {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
}, {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ]
|
||||
}
|
||||
}"@
|
||||
|
||||
|
||||
@@ -2958,7 +2958,17 @@ $SourceEntitlementRequestConfig = @"{
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ],
|
||||
"reauthorizationRequired" : false,
|
||||
"requestCommentRequired" : true
|
||||
},
|
||||
"revocationRequestConfig" : {
|
||||
"approvalSchemes" : [ {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
}, {
|
||||
"approverId" : "e3eab852-8315-467f-9de7-70eda97f63c8",
|
||||
"approverType" : "GOVERNANCE_GROUP"
|
||||
} ]
|
||||
}
|
||||
}"@
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
|
||||
**ApprovalSchemes** | [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
|
||||
**RequestCommentRequired** | **Boolean** | If the requester must provide a comment during access request. | [optional] [default to $false]
|
||||
**DenialCommentRequired** | **Boolean** | If the reviewer must provide a comment when denying the access request. | [optional] [default to $false]
|
||||
**ReauthorizationRequired** | **Boolean** | Is Reauthorization Required | [optional] [default to $false]
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -26,7 +27,8 @@ Name | Type | Description | Notes
|
||||
```powershell
|
||||
$EntitlementAccessRequestConfig = Initialize-V2025EntitlementAccessRequestConfig -ApprovalSchemes null `
|
||||
-RequestCommentRequired true `
|
||||
-DenialCommentRequired false
|
||||
-DenialCommentRequired false `
|
||||
-ReauthorizationRequired false
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
@@ -17,12 +17,14 @@ tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'V2025Enti
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessRequestConfig** | [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
**RevocationRequestConfig** | [**EntitlementRevocationRequestConfig**](entitlement-revocation-request-config) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$EntitlementRequestConfig = Initialize-V2025EntitlementRequestConfig -AccessRequestConfig null
|
||||
$EntitlementRequestConfig = Initialize-V2025EntitlementRequestConfig -AccessRequestConfig null `
|
||||
-RevocationRequestConfig null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
---
|
||||
id: v2025-entitlement-revocation-request-config
|
||||
title: EntitlementRevocationRequestConfig
|
||||
pagination_label: EntitlementRevocationRequestConfig
|
||||
sidebar_label: EntitlementRevocationRequestConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementRevocationRequestConfig', 'V2025EntitlementRevocationRequestConfig']
|
||||
slug: /tools/sdk/powershell/v2025/models/entitlement-revocation-request-config
|
||||
tags: ['SDK', 'Software Development Kit', 'EntitlementRevocationRequestConfig', 'V2025EntitlementRevocationRequestConfig']
|
||||
---
|
||||
|
||||
|
||||
# EntitlementRevocationRequestConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**ApprovalSchemes** | [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$EntitlementRevocationRequestConfig = Initialize-V2025EntitlementRevocationRequestConfig -ApprovalSchemes null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$EntitlementRevocationRequestConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -17,12 +17,14 @@ tags: ['SDK', 'Software Development Kit', 'SourceEntitlementRequestConfig', 'V20
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessRequestConfig** | [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
**RevocationRequestConfig** | [**EntitlementRevocationRequestConfig**](entitlement-revocation-request-config) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SourceEntitlementRequestConfig = Initialize-V2025SourceEntitlementRequestConfig -AccessRequestConfig null
|
||||
$SourceEntitlementRequestConfig = Initialize-V2025SourceEntitlementRequestConfig -AccessRequestConfig null `
|
||||
-RevocationRequestConfig null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
Reference in New Issue
Block a user