Skip to main content

CorrelationCondition

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the condition.[optional]
LeftAttributeNameStringThe left-hand attribute name of the condition.[required]
OperatorTypeStringThe comparison operator applied between the left and right attributes.[required]
RightAttributeNameStringThe right-hand attribute name. Use an empty string when there is no RHS attribute.[required]
TransformStringOptional transform applied before comparison.[optional]
OrdinalInt32The position of this condition within the rule.[required]

Examples

  • Prepare the resource
$CorrelationCondition = Initialize-CorrelationCondition  -Id 1b2c3d4e-5f60-4a7b-8c9d-0e1f2a3b4c5d `
-LeftAttributeName manager `
-OperatorType EQUALS `
-RightAttributeName owner `
-Transform toUpper `
-Ordinal 0
  • Convert the resource to JSON
$CorrelationCondition | ConvertTo-JSON

[Back to top]