removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,37 +0,0 @@
---
id: recommendation
title: Recommendation
pagination_label: Recommendation
sidebar_label: Recommendation
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Recommendation']
slug: /tools/sdk/powershell/beta/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.BetaRecommendation -Type MACHINE `
-Method DISCOVERY
```
- Convert the resource to JSON
```powershell
$Recommendation | ConvertTo-JSON
```
[[Back to top]](#)