ServiceProviderAccessDeviceFileGetRequest20
Bases: OCIRequest
Request to get a service provider device profile file. The response is either ServiceProviderAccessDeviceFileGetResponse20 or ErrorResponse.
Attributes:
service_provider_id (str):
device_name (str):
file_format (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderAccessDeviceFileGetRequest21.
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]):
allow_upload_from_device (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
131765 131766 131767 131768 131769 131770 131771 131772 131773 131774 131775 131776 131777 131778 131779 131780 131781 131782 131783 131784 131785 131786 131787 131788 131789 131790 131791 131792 131793 131794 131795 131796 131797 131798 131799 131800 131801 131802 131803 131804 131805 131806 131807 131808 131809 131810 131811 131812 131813 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderAccessDeviceFileGetRequest20
client = Client()
command = ServiceProviderAccessDeviceFileGetRequest20(
service_provider_id=...,
device_name=...,
file_format=...,
)
response = client.command(command)
print(response)