removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: model-error
title: ModelError
pagination_label: ModelError
sidebar_label: ModelError
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ModelError']
slug: /tools/sdk/powershell/beta/models/model-error
tags: ['SDK', 'Software Development Kit', 'ModelError']
---
# 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]](#)