Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ConfigurationItemRequest.md
2025-02-03 22:09:17 +00:00

1.5 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-item-request ConfigurationItemRequest ConfigurationItemRequest ConfigurationItemRequest powershellsdk
powershell
PowerShell
sdk
ConfigurationItemRequest
V2024ConfigurationItemRequest
/tools/sdk/powershell/v2024/models/configuration-item-request
SDK
Software Development Kit
ConfigurationItemRequest
V2024ConfigurationItemRequest

ConfigurationItemRequest

Properties

Name Type Description Notes
ReassignedFromId String The identity id to reassign an item from [optional]
ReassignedToId String The identity id to reassign an item to [optional]
ConfigType ConfigTypeEnum [optional]
StartDate System.DateTime The date from which to start reassigning work items [optional]
EndDate System.DateTime The date from which to stop reassigning work items. If this is an null string it indicates a permanent reassignment. [optional]

Examples

  • Prepare the resource
$ConfigurationItemRequest = Initialize-PSSailpoint.V2024ConfigurationItemRequest  -ReassignedFromId 2c91808781a71ddb0181b9090b5c504e `
 -ReassignedToId 2c91808781a71ddb0181b9090b53504a `
 -ConfigType null `
 -StartDate 2022-07-21T11:13:12.345Z `
 -EndDate 2022-07-30T17:00Z
  • Convert the resource to JSON
$ConfigurationItemRequest | ConvertTo-JSON

[Back to top]