adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-model-error
title: ModelError
pagination_label: ModelError
sidebar_label: ModelError
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ModelError', 'BetaModelError']
slug: /tools/sdk/powershell/beta/models/model-error
tags: ['SDK', 'Software Development Kit', 'ModelError', 'BetaModelError']
---
# ModelError
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DetailCode** | Pointer to **String** | DetailCode is the text of the status code returned | [optional]
**Messages** | Pointer to [**[]ErrorMessage**](error-message) | | [optional]
**TrackingId** | Pointer to **String** | TrackingID is the request tracking unique identifier | [optional]
## Examples
- Prepare the resource
```powershell
$ModelError = Initialize-PSSailpoint.BetaModelError -DetailCode Internal Server Error `
-Messages null `
-TrackingId 9cd03ef80e6a425eb6b11bdbb057cdb4
```
- Convert the resource to JSON
```powershell
$ModelError | ConvertTo-JSON
```
[[Back to top]](#)