GroupDeviceTypeFileGetListRequest21
Bases: OCIRequest
Request to get the list of device type files managed by the Device Management System, on a per-group basis. The response is either GroupDeviceTypeFileGetListResponse21 or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
device_type (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupDeviceTypeFileGetListRequest21. Contains a table of device type files managed by the Device Management System, on a per-group basis. The column headings are: "File Format", "Is Authenticated", "Access URL", "Repository URL", "Template URL".
Attributes:
group_device_type_files_table (OCITable):
group_has_customizable_dynamic_files (bool):
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 GroupDeviceTypeFileGetListRequest21
client = Client()
command = GroupDeviceTypeFileGetListRequest21(
service_provider_id=...,
group_id=...,
device_type=...,
)
response = client.command(command)
print(response)