adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-recommendation-request
title: RecommendationRequest
pagination_label: RecommendationRequest
sidebar_label: RecommendationRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RecommendationRequest', 'V2024RecommendationRequest']
slug: /tools/sdk/powershell/v2024/models/recommendation-request
tags: ['SDK', 'Software Development Kit', 'RecommendationRequest', 'V2024RecommendationRequest']
---
# RecommendationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IdentityId** | Pointer to **String** | The identity ID | [optional]
**Item** | Pointer to [**AccessItemRef**](access-item-ref) | | [optional]
## Examples
- Prepare the resource
```powershell
$RecommendationRequest = Initialize-PSSailpoint.V2024RecommendationRequest -IdentityId 2c938083633d259901633d25c68c00fa `
-Item null
```
- Convert the resource to JSON
```powershell
$RecommendationRequest | ConvertTo-JSON
```
[[Back to top]](#)