Skip to main content

FormCondition

Properties

NameTypeDescriptionNotes
RuleOperatorEnum [ "AND", "OR" ]ConditionRuleLogicalOperatorType value. AND ConditionRuleLogicalOperatorTypeAnd OR ConditionRuleLogicalOperatorTypeOr[optional]
Rules[]ConditionRuleList of rules.[optional]
Effects[]ConditionEffectList of effects.[optional]

Examples

  • Prepare the resource
$FormCondition = Initialize-PSSailpoint.V2024FormCondition  -RuleOperator AND `
-Rules null `
-Effects null
  • Convert the resource to JSON
$FormCondition | ConvertTo-JSON

[Back to top]