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,41 @@
---
id: v2025-put-client-log-configuration-request
title: PutClientLogConfigurationRequest
pagination_label: PutClientLogConfigurationRequest
sidebar_label: PutClientLogConfigurationRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PutClientLogConfigurationRequest', 'V2025PutClientLogConfigurationRequest']
slug: /tools/sdk/python/v2025/models/put-client-log-configuration-request
tags: ['SDK', 'Software Development Kit', 'PutClientLogConfigurationRequest', 'V2025PutClientLogConfigurationRequest']
---
# PutClientLogConfigurationRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**client_id** | **str** | Log configuration's client ID | [optional]
**duration_minutes** | **int** | Duration in minutes for log configuration to remain in effect before resetting to defaults. | [optional] [default to 240]
**root_level** | [**StandardLevel**](standard-level) | | [required]
**log_levels** | [**map[string]StandardLevel**](standard-level) | Mapping of identifiers to Standard Log Level values | [optional]
**expiration** | **datetime** | Expiration date-time of the log configuration request. Can be no greater than 24 hours from current date-time. | [optional]
}
## Example
```python
from sailpoint.v2025.models.put_client_log_configuration_request import PutClientLogConfigurationRequest
put_client_log_configuration_request = PutClientLogConfigurationRequest(
client_id='3a38a51992e8445ab51a549c0a70ee66',
duration_minutes=120,
root_level='INFO',
log_levels=INFO,
expiration='2024-11-06T01:31:08.013164Z'
)
```
[[Back to top]](#)