SystemVisualDeviceManagementGetDeviceInfoRequest
Bases: OCIRequest
Get the information for a specified device supporting visual device management. The response is either a SystemVisualDeviceManagementGetDeviceInfoResponse or ErrorResponse.
Attributes:
device_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemVisualDeviceManagementGetDeviceInfoRequest.
Attributes:
device_type (str):
support_visual_device_management (bool):
mac_address (Optional[str]):
primary_user (Optional[PrimaryUserInfo]):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemVisualDeviceManagementGetDeviceInfoRequest
client = Client()
command = SystemVisualDeviceManagementGetDeviceInfoRequest(
device_name=...,
)
response = client.command(command)
print(response)