SystemAccessDeviceTypeGetListRequest
Bases: OCIRequest
Requests the list of access device types. The response is either SystemAccessDeviceTypeGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceTypeGetListRequest.
Attributes:
device_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 SystemAccessDeviceTypeGetListRequest
client = Client()
command = SystemAccessDeviceTypeGetListRequest()
response = client.command(command)
print(response)