mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
1.7 KiB
1.7 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-recommendation-request-dto | RecommendationRequestDto | RecommendationRequestDto | RecommendationRequestDto | powershellsdk |
|
/tools/sdk/powershell/beta/models/recommendation-request-dto |
|
RecommendationRequestDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Requests | []RecommendationRequest | [optional] | |
| ExcludeInterpretations | Boolean | Exclude interpretations in the response if ""true"". Return interpretations in the response if this attribute is not specified. | [optional] [default to $false] |
| IncludeTranslationMessages | Boolean | When set to true, the calling system uses the translated messages for the specified language | [optional] [default to $false] |
| IncludeDebugInformation | Boolean | Returns the recommender calculations if set to true | [optional] [default to $false] |
| PrescribeMode | 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
$RecommendationRequestDto = Initialize-BetaRecommendationRequestDto -Requests null `
-ExcludeInterpretations false `
-IncludeTranslationMessages false `
-IncludeDebugInformation true `
-PrescribeMode false
- Convert the resource to JSON
$RecommendationRequestDto | ConvertTo-JSON