Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ConfigurationDetailsResponse.md
2025-01-28 13:29:29 -05:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-configuration-details-response ConfigurationDetailsResponse ConfigurationDetailsResponse ConfigurationDetailsResponse powershellsdk
powershell
PowerShell
sdk
ConfigurationDetailsResponse
V2024ConfigurationDetailsResponse
/tools/sdk/powershell/v2024/models/configuration-details-response
SDK
Software Development Kit
ConfigurationDetailsResponse
V2024ConfigurationDetailsResponse

ConfigurationDetailsResponse

Properties

Name Type Description Notes
ConfigType Pointer to ConfigTypeEnum [optional]
TargetIdentity Pointer to 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 [optional]

Examples

  • Prepare the resource
$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
$ConfigurationDetailsResponse | ConvertTo-JSON

[Back to top]