mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user