mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
45
docs/tools/sdk/powershell/Reference/Beta/Models/MatchTerm.md
Normal file
45
docs/tools/sdk/powershell/Reference/Beta/Models/MatchTerm.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: beta-match-term
|
||||
title: MatchTerm
|
||||
pagination_label: MatchTerm
|
||||
sidebar_label: MatchTerm
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'MatchTerm', 'BetaMatchTerm']
|
||||
slug: /tools/sdk/powershell/beta/models/match-term
|
||||
tags: ['SDK', 'Software Development Kit', 'MatchTerm', 'BetaMatchTerm']
|
||||
---
|
||||
|
||||
|
||||
# MatchTerm
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | Pointer to **String** | The attribute name | [optional]
|
||||
**Value** | Pointer to **String** | The attribute value | [optional]
|
||||
**Op** | Pointer to **String** | The operator between name and value | [optional]
|
||||
**Container** | Pointer to **Boolean** | If it is a container or a real match term | [optional] [default to $false]
|
||||
**And** | Pointer to **Boolean** | If it is AND logical operator for the children match terms | [optional] [default to $false]
|
||||
**Children** | Pointer to [**[]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
|
||||
```powershell
|
||||
$MatchTerm = Initialize-PSSailpoint.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
|
||||
```powershell
|
||||
$MatchTerm | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user