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,43 @@
---
id: beta-template-slack-auto-approval-data
title: TemplateSlackAutoApprovalData
pagination_label: TemplateSlackAutoApprovalData
sidebar_label: TemplateSlackAutoApprovalData
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TemplateSlackAutoApprovalData', 'BetaTemplateSlackAutoApprovalData']
slug: /tools/sdk/powershell/beta/models/template-slack-auto-approval-data
tags: ['SDK', 'Software Development Kit', 'TemplateSlackAutoApprovalData', 'BetaTemplateSlackAutoApprovalData']
---
# TemplateSlackAutoApprovalData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IsAutoApproved** | Pointer to **String** | | [optional]
**ItemId** | Pointer to **String** | | [optional]
**ItemType** | Pointer to **String** | | [optional]
**AutoApprovalMessageJSON** | Pointer to **String** | | [optional]
**AutoApprovalTitle** | Pointer to **String** | | [optional]
## Examples
- Prepare the resource
```powershell
$TemplateSlackAutoApprovalData = Initialize-PSSailpoint.BetaTemplateSlackAutoApprovalData -IsAutoApproved null `
-ItemId null `
-ItemType null `
-AutoApprovalMessageJSON null `
-AutoApprovalTitle null
```
- Convert the resource to JSON
```powershell
$TemplateSlackAutoApprovalData | ConvertTo-JSON
```
[[Back to top]](#)