Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ErrorMessage.md
2025-01-28 13:29:29 -05: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
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 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
$ErrorMessage = Initialize-PSSailpoint.BetaErrorMessage  -Locale en-US `
 -LocaleOrigin DEFAULT `
 -Text This is an error
  • Convert the resource to JSON
$ErrorMessage | ConvertTo-JSON

[Back to top]