mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.5 KiB
2.5 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-access-request-recommendation-item-detail | AccessRequestRecommendationItemDetail | AccessRequestRecommendationItemDetail | AccessRequestRecommendationItemDetail | pythonsdk |
|
/tools/sdk/python/beta/models/access-request-recommendation-item-detail |
|
AccessRequestRecommendationItemDetail
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| identity_id | str | Identity ID for the recommendation | [optional] |
| access | AccessRequestRecommendationItemDetailAccess | [optional] | |
| ignored | bool | Whether or not the identity has already chosen to ignore this recommendation. | [optional] |
| requested | bool | Whether or not the identity has already chosen to request this recommendation. | [optional] |
| viewed | bool | Whether or not the identity reportedly viewed this recommendation. | [optional] |
| messages | []AccessRecommendationMessage | [optional] | |
| translation_messages | []TranslationMessage | The list of translation messages | [optional] |
| } |
Example
from sailpoint.beta.models.access_request_recommendation_item_detail import AccessRequestRecommendationItemDetail
access_request_recommendation_item_detail = AccessRequestRecommendationItemDetail(
identity_id='2c91808570313110017040b06f344ec9',
access=sailpoint.beta.models.access_request_recommendation_item_detail_access.AccessRequestRecommendationItemDetail_access(
id = '2c9180835d2e5168015d32f890ca1581',
type = 'ACCESS_PROFILE',
name = 'Employee-database-read-write',
description = 'This item grants an employee read and write access to the database', ),
ignored=True,
requested=True,
viewed=True,
messages=[
sailpoint.beta.models.access_recommendation_message.AccessRecommendationMessage(
interpretation = '95% of your peers have this access.', )
],
translation_messages=[{key=recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH, values=[75, department]}]
)