add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
id: v2025-configuration-item-request
title: ConfigurationItemRequest
pagination_label: ConfigurationItemRequest
sidebar_label: ConfigurationItemRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ConfigurationItemRequest', 'V2025ConfigurationItemRequest']
slug: /tools/sdk/python/v2025/models/configuration-item-request
tags: ['SDK', 'Software Development Kit', 'ConfigurationItemRequest', 'V2025ConfigurationItemRequest']
---
# ConfigurationItemRequest
The request body for creation or update of a Reassignment Configuration for a single identity and work type
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**reassigned_from_id** | **str** | The identity id to reassign an item from | [optional]
**reassigned_to_id** | **str** | The identity id to reassign an item to | [optional]
**config_type** | [**ConfigTypeEnum**](config-type-enum) | | [optional]
**start_date** | **datetime** | The date from which to start reassigning work items | [optional]
**end_date** | **datetime** | The date from which to stop reassigning work items. If this is an null string it indicates a permanent reassignment. | [optional]
}
## Example
```python
from sailpoint.v2025.models.configuration_item_request import ConfigurationItemRequest
configuration_item_request = ConfigurationItemRequest(
reassigned_from_id='2c91808781a71ddb0181b9090b5c504e',
reassigned_to_id='2c91808781a71ddb0181b9090b53504a',
config_type='ACCESS_REQUESTS',
start_date='2022-07-21T11:13:12.345Z',
end_date='2022-07-30T17:00Z'
)
```
[[Back to top]](#)