class SupernetAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = 'supernet_av' entity = models.ForeignKey(Supernet) attribute = EAVAttributeField(Attribute)
class NetworkAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = 'network_av' entity = models.ForeignKey(Network) attribute = EAVAttributeField(Attribute)
class SOAAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = 'soa_av' entity = models.ForeignKey(SOA) attribute = EAVAttributeField(Attribute, type_choices=(ATTRIBUTE_INVENTORY, ))
class WorkgroupAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = 'workgroup_av' entity = models.ForeignKey(Workgroup) attribute = EAVAttributeField(Attribute)
class DynamicInterfaceAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = "dynamic_interface_av" entity = models.ForeignKey(DynamicInterface) attribute = EAVAttributeField(Attribute, type_choices=(ATTRIBUTE_INVENTORY, ))
class WorkgroupAV(EAVBase): class Meta(EAVBase.Meta): app_label = 'cyder' db_table = 'workgroup_av' entity = models.ForeignKey(Workgroup) attribute = EAVAttributeField(Attribute, type_choices=(ATTRIBUTE_OPTION, ATTRIBUTE_STATEMENT))