SystemAccessDeviceGetNativeTagsWithLogicListRequest
Bases: OCIRequest
Get the list of all native tags with logic managed by the Device Management System, on a per-device profile basis. The response is either SystemAccessDeviceGetNativeTagsWithLogicListResponse or ErrorResponse.
Attributes:
device_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceGetNativeTagsWithLogicListRequest. Contains a table of all native tags with logic managed by the Device Management System on a per-device profile basis.
The column headings are: "Tag Name", "Tag Value".
Attributes:
device_native_tags_with_logic_table (OCITable):
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 SystemAccessDeviceGetNativeTagsWithLogicListRequest
client = Client()
command = SystemAccessDeviceGetNativeTagsWithLogicListRequest(
device_name=...,
)
response = client.command(command)
print(response)