de3c59a675
- Create and update CPU - Create and update Memory - Create and update RAID Cards (HP and Storcli) - Create and update Physical disks
21 lines
447 B
Python
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
|