SystemAccessDeviceMonitorGetDeviceTypeListRequest
Bases: OCIRequest
Get a list of monitored device types. The response is either a SystemAccessDeviceMonitorGetDeviceTypeListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceMonitorGetDeviceTypeListRequest.
Attributes:
device_type (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccessDeviceMonitorGetDeviceTypeListRequest
client = Client()
command = SystemAccessDeviceMonitorGetDeviceTypeListRequest()
response = client.command(command)
print(response)