Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ErrorMessage.md
2025-05-07 14:37:48 +00:00

1020 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-error-message ErrorMessage ErrorMessage ErrorMessage powershellsdk
powershell
PowerShell
sdk
ErrorMessage
BetaErrorMessage
/tools/sdk/powershell/beta/models/error-message
SDK
Software Development Kit
ErrorMessage
BetaErrorMessage

ErrorMessage

Properties

Name Type Description Notes
Locale String Locale is the current Locale [optional]
LocaleOrigin String LocaleOrigin holds possible values of how the locale was selected [optional]
Text String Text is the actual text of the error message [optional]

Examples

  • Prepare the resource
$ErrorMessage = Initialize-BetaErrorMessage  -Locale en-US `
 -LocaleOrigin DEFAULT `
 -Text This is an error
  • Convert the resource to JSON
$ErrorMessage | ConvertTo-JSON

[Back to top]