removing part of model docs from v2024

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:52:12 -05:00
parent cb679653ff
commit fb685431b3
639 changed files with 0 additions and 26446 deletions

View File

@@ -1,37 +0,0 @@
---
id: v2024-recommendation
title: Recommendation
pagination_label: Recommendation
sidebar_label: Recommendation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Recommendation']
slug: /tools/sdk/powershell/v2024/models/recommendation
tags: ['SDK', 'Software Development Kit', 'Recommendation']
---
# Recommendation
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "HUMAN", "MACHINE" ] | Recommended type of account. | [required]
**Method** | **Enum** [ "DISCOVERY", "SOURCE", "CRITERIA" ] | Method used to produce the recommendation. DISCOVERY - suggested by AI, SOURCE - the account comes from a source flagged as containing machine accounts, CRITERIA - the account satisfies classification criteria. | [required]
## Examples
- Prepare the resource
```powershell
$Recommendation = Initialize-PSSailpoint.V2024Recommendation -Type MACHINE `
-Method DISCOVERY
```
- Convert the resource to JSON
```powershell
$Recommendation | ConvertTo-JSON
```
[[Back to top]](#)