SystemClientSessionParametersGetRequest
Bases: OCIRequest
Request to get the list of Client Session (web and CLI) system parameters. The response is either SystemClientSessionParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemClientSessionParametersGetRequest. Contains a list of system Client Session (web and CLI) parameters.
Attributes:
enable_inactivity_timeout (bool):
inactivity_timeout_minutes (int):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemClientSessionParametersGetRequest
client = Client()
command = SystemClientSessionParametersGetRequest()
response = client.command(command)
print(response)