mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: v2024-client-log-configuration
|
||||
title: ClientLogConfiguration
|
||||
pagination_label: ClientLogConfiguration
|
||||
sidebar_label: ClientLogConfiguration
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ClientLogConfiguration', 'V2024ClientLogConfiguration']
|
||||
slug: /tools/sdk/powershell/v2024/models/client-log-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'ClientLogConfiguration', 'V2024ClientLogConfiguration']
|
||||
---
|
||||
|
||||
|
||||
# ClientLogConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**ClientId** | Pointer to **String** | Log configuration's client ID | [optional]
|
||||
**DurationMinutes** | Pointer to **Int32** | Duration in minutes for log configuration to remain in effect before resetting to defaults. | [optional] [default to 240]
|
||||
**Expiration** | Pointer to **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** | Pointer to [**map[string]StandardLevel**](standard-level) | Mapping of identifiers to Standard Log Level values | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ClientLogConfiguration = Initialize-PSSailpoint.V2024ClientLogConfiguration -ClientId 3a38a51992e8445ab51a549c0a70ee66 `
|
||||
-DurationMinutes 120 `
|
||||
-Expiration 2024-11-06T01:31:08.013164Z `
|
||||
-RootLevel null `
|
||||
-LogLevels INFO
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ClientLogConfiguration | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user