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,43 @@
---
id: beta-recommendation-request-dto
title: RecommendationRequestDto
pagination_label: RecommendationRequestDto
sidebar_label: RecommendationRequestDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RecommendationRequestDto', 'BetaRecommendationRequestDto']
slug: /tools/sdk/powershell/beta/models/recommendation-request-dto
tags: ['SDK', 'Software Development Kit', 'RecommendationRequestDto', 'BetaRecommendationRequestDto']
---
# RecommendationRequestDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Requests** | Pointer to [**[]RecommendationRequest**](recommendation-request) | | [optional]
**ExcludeInterpretations** | Pointer to **Boolean** | Exclude interpretations in the response if ""true"". Return interpretations in the response if this attribute is not specified. | [optional] [default to $false]
**IncludeTranslationMessages** | Pointer to **Boolean** | When set to true, the calling system uses the translated messages for the specified language | [optional] [default to $false]
**IncludeDebugInformation** | Pointer to **Boolean** | Returns the recommender calculations if set to true | [optional] [default to $false]
**PrescribeMode** | Pointer to **Boolean** | When set to true, uses prescribedRulesRecommenderConfig to get identity attributes and peer group threshold instead of standard config. | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$RecommendationRequestDto = Initialize-PSSailpoint.BetaRecommendationRequestDto -Requests null `
-ExcludeInterpretations false `
-IncludeTranslationMessages false `
-IncludeDebugInformation true `
-PrescribeMode false
```
- Convert the resource to JSON
```powershell
$RecommendationRequestDto | ConvertTo-JSON
```
[[Back to top]](#)