adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-queued-check-config-details
title: QueuedCheckConfigDetails
pagination_label: QueuedCheckConfigDetails
sidebar_label: QueuedCheckConfigDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'QueuedCheckConfigDetails']
slug: /tools/sdk/powershell/v2024/models/queued-check-config-details
tags: ['SDK', 'Software Development Kit', 'QueuedCheckConfigDetails']
---
# QueuedCheckConfigDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ProvisioningStatusCheckIntervalMinutes** | **String** | Interval in minutes between status checks | [required]
**ProvisioningMaxStatusCheckDays** | **String** | Maximum number of days to check | [required]
## Examples
- Prepare the resource
```powershell
$QueuedCheckConfigDetails = Initialize-PSSailpoint.V2024QueuedCheckConfigDetails -ProvisioningStatusCheckIntervalMinutes 30 `
-ProvisioningMaxStatusCheckDays 2
```
- Convert the resource to JSON
```powershell
$QueuedCheckConfigDetails | ConvertTo-JSON
```
[[Back to top]](#)