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: beta-requested-item-details
title: RequestedItemDetails
pagination_label: RequestedItemDetails
sidebar_label: RequestedItemDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedItemDetails', 'BetaRequestedItemDetails']
slug: /tools/sdk/powershell/beta/models/requested-item-details
tags: ['SDK', 'Software Development Kit', 'RequestedItemDetails', 'BetaRequestedItemDetails']
---
# RequestedItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "ACCESS_PROFILE", "ENTITLEMENT", "ROLE" ] | The type of access item requested. | [optional]
**Id** | Pointer to **String** | The id of the access item requested. | [optional]
## Examples
- Prepare the resource
```powershell
$RequestedItemDetails = Initialize-PSSailpoint.BetaRequestedItemDetails -Type ENTITLEMENT `
-Id 779c6fd7171540bba1184e5946112c28
```
- Convert the resource to JSON
```powershell
$RequestedItemDetails | ConvertTo-JSON
```
[[Back to top]](#)