adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

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