mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user