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