Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ErrorMessage.md
2025-02-03 22:09:17 +00:00

1.0 KiB

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

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-PSSailpoint.V2024ErrorMessage  -Locale en-US `
 -LocaleOrigin DEFAULT `
 -Text This is an error
  • Convert the resource to JSON
$ErrorMessage | ConvertTo-JSON

[Back to top]