Update to powershell SDK docs: 13685764589

This commit is contained in:
developer-relations-sp
2025-03-05 21:21:24 +00:00
parent 821e766805
commit d502498f7f
32 changed files with 715 additions and 134 deletions

View File

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