This API call updates a cluster user sessions configuration. You can modify the user sessions configuration by specifying new concurrent user session limits for cluster admin accounts and regular users. Set limits to 0
for unlimited concurrent user sessions. If you choose to set any of the limits to 0
, the limit for the other account type also must be set to 0
.
You can use this request to update automatic logout policy. By default, there's no auto logout of users who stay on auto-refreshable page. Use below payload to turn automatic logout on and set the session timeout to 900
seconds (15 minutes).
"automaticLogoutDto": {"logoutInactiveUsersEnabled": true,"userInactivityTimeout": 900}
To execute this request, you need the Service Provider API (ServiceProviderAPI
) permission assigned to your API token. Generate your API token via Cluster Management Console (CMC). To learn how to obtain and use it, see Cluster API - Authentication.
/api/cluster/v2/clusterConfig/userSessions
The configuration of user sessions - concurrent sessions policy and automatic logout.
UserSessionsConfig
objectThe configuration of user sessions - concurrent sessions policy and automatic logout.
The configuration of the concurrent sessions policy. Set '0' to disable session limitation.
ConcurrentSessionPolicy
objectThe configuration of the concurrent sessions policy. Set '0' to disable session limitation.
Session limit for regular users (0 = no limit)
Session limit for admin users (0 = no limit)
AutomaticLogoutConfiguration
objectConfiguration of automatic logout.
True if automatic logout is enabled
User inactivity timeout
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
{"concurrentSessionPolicyDto": {"userLimit": 1,"adminLimit": 1},"automaticLogoutDto": {"logoutInactiveUsersEnabled": true,"userInactivityTimeout": 900}}
Successful
Wrong parameters
Configuration update failed
In this example, the request updates the cluster user sessions configuration. Cluster updates the current session policy for concurrent sign-ins and user inactivity. The request indicates that the concurrent sign-in limit for users is 3
. The limit for cluster admin accounts is 5
. Also, the inactivity sign-out policy is in effect and is set to 900
seconds.
curl -X PUT "https://myManaged.cluster.com/api/cluster/v2/clusterConfig/userSessions"-H "accept: */*"-H "Content-Type: */*"-d "{\"concurrentSessionPolicyDto\":{\"userLimit\":0,\"adminLimit\":0},\"automaticLogoutDto\":{\"logoutInactiveUsersEnabled\":true,\"userInactivityTimeout\":900}}"
https://myManaged.cluster.com/api/cluster/v2/clusterConfig/userSessions
{"concurrentSessionPolicyDto": {"userLimit": 3,"adminLimit": 5},"automaticLogoutDto": {"logoutInactiveUsersEnabled": true,"userInactivityTimeout": 900}}
204