add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2025-recommendation-request
title: RecommendationRequest
pagination_label: RecommendationRequest
sidebar_label: RecommendationRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RecommendationRequest', 'V2025RecommendationRequest']
slug: /tools/sdk/python/v2025/models/recommendation-request
tags: ['SDK', 'Software Development Kit', 'RecommendationRequest', 'V2025RecommendationRequest']
---
# RecommendationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**identity_id** | **str** | The identity ID | [optional]
**item** | [**AccessItemRef**](access-item-ref) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.recommendation_request import RecommendationRequest
recommendation_request = RecommendationRequest(
identity_id='2c938083633d259901633d25c68c00fa',
item=sailpoint.v2025.models.access_item_ref.AccessItemRef(
id = '2c938083633d259901633d2623ec0375',
type = 'ENTITLEMENT', )
)
```
[[Back to top]](#)