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

1.0 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 Expression Expression Expression powershellsdk
powershell
PowerShell
sdk
Expression
V2024Expression
/tools/sdk/powershell/v2024/models/expression
SDK
Software Development Kit
Expression
V2024Expression

Expression

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 []ExpressionChildrenInner List of expressions [optional]

Examples

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

[Back to top]