mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.9 KiB
1.9 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-access-request-recommendation-config-dto | AccessRequestRecommendationConfigDto | AccessRequestRecommendationConfigDto | AccessRequestRecommendationConfigDto | powershellsdk |
|
/tools/sdk/powershell/v2024/models/access-request-recommendation-config-dto |
|
AccessRequestRecommendationConfigDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| ScoreThreshold | Double | The value that internal calculations need to exceed for recommendations to be made. | [required] |
| StartDateAttribute | String | Use to map an attribute name for determining identities' start date. | [optional] |
| RestrictionAttribute | String | Use to only give recommendations based on this attribute. | [optional] |
| MoverAttribute | String | Use to map an attribute name for determining whether identities are movers. | [optional] |
| JoinerAttribute | String | Use to map an attribute name for determining whether identities are joiners. | [optional] |
| UseRestrictionAttribute | Boolean | Use only the attribute named in restrictionAttribute to make recommendations. | [optional] [default to $false] |
Examples
- Prepare the resource
$AccessRequestRecommendationConfigDto = Initialize-V2024AccessRequestRecommendationConfigDto -ScoreThreshold 0.5 `
-StartDateAttribute startDate `
-RestrictionAttribute location `
-MoverAttribute isMover `
-JoinerAttribute isJoiner `
-UseRestrictionAttribute true
- Convert the resource to JSON
$AccessRequestRecommendationConfigDto | ConvertTo-JSON