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-configuration-details-response
title: ConfigurationDetailsResponse
pagination_label: ConfigurationDetailsResponse
sidebar_label: ConfigurationDetailsResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ConfigurationDetailsResponse', 'BetaConfigurationDetailsResponse']
slug: /tools/sdk/powershell/beta/models/configuration-details-response
tags: ['SDK', 'Software Development Kit', 'ConfigurationDetailsResponse', 'BetaConfigurationDetailsResponse']
---
# 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.BetaConfigurationDetailsResponse -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]](#)