Update to powershell SDK docs: 15023035004

This commit is contained in:
developer-relations-sp
2025-05-14 14:14:03 +00:00
parent 1da87f2e41
commit d5eba63d0e
23 changed files with 292 additions and 9 deletions

View File

@@ -864,7 +864,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,

View File

@@ -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"
} ]
}
}"@

View File

@@ -2963,7 +2963,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"
} ]
}
}"@

View File

@@ -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-V2024EntitlementAccessRequestConfig -ApprovalSchemes null `
-RequestCommentRequired true `
-DenialCommentRequired false
-DenialCommentRequired false `
-ReauthorizationRequired false
```
- Convert the resource to JSON

View File

@@ -17,12 +17,14 @@ tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'V2024Enti
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-V2024EntitlementRequestConfig -AccessRequestConfig null
$EntitlementRequestConfig = Initialize-V2024EntitlementRequestConfig -AccessRequestConfig null `
-RevocationRequestConfig null
```
- Convert the resource to JSON

View File

@@ -0,0 +1,35 @@
---
id: v2024-entitlement-revocation-request-config
title: EntitlementRevocationRequestConfig
pagination_label: EntitlementRevocationRequestConfig
sidebar_label: EntitlementRevocationRequestConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementRevocationRequestConfig', 'V2024EntitlementRevocationRequestConfig']
slug: /tools/sdk/powershell/v2024/models/entitlement-revocation-request-config
tags: ['SDK', 'Software Development Kit', 'EntitlementRevocationRequestConfig', 'V2024EntitlementRevocationRequestConfig']
---
# 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-V2024EntitlementRevocationRequestConfig -ApprovalSchemes null
```
- Convert the resource to JSON
```powershell
$EntitlementRevocationRequestConfig | ConvertTo-JSON
```
[[Back to top]](#)

View File

@@ -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-V2024SourceEntitlementRequestConfig -AccessRequestConfig null
$SourceEntitlementRequestConfig = Initialize-V2024SourceEntitlementRequestConfig -AccessRequestConfig null `
-RevocationRequestConfig null
```
- Convert the resource to JSON