Skip to main content

ExpressionChildrenInner

Properties

NameTypeDescriptionNotes
OperatorEnum [ "AND", "EQUALS" ]Operator for the expression[optional]
AttributeStringName for the attribute[optional]
ValueValue[optional]
ChildrenStringThere cannot be anymore nested children. This will always be null.[optional]

Examples

  • Prepare the resource
$ExpressionChildrenInner = Initialize-PSSailpoint.V3ExpressionChildrenInner  -Operator EQUALS `
-Attribute location `
-Value null `
-Children null
  • Convert the resource to JSON
$ExpressionChildrenInner | ConvertTo-JSON

[Back to top]