Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/FormCondition.md
2025-02-03 22:09:17 +00:00

1.1 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-form-condition FormCondition FormCondition FormCondition powershellsdk
powershell
PowerShell
sdk
FormCondition
BetaFormCondition
/tools/sdk/powershell/beta/models/form-condition
SDK
Software Development Kit
FormCondition
BetaFormCondition

FormCondition

Properties

Name Type Description Notes
RuleOperator Enum [ "AND", "OR" ] ConditionRuleLogicalOperatorType value. AND ConditionRuleLogicalOperatorTypeAnd OR ConditionRuleLogicalOperatorTypeOr [optional]
Rules []ConditionRule List of rules. [optional]
Effects []ConditionEffect List of effects. [optional]

Examples

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

[Back to top]