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

1.4 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
beta-match-term MatchTerm MatchTerm MatchTerm powershellsdk
powershell
PowerShell
sdk
MatchTerm
BetaMatchTerm
/tools/sdk/powershell/beta/models/match-term
SDK
Software Development Kit
MatchTerm
BetaMatchTerm

MatchTerm

Properties

Name Type Description Notes
Name String The attribute name [optional]
Value String The attribute value [optional]
Op String The operator between name and value [optional]
Container Boolean If it is a container or a real match term [optional] [default to $false]
And Boolean If it is AND logical operator for the children match terms [optional] [default to $false]
Children [[]System.Collections.Hashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 The children under this match term [optional]

Examples

  • Prepare the resource
$MatchTerm = Initialize-BetaMatchTerm  -Name mail `
 -Value 1234 Albany Dr `
 -Op eq `
 -Container true `
 -And false `
 -Children [{name=businessCategory, value=Service, op=eq, container=false, and=false, children=null}]
  • Convert the resource to JSON
$MatchTerm | ConvertTo-JSON

[Back to top]