adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,49 @@
---
id: provisioning-completed
title: ProvisioningCompleted
pagination_label: ProvisioningCompleted
sidebar_label: ProvisioningCompleted
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ProvisioningCompleted']
slug: /tools/sdk/powershell/v2024/models/provisioning-completed
tags: ['SDK', 'Software Development Kit', 'ProvisioningCompleted']
---
# ProvisioningCompleted
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**TrackingNumber** | **String** | The reference number of the provisioning request. Useful for tracking status in the Account Activity search interface. | [required]
**Sources** | **String** | One or more sources that the provisioning transaction(s) were done against. Sources are comma separated. | [required]
**Action** | Pointer to **String** | Origin of where the provisioning request came from. | [optional]
**Errors** | Pointer to **[]String** | A list of any accumulated error messages that occurred during provisioning. | [optional]
**Warnings** | Pointer to **[]String** | A list of any accumulated warning messages that occurred during provisioning. | [optional]
**Recipient** | [**ProvisioningCompletedRecipient**](provisioning-completed-recipient) | | [required]
**Requester** | Pointer to [**ProvisioningCompletedRequester**](provisioning-completed-requester) | | [optional]
**AccountRequests** | [**[]ProvisioningCompletedAccountRequestsInner**](provisioning-completed-account-requests-inner) | A list of provisioning instructions to perform on an account-by-account basis. | [required]
## Examples
- Prepare the resource
```powershell
$ProvisioningCompleted = Initialize-PSSailpoint.V2024ProvisioningCompleted -TrackingNumber 4b4d982dddff4267ab12f0f1e72b5a6d `
-Sources Corp AD, Corp LDAP, Corp Salesforce `
-Action IdentityRefresh `
-Errors null `
-Warnings null `
-Recipient null `
-Requester null `
-AccountRequests null
```
- Convert the resource to JSON
```powershell
$ProvisioningCompleted | ConvertTo-JSON
```
[[Back to top]](#)