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,41 @@
---
id: beta-error-response-dto
title: ErrorResponseDto
pagination_label: ErrorResponseDto
sidebar_label: ErrorResponseDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ErrorResponseDto', 'BetaErrorResponseDto']
slug: /tools/sdk/powershell/beta/models/error-response-dto
tags: ['SDK', 'Software Development Kit', 'ErrorResponseDto', 'BetaErrorResponseDto']
---
# ErrorResponseDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DetailCode** | Pointer to **String** | Fine-grained error code providing more detail of the error. | [optional]
**TrackingId** | Pointer to **String** | Unique tracking id for the error. | [optional]
**Messages** | Pointer to [**[]ErrorMessageDto**](error-message-dto) | Generic localized reason for error | [optional]
**Causes** | Pointer to [**[]ErrorMessageDto**](error-message-dto) | Plain-text descriptive reasons to provide additional detail to the text provided in the messages field | [optional]
## Examples
- Prepare the resource
```powershell
$ErrorResponseDto = Initialize-PSSailpoint.BetaErrorResponseDto -DetailCode 400.1 Bad Request Content `
-TrackingId e7eab60924f64aa284175b9fa3309599 `
-Messages null `
-Causes null
```
- Convert the resource to JSON
```powershell
$ErrorResponseDto | ConvertTo-JSON
```
[[Back to top]](#)