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,43 @@
---
id: v2024-processing-details
title: ProcessingDetails
pagination_label: ProcessingDetails
sidebar_label: ProcessingDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ProcessingDetails', 'V2024ProcessingDetails']
slug: /tools/sdk/powershell/v2024/models/processing-details
tags: ['SDK', 'Software Development Kit', 'ProcessingDetails', 'V2024ProcessingDetails']
---
# ProcessingDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Date** | Pointer to **System.DateTime** | A date-time in ISO-8601 format | [optional]
**Stage** | Pointer to **String** | | [optional]
**RetryCount** | Pointer to **Int32** | | [optional]
**VarStackTrace** | Pointer to **String** | | [optional]
**Message** | Pointer to **String** | | [optional]
## Examples
- Prepare the resource
```powershell
$ProcessingDetails = Initialize-PSSailpoint.V2024ProcessingDetails -Date 2018-06-25T20:22:28.104Z `
-Stage In Process `
-RetryCount 0 `
-VarStackTrace <stack trace> `
-Message <message>
```
- Convert the resource to JSON
```powershell
$ProcessingDetails | ConvertTo-JSON
```
[[Back to top]](#)