Skip to main content

Expression

Properties

NameTypeDescriptionNotes
OperatorEnum [ "AND", "EQUALS" ]Operator for the expression[optional]
AttributeStringName for the attribute[optional]
ValueValue[optional]
Children[]ExpressionChildrenInnerList of expressions[optional]

Examples

  • Prepare the resource
$Expression = Initialize-PSSailpoint.V3Expression  -Operator EQUALS `
-Attribute location `
-Value null `
-Children []
  • Convert the resource to JSON
$Expression | ConvertTo-JSON

[Back to top]