only beta

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:57:33 -05:00
parent fb685431b3
commit ca4e98517f
444 changed files with 0 additions and 18963 deletions

View File

@@ -1,49 +0,0 @@
---
id: v2024-access-request-item-response
title: AccessRequestItemResponse
pagination_label: AccessRequestItemResponse
sidebar_label: AccessRequestItemResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessRequestItemResponse']
slug: /tools/sdk/powershell/v2024/models/access-request-item-response
tags: ['SDK', 'Software Development Kit', 'AccessRequestItemResponse']
---
# AccessRequestItemResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operation** | Pointer to **String** | the access request item operation | [optional]
**AccessItemType** | Pointer to **String** | the access item type | [optional]
**Name** | Pointer to **String** | the name of access request item | [optional]
**Decision** | Pointer to **Enum** [ "APPROVED", "REJECTED" ] | the final decision for the access request | [optional]
**Description** | Pointer to **String** | the description of access request item | [optional]
**SourceId** | Pointer to **String** | the source id | [optional]
**SourceName** | Pointer to **String** | the source Name | [optional]
**ApprovalInfos** | Pointer to [**[]ApprovalInfoResponse**](approval-info-response) | | [optional]
## Examples
- Prepare the resource
```powershell
$AccessRequestItemResponse = Initialize-PSSailpoint.V2024AccessRequestItemResponse -Operation Add `
-AccessItemType role `
-Name Role-1 `
-Decision APPROVED `
-Description The role descrition `
-SourceId 8a80828f643d484f01643e14202e206f `
-SourceName Source1 `
-ApprovalInfos [{name=John Snow, id=8a80828f643d484f01643e14202e2000, status=Approved}]
```
- Convert the resource to JSON
```powershell
$AccessRequestItemResponse | ConvertTo-JSON
```
[[Back to top]](#)