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

3.3 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-rule ConditionRule ConditionRule ConditionRule powershellsdk
powershell
PowerShell
sdk
ConditionRule
BetaConditionRule
/tools/sdk/powershell/beta/models/condition-rule
SDK
Software Development Kit
ConditionRule
BetaConditionRule

ConditionRule

Properties

Name Type Description Notes
SourceType Enum [ "INPUT", "ELEMENT" ] Defines the type of object being selected. It will be either a reference to a form input (by input name) or a form element (by technical key). INPUT ConditionRuleSourceTypeInput ELEMENT ConditionRuleSourceTypeElement [optional]
Source String Source - if the sourceType is ConditionRuleSourceTypeInput, the source type is the name of the form input to accept. However, if the sourceType is ConditionRuleSourceTypeElement, the source is the name of a technical key of an element to retrieve its value. [optional]
Operator Enum [ "EQ", "NE", "CO", "NOT_CO", "IN", "NOT_IN", "EM", "NOT_EM", "SW", "NOT_SW", "EW", "NOT_EW" ] ConditionRuleComparisonOperatorType value. EQ ConditionRuleComparisonOperatorTypeEquals This comparison operator compares the source and target for equality. NE ConditionRuleComparisonOperatorTypeNotEquals This comparison operator compares the source and target for inequality. CO ConditionRuleComparisonOperatorTypeContains This comparison operator searches the source to see whether it contains the value. NOT_CO ConditionRuleComparisonOperatorTypeNotContains IN ConditionRuleComparisonOperatorTypeIncludes This comparison operator searches the source if it equals any of the values. NOT_IN ConditionRuleComparisonOperatorTypeNotIncludes EM ConditionRuleComparisonOperatorTypeEmpty NOT_EM ConditionRuleComparisonOperatorTypeNotEmpty SW ConditionRuleComparisonOperatorTypeStartsWith Checks whether a string starts with another substring of the same string. This operator is case-sensitive. NOT_SW ConditionRuleComparisonOperatorTypeNotStartsWith EW ConditionRuleComparisonOperatorTypeEndsWith Checks whether a string ends with another substring of the same string. This operator is case-sensitive. NOT_EW ConditionRuleComparisonOperatorTypeNotEndsWith [optional]
ValueType Enum [ "STRING", "STRING_LIST", "INPUT", "ELEMENT", "LIST", "BOOLEAN" ] ConditionRuleValueType type. STRING ConditionRuleValueTypeString This value is a static string. STRING_LIST ConditionRuleValueTypeStringList This value is an array of string values. INPUT ConditionRuleValueTypeInput This value is a reference to a form input. ELEMENT ConditionRuleValueTypeElement This value is a reference to a form element (by technical key). LIST ConditionRuleValueTypeList BOOLEAN ConditionRuleValueTypeBoolean [optional]
Value String Based on the ValueType. [optional]

Examples

  • Prepare the resource
$ConditionRule = Initialize-BetaConditionRule  -SourceType ELEMENT `
 -Source department `
 -Operator EQ `
 -ValueType STRING `
 -Value Engineering
  • Convert the resource to JSON
$ConditionRule | ConvertTo-JSON

[Back to top]