Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/RecommendationRequestDto.md
2025-01-28 13:29:29 -05: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
beta-recommendation-request-dto RecommendationRequestDto RecommendationRequestDto RecommendationRequestDto powershellsdk
powershell
PowerShell
sdk
RecommendationRequestDto
BetaRecommendationRequestDto
/tools/sdk/powershell/beta/models/recommendation-request-dto
SDK
Software Development Kit
RecommendationRequestDto
BetaRecommendationRequestDto

RecommendationRequestDto

Properties

Name Type Description Notes
Requests Pointer to []RecommendationRequest [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
$RecommendationRequestDto = Initialize-PSSailpoint.BetaRecommendationRequestDto  -Requests null `
 -ExcludeInterpretations false `
 -IncludeTranslationMessages false `
 -IncludeDebugInformation true `
 -PrescribeMode false
  • Convert the resource to JSON
$RecommendationRequestDto | ConvertTo-JSON

[Back to top]