Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessRequestRecommendationItemDetail.md
2025-05-07 14:37:48 +00:00

2.0 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-item-detail AccessRequestRecommendationItemDetail AccessRequestRecommendationItemDetail AccessRequestRecommendationItemDetail powershellsdk
powershell
PowerShell
sdk
AccessRequestRecommendationItemDetail
V2024AccessRequestRecommendationItemDetail
/tools/sdk/powershell/v2024/models/access-request-recommendation-item-detail
SDK
Software Development Kit
AccessRequestRecommendationItemDetail
V2024AccessRequestRecommendationItemDetail

AccessRequestRecommendationItemDetail

Properties

Name Type Description Notes
IdentityId String Identity ID for the recommendation [optional]
Access AccessRequestRecommendationItemDetailAccess [optional]
Ignored Boolean Whether or not the identity has already chosen to ignore this recommendation. [optional]
Requested Boolean Whether or not the identity has already chosen to request this recommendation. [optional]
Viewed Boolean Whether or not the identity reportedly viewed this recommendation. [optional]
Messages []AccessRecommendationMessage [optional]
TranslationMessages []TranslationMessage The list of translation messages [optional]

Examples

  • Prepare the resource
$AccessRequestRecommendationItemDetail = Initialize-V2024AccessRequestRecommendationItemDetail  -IdentityId 2c91808570313110017040b06f344ec9 `
 -Access null `
 -Ignored true `
 -Requested true `
 -Viewed true `
 -Messages null `
 -TranslationMessages [{key=recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH, values=[75, department]}]
  • Convert the resource to JSON
$AccessRequestRecommendationItemDetail | ConvertTo-JSON

[Back to top]