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,37 @@
---
id: v2024-condition-effect
title: ConditionEffect
pagination_label: ConditionEffect
sidebar_label: ConditionEffect
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConditionEffect']
slug: /tools/sdk/powershell/v2024/models/condition-effect
tags: ['SDK', 'Software Development Kit', 'ConditionEffect']
---
# ConditionEffect
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**EffectType** | Pointer to **Enum** [ "HIDE", "SHOW", "DISABLE", "ENABLE", "REQUIRE", "OPTIONAL", "SUBMIT_MESSAGE", "SUBMIT_NOTIFICATION", "SET_DEFAULT_VALUE" ] | Type of effect to perform when the conditions are evaluated for this logic block. HIDE ConditionEffectTypeHide Disables validations. SHOW ConditionEffectTypeShow Enables validations. DISABLE ConditionEffectTypeDisable Disables validations. ENABLE ConditionEffectTypeEnable Enables validations. REQUIRE ConditionEffectTypeRequire OPTIONAL ConditionEffectTypeOptional SUBMIT_MESSAGE ConditionEffectTypeSubmitMessage SUBMIT_NOTIFICATION ConditionEffectTypeSubmitNotification SET_DEFAULT_VALUE ConditionEffectTypeSetDefaultValue This value is ignored on purpose. | [optional]
**Config** | Pointer to [**ConditionEffectConfig**](condition-effect-config) | | [optional]
## Examples
- Prepare the resource
```powershell
$ConditionEffect = Initialize-PSSailpoint.V2024ConditionEffect -EffectType HIDE `
-Config null
```
- Convert the resource to JSON
```powershell
$ConditionEffect | ConvertTo-JSON
```
[[Back to top]](#)