Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ProcessingDetails.md
2025-05-07 14:37:48 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-processing-details ProcessingDetails ProcessingDetails ProcessingDetails powershellsdk
powershell
PowerShell
sdk
ProcessingDetails
V2024ProcessingDetails
/tools/sdk/powershell/v2024/models/processing-details
SDK
Software Development Kit
ProcessingDetails
V2024ProcessingDetails

ProcessingDetails

Properties

Name Type Description Notes
Date System.DateTime A date-time in ISO-8601 format [optional]
Stage String [optional]
RetryCount Int32 [optional]
VarStackTrace String [optional]
Message String [optional]

Examples

  • Prepare the resource
$ProcessingDetails = Initialize-V2024ProcessingDetails  -Date 2018-06-25T20:22:28.104Z `
 -Stage In Process `
 -RetryCount 0 `
 -VarStackTrace <stack trace> `
 -Message <message>
  • Convert the resource to JSON
$ProcessingDetails | ConvertTo-JSON

[Back to top]