Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ProvisioningCompleted.md
2025-02-03 22:09:17 +00:00

2.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-provisioning-completed ProvisioningCompleted ProvisioningCompleted ProvisioningCompleted powershellsdk
powershell
PowerShell
sdk
ProvisioningCompleted
V2024ProvisioningCompleted
/tools/sdk/powershell/v2024/models/provisioning-completed
SDK
Software Development Kit
ProvisioningCompleted
V2024ProvisioningCompleted

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 String Origin of where the provisioning request came from. [optional]
Errors []String A list of any accumulated error messages that occurred during provisioning. [optional]
Warnings []String A list of any accumulated warning messages that occurred during provisioning. [optional]
Recipient ProvisioningCompletedRecipient [required]
Requester ProvisioningCompletedRequester [optional]
AccountRequests []ProvisioningCompletedAccountRequestsInner A list of provisioning instructions to perform on an account-by-account basis. [required]

Examples

  • Prepare the resource
$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
$ProvisioningCompleted | ConvertTo-JSON

[Back to top]