SystemAccessDeviceCustomTagGetListRequest
Bases: OCIRequest
Request to get the list of custom configuration tags managed by the Device Management System, on a per-device profile basis. The response is either SystemAccessDeviceCustomTagGetListResponse or ErrorResponse.
Attributes:
device_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceCustomTagGetListRequest. Contains a table of custom configuration tags managed by the Device Management System on a per-device profile basis.
In AS data mode, the column headings are: "Tag Name", "Tag Value", "Actual Tag Value".
In XS data mode, the column headings are: "Tag Name", "Tag Value", "Is Encrypted", "Actual Tag Value".
Attributes:
device_custom_tags_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccessDeviceCustomTagGetListRequest
client = Client()
command = SystemAccessDeviceCustomTagGetListRequest(
device_name=...,
)
response = client.command(command)
print(response)