SystemCallTypeGetListRequest
Bases: OCIRequest
Get a list of system call types. The response is either SystemCallTypeGetListResponse or ErrorResponse.
Attributes:
Responses
Bases: OCIDataResponse
Response to SystemCallTypeGetListRequest.
Attributes:
call_type (List[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallTypeGetListRequest
client = Client()
command = SystemCallTypeGetListRequest()
response = client.command(command)
print(response)