mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user