SystemAccessDeviceTagSetGetRequest
Bases: OCIRequest
Request to get the custom configuration tag set defined at the access device. The response is either SystemAccessDeviceTagSetGetResponse or ErrorResponse.
Attributes:
device_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceTagSetGetRequest. The response includes a tag set name defined in the access device.
Attributes:
tag_set_name (Optional[str]):
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 SystemAccessDeviceTagSetGetRequest
client = Client()
command = SystemAccessDeviceTagSetGetRequest(
device_name=...,
)
response = client.command(command)
print(response)