Skip to main content

AccessRequestRecommendationConfigDto

Properties

NameTypeDescriptionNotes
ScoreThresholdDoubleThe value that internal calculations need to exceed for recommendations to be made.[required]
StartDateAttributeStringUse to map an attribute name for determining identities' start date.[optional]
RestrictionAttributeStringUse to only give recommendations based on this attribute.[optional]
MoverAttributeStringUse to map an attribute name for determining whether identities are movers.[optional]
JoinerAttributeStringUse to map an attribute name for determining whether identities are joiners.[optional]
UseRestrictionAttributeBooleanUse only the attribute named in restrictionAttribute to make recommendations.[optional] [default to $false]

Examples

  • Prepare the resource
$AccessRequestRecommendationConfigDto = Initialize-PSSailpoint.V2024AccessRequestRecommendationConfigDto  -ScoreThreshold 0.5 `
-StartDateAttribute startDate `
-RestrictionAttribute location `
-MoverAttribute isMover `
-JoinerAttribute isJoiner `
-UseRestrictionAttribute true
  • Convert the resource to JSON
$AccessRequestRecommendationConfigDto | ConvertTo-JSON

[Back to top]