SystemDeviceFamilyExportRequest
Bases: OCIRequest
Request to export a device family.
The response is either a SystemDeviceFamilyExportResponse or an ErrorResponse.
Attributes:
device_family_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceFamilyExportRequest.
Attributes:
file (str):
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 SystemDeviceFamilyExportRequest
client = Client()
command = SystemDeviceFamilyExportRequest(
device_family_name=...,
)
response = client.command(command)
print(response)