Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ConditionEffect.md
2025-05-07 14:37:48 +00:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-condition-effect ConditionEffect ConditionEffect ConditionEffect powershellsdk
powershell
PowerShell
sdk
ConditionEffect
BetaConditionEffect
/tools/sdk/powershell/beta/models/condition-effect
SDK
Software Development Kit
ConditionEffect
BetaConditionEffect

ConditionEffect

Properties

Name Type Description Notes
EffectType 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 ConditionEffectConfig [optional]

Examples

  • Prepare the resource
$ConditionEffect = Initialize-BetaConditionEffect  -EffectType HIDE `
 -Config null
  • Convert the resource to JSON
$ConditionEffect | ConvertTo-JSON

[Back to top]