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

1.2 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
v2024-expression-children-inner ExpressionChildrenInner ExpressionChildrenInner ExpressionChildrenInner powershellsdk
powershell
PowerShell
sdk
ExpressionChildrenInner
V2024ExpressionChildrenInner
/tools/sdk/powershell/v2024/models/expression-children-inner
SDK
Software Development Kit
ExpressionChildrenInner
V2024ExpressionChildrenInner

ExpressionChildrenInner

Properties

Name Type Description Notes
Operator Enum [ "AND", "EQUALS" ] Operator for the expression [optional]
Attribute String Name for the attribute [optional]
Value Value [optional]
Children String There cannot be anymore nested children. This will always be null. [optional]

Examples

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

[Back to top]