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,47 @@
---
id: beta-approval-items
title: ApprovalItems
pagination_label: ApprovalItems
sidebar_label: ApprovalItems
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalItems', 'BetaApprovalItems']
slug: /tools/sdk/powershell/beta/models/approval-items
tags: ['SDK', 'Software Development Kit', 'ApprovalItems', 'BetaApprovalItems']
---
# 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.BetaApprovalItems -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]](#)