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,43 @@
---
id: configuration-details-response
title: ConfigurationDetailsResponse
pagination_label: ConfigurationDetailsResponse
sidebar_label: ConfigurationDetailsResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConfigurationDetailsResponse']
slug: /tools/sdk/powershell/v2024/models/configuration-details-response
tags: ['SDK', 'Software Development Kit', 'ConfigurationDetailsResponse']
---
# ConfigurationDetailsResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ConfigType** | Pointer to [**ConfigTypeEnum**](config-type-enum) | | [optional]
**TargetIdentity** | Pointer to [**Identity1**](identity1) | | [optional]
**StartDate** | Pointer to **System.DateTime** | The date from which to start reassigning work items | [optional]
**EndDate** | Pointer to **System.DateTime** | The date from which to stop reassigning work items. If this is an empty string it indicates a permanent reassignment. | [optional]
**AuditDetails** | Pointer to [**AuditDetails**](audit-details) | | [optional]
## Examples
- Prepare the resource
```powershell
$ConfigurationDetailsResponse = Initialize-PSSailpoint.V2024ConfigurationDetailsResponse -ConfigType null `
-TargetIdentity null `
-StartDate 2022-07-21T11:13:12.345Z `
-EndDate 0001-01-01T00:00Z `
-AuditDetails null
```
- Convert the resource to JSON
```powershell
$ConfigurationDetailsResponse | ConvertTo-JSON
```
[[Back to top]](#)