netbox-agent/netbox_agent/raid/base.py

22 lines
447 B
Python
Raw Normal View History

class RaidController():
def get_product_name(self):
raise NotImplementedError
def get_serial_number(self):
raise NotImplementedError
def get_manufacturer(self):
raise NotImplementedError
def get_firmware_version(self):
raise NotImplementedError
def get_physical_disks(self):
raise NotImplementedError
class Raid():
def get_controllers(self):
raise NotImplementedError