adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2024-approval-items
title: ApprovalItems
pagination_label: ApprovalItems
sidebar_label: ApprovalItems
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalItems']
slug: /tools/sdk/powershell/v2024/models/approval-items
tags: ['SDK', 'Software Development Kit', 'ApprovalItems']
---
# ApprovalItems
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The approval item's ID | [optional]
**Account** | Pointer to **String** | The account referenced by the approval item | [optional]
**Application** | Pointer to **String** | The name of the application/source | [optional]
**Name** | Pointer to **String** | The attribute's name | [optional]
**Operation** | Pointer to **String** | The attribute's operation | [optional]
**Value** | Pointer to **String** | The attribute's value | [optional]
**State** | Pointer to [**WorkItemState**](work-item-state) | | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalItems = Initialize-PSSailpoint.V2024ApprovalItems -Id 2c9180835d2e5168015d32f890ca1581 `
-Account john.smith `
-Application Active Directory `
-Name emailAddress `
-Operation update `
-Value a@b.com `
-State null
```
- Convert the resource to JSON
```powershell
$ApprovalItems | ConvertTo-JSON
```
[[Back to top]](#)