starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,52 @@
---
id: v2024-access-request-recommendation-item-detail
title: AccessRequestRecommendationItemDetail
pagination_label: AccessRequestRecommendationItemDetail
sidebar_label: AccessRequestRecommendationItemDetail
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccessRequestRecommendationItemDetail', 'V2024AccessRequestRecommendationItemDetail']
slug: /tools/sdk/python/v2024/models/access-request-recommendation-item-detail
tags: ['SDK', 'Software Development Kit', 'AccessRequestRecommendationItemDetail', 'V2024AccessRequestRecommendationItemDetail']
---
# AccessRequestRecommendationItemDetail
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**identity_id** | **str** | Identity ID for the recommendation | [optional]
**access** | [**AccessRequestRecommendationItemDetailAccess**](access-request-recommendation-item-detail-access) | | [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**](access-recommendation-message) | | [optional]
**translation_messages** | [**[]TranslationMessage**](translation-message) | The list of translation messages | [optional]
}
## Example
```python
from sailpoint.v2024.models.access_request_recommendation_item_detail import AccessRequestRecommendationItemDetail
access_request_recommendation_item_detail = AccessRequestRecommendationItemDetail(
identity_id='2c91808570313110017040b06f344ec9',
access=sailpoint.v2024.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.v2024.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]}]
)
```
[[Back to top]](#)