VerifySessionIsValidRequest
Bases: OCIRequest
Query the provisioning server to verify the session is authorized. Most applications should not need this command, because the provisioning server verifies the session is authorized for all commands. The response is either a SuccessResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import VerifySessionIsValidRequest
client = Client()
command = VerifySessionIsValidRequest()
response = client.command(command)
print(response)