Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/ErrorMessage.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1023 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
error-message ErrorMessage ErrorMessage ErrorMessage powershellsdk
powershell
PowerShell
sdk
ErrorMessage
/tools/sdk/powershell/beta/models/error-message
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
$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]