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,81 @@
---
id: v2024-requested-item-status
title: RequestedItemStatus
pagination_label: RequestedItemStatus
sidebar_label: RequestedItemStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedItemStatus', 'V2024RequestedItemStatus']
slug: /tools/sdk/powershell/v2024/models/requested-item-status
tags: ['SDK', 'Software Development Kit', 'RequestedItemStatus', 'V2024RequestedItemStatus']
---
# RequestedItemStatus
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **String** | Human-readable display name of the item being requested. | [optional]
**Type** | Pointer to **Enum** [ "ACCESS_PROFILE", "ROLE", "ENTITLEMENT" ] | Type of requested object. | [optional]
**CancelledRequestDetails** | Pointer to [**RequestedItemStatusCancelledRequestDetails**](requested-item-status-cancelled-request-details) | | [optional]
**ErrorMessages** | Pointer to [**[]ErrorMessageDto[]**](error-message-dto) | List of list of localized error messages, if any, encountered during the approval/provisioning process. | [optional]
**State** | Pointer to [**RequestedItemStatusRequestState**](requested-item-status-request-state) | | [optional]
**ApprovalDetails** | Pointer to [**[]ApprovalStatusDto**](approval-status-dto) | Approval details for each item. | [optional]
**ApprovalIds** | Pointer to **[]String** | List of approval IDs associated with the request. | [optional]
**ManualWorkItemDetails** | Pointer to [**[]ManualWorkItemDetails**](manual-work-item-details) | Manual work items created for provisioning the item. | [optional]
**AccountActivityItemId** | Pointer to **String** | Id of associated account activity item. | [optional]
**RequestType** | Pointer to [**AccessRequestType**](access-request-type) | | [optional]
**Modified** | Pointer to **System.DateTime** | When the request was last modified. | [optional]
**Created** | Pointer to **System.DateTime** | When the request was created. | [optional]
**Requester** | Pointer to [**AccessItemRequester**](access-item-requester) | | [optional]
**RequestedFor** | Pointer to [**RequestedItemStatusRequestedFor**](requested-item-status-requested-for) | | [optional]
**RequesterComment** | Pointer to [**RequestedItemStatusRequesterComment**](requested-item-status-requester-comment) | | [optional]
**SodViolationContext** | Pointer to [**RequestedItemStatusSodViolationContext**](requested-item-status-sod-violation-context) | | [optional]
**ProvisioningDetails** | Pointer to [**RequestedItemStatusProvisioningDetails**](requested-item-status-provisioning-details) | | [optional]
**PreApprovalTriggerDetails** | Pointer to [**RequestedItemStatusPreApprovalTriggerDetails**](requested-item-status-pre-approval-trigger-details) | | [optional]
**AccessRequestPhases** | Pointer to [**[]AccessRequestPhases**](access-request-phases) | A list of Phases that the Access Request has gone through in order, to help determine the status of the request. | [optional]
**Description** | Pointer to **String** | Description associated to the requested object. | [optional]
**RemoveDate** | Pointer to **System.DateTime** | When the role access is scheduled for removal. | [optional]
**Cancelable** | Pointer to **Boolean** | True if the request can be canceled. | [optional] [default to $false]
**AccessRequestId** | Pointer to **String** | This is the account activity id. | [optional]
**ClientMetadata** | Pointer to **map[string]String** | Arbitrary key-value pairs, if any were included in the corresponding access request | [optional]
## Examples
- Prepare the resource
```powershell
$RequestedItemStatus = Initialize-PSSailpoint.V2024RequestedItemStatus -Name AccessProfile1 `
-Type ACCESS_PROFILE `
-CancelledRequestDetails null `
-ErrorMessages null `
-State null `
-ApprovalDetails null `
-ApprovalIds [85f0cf482dd44327b593624c07906c21, fa57e1bfa36f41ee85e33ee59fcbeac5] `
-ManualWorkItemDetails null `
-AccountActivityItemId 2c9180926cbfbddd016cbfc7c3b10010 `
-RequestType null `
-Modified 2019-08-23T18:52:59.162Z `
-Created 2019-08-23T18:40:35.772Z `
-Requester null `
-RequestedFor null `
-RequesterComment null `
-SodViolationContext null `
-ProvisioningDetails null `
-PreApprovalTriggerDetails null `
-AccessRequestPhases null `
-Description This is the Engineering role that engineers are granted. `
-RemoveDate 2019-10-23T00:00Z `
-Cancelable true `
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
-ClientMetadata {key1=value1, key2=value2}
```
- Convert the resource to JSON
```powershell
$RequestedItemStatus | ConvertTo-JSON
```
[[Back to top]](#)