Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SearchCriteriaTextQuery.md
2025-05-20 15:12:17 +00: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
beta-search-criteria-text-query SearchCriteriaTextQuery SearchCriteriaTextQuery SearchCriteriaTextQuery powershellsdk
powershell
PowerShell
sdk
SearchCriteriaTextQuery
BetaSearchCriteriaTextQuery
/tools/sdk/powershell/beta/models/search-criteria-text-query
SDK
Software Development Kit
SearchCriteriaTextQuery
BetaSearchCriteriaTextQuery

SearchCriteriaTextQuery

Properties

Name Type Description Notes
Terms []String Terms to search for. [optional]
Fields []String Fields to search within. [optional]
MatchAny Boolean Whether to match any of the terms. [optional] [default to $false]

Examples

  • Prepare the resource
$SearchCriteriaTextQuery = Initialize-BetaSearchCriteriaTextQuery  -Terms [admin, user] `
 -Fields [role, name] `
 -MatchAny true
  • Convert the resource to JSON
$SearchCriteriaTextQuery | ConvertTo-JSON

[Back to top]