SystemAccessDeviceTypeGetEnhancedConfigurableListRequest
Bases: OCIRequest
Requests the list of device types supporting enhanced configuration. The response is either SystemAccessDeviceTypeGetEnhancedConfigurableListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceTypeGetEnhancedConfigurableListRequest. Contains a table with columns: "Access Device Type", "Enhanced Configuration Type", "Supports Reset". The "Enhanced Configuration Type" column contains one of the AccessDeviceEnhancedConfigurationType14 enumerated values. The "Supports Reset" column is a boolean flag indicating the device can be remotely reset.
Attributes:
device_type_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccessDeviceTypeGetEnhancedConfigurableListRequest
client = Client()
command = SystemAccessDeviceTypeGetEnhancedConfigurableListRequest()
response = client.command(command)
print(response)