adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: template-bulk-delete-dto
title: TemplateBulkDeleteDto
pagination_label: TemplateBulkDeleteDto
sidebar_label: TemplateBulkDeleteDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TemplateBulkDeleteDto']
slug: /tools/sdk/powershell/v2024/models/template-bulk-delete-dto
tags: ['SDK', 'Software Development Kit', 'TemplateBulkDeleteDto']
---
# TemplateBulkDeleteDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | **String** | | [required]
**Medium** | Pointer to **Enum** [ "EMAIL", "PHONE", "SMS" ] | | [optional]
**Locale** | Pointer to **String** | The locale for the message text, a BCP 47 language tag. | [optional]
## Examples
- Prepare the resource
```powershell
$TemplateBulkDeleteDto = Initialize-PSSailpoint.V2024TemplateBulkDeleteDto -Key cloud_manual_work_item_summary `
-Medium EMAIL `
-Locale en
```
- Convert the resource to JSON
```powershell
$TemplateBulkDeleteDto | ConvertTo-JSON
```
[[Back to top]](#)