SystemSoftwareVersionGetRequest
Bases: OCIRequest
Requests the software version of the Application Server. The response is either SystemSoftwareVersionGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemSoftwareVersionGetRequest.
Attributes:
version (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSoftwareVersionGetRequest
client = Client()
command = SystemSoftwareVersionGetRequest()
response = client.command(command)
print(response)