Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/RecommendationRequestDto.md
2025-04-01 09:23:12 -04:00

1.8 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
v2025-recommendation-request-dto RecommendationRequestDto RecommendationRequestDto RecommendationRequestDto powershellsdk
powershell
PowerShell
sdk
RecommendationRequestDto
V2025RecommendationRequestDto
/tools/sdk/powershell/v2025/models/recommendation-request-dto
SDK
Software Development Kit
RecommendationRequestDto
V2025RecommendationRequestDto

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-PSSailpoint.V2025RecommendationRequestDto  -Requests null `
 -ExcludeInterpretations false `
 -IncludeTranslationMessages false `
 -IncludeDebugInformation true `
 -PrescribeMode false
  • Convert the resource to JSON
$RecommendationRequestDto | ConvertTo-JSON

[Back to top]