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

1019 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-expression Expression Expression Expression powershellsdk
powershell
PowerShell
sdk
Expression
BetaExpression
/tools/sdk/powershell/beta/models/expression
SDK
Software Development Kit
Expression
BetaExpression

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

Examples

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

[Back to top]