wip - inventory
This commit is contained in:
parent
1902b24c13
commit
823ecc6bf9
9 changed files with 439 additions and 1 deletions
17
netbox_agent/raid/base.py
Normal file
17
netbox_agent/raid/base.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
class RaidController():
|
||||
|
||||
def get_product_name(self):
|
||||
raise NotImplemented
|
||||
|
||||
def get_serial_number(self):
|
||||
raise NotImplemented
|
||||
|
||||
def get_manufacturer(self):
|
||||
raise NotImplemented
|
||||
|
||||
def get_firmware_version(self):
|
||||
raise NotImplemented
|
||||
|
||||
class Raid():
|
||||
def get_controllers(self):
|
||||
raise NotImplemented
|
Loading…
Add table
Add a link
Reference in a new issue