Update to powershell SDK docs: 14535391935

This commit is contained in:
developer-relations-sp
2025-04-18 12:49:51 +00:00
parent fd8b796cb5
commit 254f62756c
3 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ $AccessModelMetadata = Initialize-PSSailpoint.V2025AccessModelMetadata -Key isc
-Multiselect true ` -Multiselect true `
-Status active ` -Status active `
-Type governance ` -Type governance `
-ObjectTypes null ` -ObjectTypes [general] `
-Description Indicates the type of deployment environment of an access item. ` -Description Indicates the type of deployment environment of an access item. `
-Values null -Values null
``` ```

View File

@@ -22,8 +22,8 @@ Name | Type | Description | Notes
**Value** | **String** | The value of the entitlement | [optional] **Value** | **String** | The value of the entitlement | [optional]
**SourceSchemaObjectType** | **String** | The object type of the entitlement from the source schema | [optional] **SourceSchemaObjectType** | **String** | The object type of the entitlement from the source schema | [optional]
**Description** | **String** | The description of the entitlement | [optional] **Description** | **String** | The description of the entitlement | [optional]
**Privileged** | **Boolean** | True if the entitlement is privileged | [optional] **Privileged** | **Boolean** | True if the entitlement is privileged | [optional] [default to $false]
**CloudGoverned** | **Boolean** | True if the entitlement is cloud governed | [optional] **CloudGoverned** | **Boolean** | True if the entitlement is cloud governed | [optional] [default to $false]
**Requestable** | **Boolean** | True if the entitlement is able to be directly requested | [optional] [default to $false] **Requestable** | **Boolean** | True if the entitlement is able to be directly requested | [optional] [default to $false]
**Owner** | [**EntitlementOwner**](entitlement-owner) | | [optional] **Owner** | [**EntitlementOwner**](entitlement-owner) | | [optional]
**ManuallyUpdatedFields** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | A map of entitlement fields that have been manually updated. The key is the field name in UPPER_SNAKE_CASE format, and the value is true or false to indicate if the field has been updated. | [optional] **ManuallyUpdatedFields** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | A map of entitlement fields that have been manually updated. The key is the field name in UPPER_SNAKE_CASE format, and the value is true or false to indicate if the field has been updated. | [optional]

View File

@@ -23,7 +23,7 @@ Name | Type | Description | Notes
- Prepare the resource - Prepare the resource
```powershell ```powershell
$PermissionDto = Initialize-PSSailpoint.V2025PermissionDto -Rights null ` $PermissionDto = Initialize-PSSailpoint.V2025PermissionDto -Rights HereIsRight1 `
-Target SYS.GV_$TRANSACTION -Target SYS.GV_$TRANSACTION
``` ```