adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,37 @@
---
id: 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]](#)