Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/Error.md
2025-05-07 14:37:48 +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
beta-model-error ModelError ModelError ModelError powershellsdk
powershell
PowerShell
sdk
ModelError
BetaModelError
/tools/sdk/powershell/beta/models/model-error
SDK
Software Development Kit
ModelError
BetaModelError

ModelError

Properties

Name Type Description Notes
DetailCode String DetailCode is the text of the status code returned [optional]
Messages []ErrorMessage [optional]
TrackingId String TrackingID is the request tracking unique identifier [optional]

Examples

  • Prepare the resource
$ModelError = Initialize-BetaModelError  -DetailCode Internal Server Error `
 -Messages null `
 -TrackingId 9cd03ef80e6a425eb6b11bdbb057cdb4
  • Convert the resource to JSON
$ModelError | ConvertTo-JSON

[Back to top]