Package web :: Package pluginmanager :: Package plugins :: Package hardware_inventory :: Module model :: Class HardwareElement
[hide private]
[frames] | no frames]

Class HardwareElement

source code

declarative_base() --+
                     |
                    HardwareElement

Instance Methods [hide private]
 
__cmp__(self, other) source code
Class Variables [hide private]
  __tablename__ = 'hardware_element'
  id = Column(Integer, primary_key= True)
  type = Column(Unicode(3), primary_key= True)
  description = Column(Unicode(512), primary_key= True)
  hardware_profile_hardware_element = Table('hardware_profile_ha...
  profiles = relation('HardwareProfile', secondary= hardware_pro...
Class Variable Details [hide private]

hardware_profile_hardware_element

Value:
Table('hardware_profile_hardware_element', metadata, Column('element_i\
d', Integer, ForeignKey('hardware_element.id')), Column('profile_id', \
Integer, ForeignKey('hardware_profile.id')))

profiles

Value:
relation('HardwareProfile', secondary= hardware_profile_hardware_eleme\
nt, backref= 'elements')