update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: error-message
title: ErrorMessage
pagination_label: ErrorMessage
sidebar_label: ErrorMessage
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ErrorMessage']
slug: /tools/sdk/powershell/beta/models/error-message
tags: ['SDK', 'Software Development Kit', 'ErrorMessage']
---
# ErrorMessage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Locale** | Pointer to **String** | Locale is the current Locale | [optional]
**LocaleOrigin** | Pointer to **String** | LocaleOrigin holds possible values of how the locale was selected | [optional]
**Text** | Pointer to **String** | Text is the actual text of the error message | [optional]
## Examples
- Prepare the resource
```powershell
$ErrorMessage = Initialize-PSSailpoint.BetaErrorMessage -Locale en-US `
-LocaleOrigin DEFAULT `
-Text This is an error
```
- Convert the resource to JSON
```powershell
$ErrorMessage | ConvertTo-JSON
```
[[Back to top]](#)