Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/Expression.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05: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
expression Expression Expression Expression powershellsdk
powershell
PowerShell
sdk
Expression
/tools/sdk/powershell/beta/models/expression
SDK
Software Development Kit
Expression

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

Examples

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

[Back to top]