mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: session-configuration
|
||||
title: SessionConfiguration
|
||||
pagination_label: SessionConfiguration
|
||||
sidebar_label: SessionConfiguration
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'SessionConfiguration', 'SessionConfiguration']
|
||||
slug: /tools/sdk/powershell/v3/models/session-configuration
|
||||
tags: ['SDK', 'Software Development Kit', 'SessionConfiguration', 'SessionConfiguration']
|
||||
---
|
||||
|
||||
|
||||
# SessionConfiguration
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**MaxIdleTime** | Pointer to **Int32** | The maximum time in minutes a session can be idle. | [optional]
|
||||
**RememberMe** | Pointer to **Boolean** | Denotes if 'remember me' is enabled. | [optional] [default to $false]
|
||||
**MaxSessionTime** | Pointer to **Int32** | The maximum allowable session time in minutes. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$SessionConfiguration = Initialize-PSSailpoint.V3SessionConfiguration -MaxIdleTime 15 `
|
||||
-RememberMe true `
|
||||
-MaxSessionTime 45
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$SessionConfiguration | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user