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,35 @@
---
id: provisioning-details
title: ProvisioningDetails
pagination_label: ProvisioningDetails
sidebar_label: ProvisioningDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ProvisioningDetails', 'ProvisioningDetails']
slug: /tools/sdk/powershell/v3/models/provisioning-details
tags: ['SDK', 'Software Development Kit', 'ProvisioningDetails', 'ProvisioningDetails']
---
# ProvisioningDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**OrderedSubPhaseReferences** | Pointer to **String** | Ordered CSV of sub phase references to objects that contain more information about provisioning. For example, this can contain ""manualWorkItemDetails"" which indicate that there is further information in that object for this phase. | [optional]
## Examples
- Prepare the resource
```powershell
$ProvisioningDetails = Initialize-PSSailpoint.V3ProvisioningDetails -OrderedSubPhaseReferences manualWorkItemDetails
```
- Convert the resource to JSON
```powershell
$ProvisioningDetails | ConvertTo-JSON
```
[[Back to top]](#)