Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Expression.md
2025-01-28 13:29:29 -05:00

1.1 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 Pointer to Enum [ "AND", "EQUALS" ] Operator for the expression [optional]
Attribute Pointer to String Name for the attribute [optional]
Value Pointer to Value [optional]
Children Pointer to []ExpressionChildrenInner List of expressions [optional]

Examples

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

[Back to top]