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-client-log-configuration-expiration
title: ClientLogConfigurationExpiration
pagination_label: ClientLogConfigurationExpiration
sidebar_label: ClientLogConfigurationExpiration
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ClientLogConfigurationExpiration', 'V2025ClientLogConfigurationExpiration']
slug: /tools/sdk/powershell/v2025/models/client-log-configuration-expiration
tags: ['SDK', 'Software Development Kit', 'ClientLogConfigurationExpiration', 'V2025ClientLogConfigurationExpiration']
---
# ClientLogConfigurationExpiration
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ClientId** | **String** | Log configuration's client ID | [optional]
**Expiration** | **System.DateTime** | Expiration date-time of the log configuration request. Can be no greater than 24 hours from current date-time. | [optional]
**RootLevel** | [**StandardLevel**](standard-level) | | [required]
**LogLevels** | [**map[string]StandardLevel**](standard-level) | Mapping of identifiers to Standard Log Level values | [optional]
## Examples
- Prepare the resource
```powershell
$ClientLogConfigurationExpiration = Initialize-PSSailpoint.V2025ClientLogConfigurationExpiration -ClientId 3a38a51992e8445ab51a549c0a70ee66 `
-Expiration 2024-11-06T01:31:08.013164Z `
-RootLevel null `
-LogLevels INFO
```
- Convert the resource to JSON
```powershell
$ClientLogConfigurationExpiration | ConvertTo-JSON
```
[[Back to top]](#)