-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to powershell SDK docs: 13525029562
- Loading branch information
1 parent
1d5ca26
commit 0dbc484
Showing
3 changed files
with
202 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
...s/sdk/powershell/Reference/V2024/Models/AccessRequestRecommendationConfigDto.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
id: v2024-access-request-recommendation-config-dto | ||
title: AccessRequestRecommendationConfigDto | ||
pagination_label: AccessRequestRecommendationConfigDto | ||
sidebar_label: AccessRequestRecommendationConfigDto | ||
sidebar_class_name: powershellsdk | ||
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessRequestRecommendationConfigDto', 'V2024AccessRequestRecommendationConfigDto'] | ||
slug: /tools/sdk/powershell/v2024/models/access-request-recommendation-config-dto | ||
tags: ['SDK', 'Software Development Kit', 'AccessRequestRecommendationConfigDto', 'V2024AccessRequestRecommendationConfigDto'] | ||
--- | ||
|
||
|
||
# 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 | ||
```powershell | ||
$AccessRequestRecommendationConfigDto = Initialize-PSSailpoint.V2024AccessRequestRecommendationConfigDto -ScoreThreshold 0.5 ` | ||
-StartDateAttribute startDate ` | ||
-RestrictionAttribute location ` | ||
-MoverAttribute isMover ` | ||
-JoinerAttribute isJoiner ` | ||
-UseRestrictionAttribute true | ||
``` | ||
|
||
- Convert the resource to JSON | ||
```powershell | ||
$AccessRequestRecommendationConfigDto | ConvertTo-JSON | ||
``` | ||
|
||
|
||
[[Back to top]](#) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters