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: beta-provisioning-config
title: ProvisioningConfig
pagination_label: ProvisioningConfig
sidebar_label: ProvisioningConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ProvisioningConfig', 'BetaProvisioningConfig']
slug: /tools/sdk/powershell/beta/models/provisioning-config
tags: ['SDK', 'Software Development Kit', 'ProvisioningConfig', 'BetaProvisioningConfig']
---
# ProvisioningConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**UniversalManager** | Pointer to **Boolean** | Specifies whether this configuration is used to manage provisioning requests for all sources from the org. If true, no managedResourceRefs are allowed. | [optional] [readonly] [default to $false]
**ManagedResourceRefs** | Pointer to [**[]ProvisioningConfigManagedResourceRefsInner**](provisioning-config-managed-resource-refs-inner) | References to sources for the Service Desk integration template. May only be specified if universalManager is false. | [optional]
**PlanInitializerScript** | Pointer to [**ProvisioningConfigPlanInitializerScript**](provisioning-config-plan-initializer-script) | | [optional]
**NoProvisioningRequests** | Pointer to **Boolean** | Name of an attribute that when true disables the saving of ProvisioningRequest objects whenever plans are sent through this integration. | [optional] [default to $false]
**ProvisioningRequestExpiration** | Pointer to **Int32** | When saving pending requests is enabled, this defines the number of hours the request is allowed to live before it is considered expired and no longer affects plan compilation. | [optional]
## Examples
- Prepare the resource
```powershell
$ProvisioningConfig = Initialize-PSSailpoint.BetaProvisioningConfig -UniversalManager true `
-ManagedResourceRefs [{type=SOURCE, id=2c9180855d191c59015d291ceb051111, name=My Source 1}, {type=SOURCE, id=2c9180855d191c59015d291ceb052222, name=My Source 2}] `
-PlanInitializerScript null `
-NoProvisioningRequests true `
-ProvisioningRequestExpiration 7
```
- Convert the resource to JSON
```powershell
$ProvisioningConfig | ConvertTo-JSON
```
[[Back to top]](#)