adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,37 @@
---
id: requested-item-details
title: RequestedItemDetails
pagination_label: RequestedItemDetails
sidebar_label: RequestedItemDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedItemDetails']
slug: /tools/sdk/powershell/beta/models/requested-item-details
tags: ['SDK', 'Software Development Kit', 'RequestedItemDetails']
---
# 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]](#)