SystemAccessDeviceFileGetRequest20
Bases: OCIRequest
Request to get a device profile file. The response is either SystemAccessDeviceFileGetResponse20 or ErrorResponse.
Attributes:
device_name (str):
file_format (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceFileGetRequest20.
Attributes:
file_source (str):
configuration_file_name (Optional[str]):
access_url (str):
repository_url (Optional[str]):
template_url (Optional[str]):
extended_capture_enabled (Optional[bool]):
extended_capture_url (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
136317 136318 136319 136320 136321 136322 136323 136324 136325 136326 136327 136328 136329 136330 136331 136332 136333 136334 136335 136336 136337 136338 136339 136340 136341 136342 136343 136344 136345 136346 136347 136348 136349 136350 136351 136352 136353 136354 136355 136356 136357 136358 136359 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAccessDeviceFileGetRequest20
client = Client()
command = SystemAccessDeviceFileGetRequest20(
device_name=...,
file_format=...,
)
response = client.command(command)
print(response)