SystemDeviceTypeExportRequest
Bases: OCIRequest
Request to export an existing Device Type to a Device Type Archive File (DTAF). The response is either a SystemDeviceTypeExportResponse or an ErrorResponse.
Attributes:
device_type (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceTypeExportRequest.
Attributes:
file (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDeviceTypeExportRequest
client = Client()
command = SystemDeviceTypeExportRequest(
device_type=...,
)
response = client.command(command)
print(response)