diff --git a/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaEntitlementsApi.md b/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaEntitlementsApi.md index 4a3a99dee..f9f7280cd 100644 --- a/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaEntitlementsApi.md +++ b/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaEntitlementsApi.md @@ -602,7 +602,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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaSourcesApi.md b/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaSourcesApi.md index 7c00d966d..a6b75c5e8 100644 --- a/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaSourcesApi.md +++ b/docs/tools/sdk/powershell/Reference/Beta/Methods/BetaSourcesApi.md @@ -2615,7 +2615,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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementAccessRequestConfig.md b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementAccessRequestConfig.md index 57b44b085..7a1e54b73 100644 --- a/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementAccessRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementAccessRequestConfig.md @@ -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-BetaEntitlementAccessRequestConfig -ApprovalSchemes null ` -RequestCommentRequired true ` - -DenialCommentRequired false + -DenialCommentRequired false ` + -ReauthorizationRequired false ``` - Convert the resource to JSON diff --git a/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRequestConfig.md index ff165cf89..b5bdaffae 100644 --- a/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRequestConfig.md @@ -17,12 +17,14 @@ tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'BetaEntit 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-BetaEntitlementRequestConfig -AccessRequestConfig null +$EntitlementRequestConfig = Initialize-BetaEntitlementRequestConfig -AccessRequestConfig null ` + -RevocationRequestConfig null ``` - Convert the resource to JSON diff --git a/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRevocationRequestConfig.md b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRevocationRequestConfig.md new file mode 100644 index 000000000..4c3931541 --- /dev/null +++ b/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementRevocationRequestConfig.md @@ -0,0 +1,35 @@ +--- +id: beta-entitlement-revocation-request-config +title: EntitlementRevocationRequestConfig +pagination_label: EntitlementRevocationRequestConfig +sidebar_label: EntitlementRevocationRequestConfig +sidebar_class_name: powershellsdk +keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig'] +slug: /tools/sdk/powershell/beta/models/entitlement-revocation-request-config +tags: ['SDK', 'Software Development Kit', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig'] +--- + + +# 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-BetaEntitlementRevocationRequestConfig -ApprovalSchemes null +``` + +- Convert the resource to JSON +```powershell +$EntitlementRevocationRequestConfig | ConvertTo-JSON +``` + + +[[Back to top]](#) + diff --git a/docs/tools/sdk/powershell/Reference/Beta/Models/SourceEntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/Beta/Models/SourceEntitlementRequestConfig.md index e58571899..b646974fe 100644 --- a/docs/tools/sdk/powershell/Reference/Beta/Models/SourceEntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/Beta/Models/SourceEntitlementRequestConfig.md @@ -17,12 +17,14 @@ tags: ['SDK', 'Software Development Kit', 'SourceEntitlementRequestConfig', 'Bet 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-BetaSourceEntitlementRequestConfig -AccessRequestConfig null +$SourceEntitlementRequestConfig = Initialize-BetaSourceEntitlementRequestConfig -AccessRequestConfig null ` + -RevocationRequestConfig null ``` - Convert the resource to JSON diff --git a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024AccessRequestsApi.md b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024AccessRequestsApi.md index 32cd26da0..01ff1dd7f 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024AccessRequestsApi.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024AccessRequestsApi.md @@ -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, diff --git a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024EntitlementsApi.md b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024EntitlementsApi.md index a133900dc..9754e2778 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024EntitlementsApi.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024EntitlementsApi.md @@ -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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024SourcesApi.md b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024SourcesApi.md index 6af4d9b5b..2355e4dcc 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024SourcesApi.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Methods/V2024SourcesApi.md @@ -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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementAccessRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementAccessRequestConfig.md index 59d699ac5..f94288b87 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementAccessRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementAccessRequestConfig.md @@ -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 diff --git a/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRequestConfig.md index ff7f89947..97481db30 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRequestConfig.md @@ -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 diff --git a/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRevocationRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRevocationRequestConfig.md new file mode 100644 index 000000000..d9c85616c --- /dev/null +++ b/docs/tools/sdk/powershell/Reference/V2024/Models/EntitlementRevocationRequestConfig.md @@ -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]](#) + diff --git a/docs/tools/sdk/powershell/Reference/V2024/Models/SourceEntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2024/Models/SourceEntitlementRequestConfig.md index f2786fd6e..1dde61ea4 100644 --- a/docs/tools/sdk/powershell/Reference/V2024/Models/SourceEntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2024/Models/SourceEntitlementRequestConfig.md @@ -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 diff --git a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025AccessRequestsApi.md b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025AccessRequestsApi.md index 7cc8ee540..26f22059a 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025AccessRequestsApi.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025AccessRequestsApi.md @@ -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, diff --git a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025EntitlementsApi.md b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025EntitlementsApi.md index 3872cb4b6..f24b52618 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025EntitlementsApi.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025EntitlementsApi.md @@ -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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025SourcesApi.md b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025SourcesApi.md index 79a29d61b..8f3085b9f 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025SourcesApi.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Methods/V2025SourcesApi.md @@ -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" + } ] } }"@ diff --git a/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementAccessRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementAccessRequestConfig.md index 2f7b36852..b6753c775 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementAccessRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementAccessRequestConfig.md @@ -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 diff --git a/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRequestConfig.md index 742038034..647755552 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRequestConfig.md @@ -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 diff --git a/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRevocationRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRevocationRequestConfig.md new file mode 100644 index 000000000..4d3dfe384 --- /dev/null +++ b/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementRevocationRequestConfig.md @@ -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]](#) + diff --git a/docs/tools/sdk/powershell/Reference/V2025/Models/SourceEntitlementRequestConfig.md b/docs/tools/sdk/powershell/Reference/V2025/Models/SourceEntitlementRequestConfig.md index 170d2243d..e47197a58 100644 --- a/docs/tools/sdk/powershell/Reference/V2025/Models/SourceEntitlementRequestConfig.md +++ b/docs/tools/sdk/powershell/Reference/V2025/Models/SourceEntitlementRequestConfig.md @@ -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 diff --git a/static/code-examples/beta/powershell_code_examples_overlay.yaml b/static/code-examples/beta/powershell_code_examples_overlay.yaml index 9ca11684b..14c0c8cfe 100644 --- a/static/code-examples/beta/powershell_code_examples_overlay.yaml +++ b/static/code-examples/beta/powershell_code_examples_overlay.yaml @@ -3879,7 +3879,17 @@ "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" + } ] } } "@ @@ -12631,7 +12641,17 @@ "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" + } ] } } "@ diff --git a/static/code-examples/v2024/powershell_code_examples_overlay.yaml b/static/code-examples/v2024/powershell_code_examples_overlay.yaml index 888051ba1..7fb038e7c 100644 --- a/static/code-examples/v2024/powershell_code_examples_overlay.yaml +++ b/static/code-examples/v2024/powershell_code_examples_overlay.yaml @@ -1045,7 +1045,17 @@ "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, @@ -5761,7 +5771,17 @@ "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" + } ] } } "@ @@ -16733,7 +16753,17 @@ "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" + } ] } } "@ diff --git a/static/code-examples/v2025/powershell_code_examples_overlay.yaml b/static/code-examples/v2025/powershell_code_examples_overlay.yaml index 0d4436f7d..af93cd34c 100644 --- a/static/code-examples/v2025/powershell_code_examples_overlay.yaml +++ b/static/code-examples/v2025/powershell_code_examples_overlay.yaml @@ -1066,7 +1066,17 @@ "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, @@ -5782,7 +5792,17 @@ "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" + } ] } } "@ @@ -16540,7 +16560,17 @@ "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" + } ] } } "@