netbox-agent/netbox_agent/raid/base.py
Solvik de3c59a675
Local inventory (#16)
- Create and update CPU
- Create and update Memory
- Create and update RAID Cards (HP and Storcli)
- Create and update Physical disks
2019-08-26 16:54:48 +02:00

21 lines
447 B
Python

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