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,53 @@
---
id: v2025-configuration-response
title: ConfigurationResponse
pagination_label: ConfigurationResponse
sidebar_label: ConfigurationResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ConfigurationResponse', 'V2025ConfigurationResponse']
slug: /tools/sdk/python/v2025/models/configuration-response
tags: ['SDK', 'Software Development Kit', 'ConfigurationResponse', 'V2025ConfigurationResponse']
---
# ConfigurationResponse
The response body of a Reassignment Configuration for a single identity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**identity** | [**Identity1**](identity1) | | [optional]
**config_details** | [**[]ConfigurationDetailsResponse**](configuration-details-response) | Details of how work should be reassigned for an Identity | [optional]
}
## Example
```python
from sailpoint.v2025.models.configuration_response import ConfigurationResponse
configuration_response = ConfigurationResponse(
identity=sailpoint.v2025.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ),
config_details=[
sailpoint.v2025.models.configuration_details_response.ConfigurationDetailsResponse(
config_type = 'ACCESS_REQUESTS',
target_identity = sailpoint.v2025.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ),
start_date = '2022-07-21T11:13:12.345Z',
end_date = '0001-01-01T00:00Z',
audit_details = sailpoint.v2025.models.audit_details.AuditDetails(
created = '2022-07-21T11:13:12.345Z',
created_by = sailpoint.v2025.models.identity_1.Identity_1(
id = '2c91808380aa05580180aaaaf1940410',
name = 'William Wilson', ),
modified = '2022-07-21T11:13:12.345Z',
modified_by = , ), )
]
)
```
[[Back to top]](#)