def find_rack(self): """ Retrieve the ItopapiRack corresponding to this server """ if self.rack_id is not None: ItopapiPrototype.get_itop_class('Rack').find(self.rack_id) return None
def find_model(self): """ Retrieve the ItopapiModel corresponding to this server """ if self.model_id is not None: ItopapiPrototype.get_itop_class('Model').find(self.model_id) return None
def find_web_server(self): """ Retrieve the ItopapiWebServer corresponding to this WebApplication """ if self.webserver_id is not None: ItopapiPrototype.get_itop_class('WebServer').find(self.webserver_id) return None
def find_organization(self): """ Retrieve the parent ItopapiOrganization """ if self.org_id is not None: ItopapiPrototype.get_itop_class('Organization').find(self.org_id) return None
def find_enclosure(self): """ Retrieve the ItopapiEnclosure corresponding to this server """ if self.enclosure_id is not None: ItopapiPrototype.get_itop_class('Enclosure').find(self.enclosure_id) return None
def find_os_version(self): """ Retrieve the ItopapiOSVersion corresponding to this server """ if self.osversion_id is not None: ItopapiPrototype.get_itop_class('OSVersion').find(self.osfamily_id) return None
def find_brand(self): """ Retrieve the ItopapiBrand corresponding to this server """ if self.brand_id is not None: ItopapiPrototype.get_itop_class('Brand').find(self.brand_id) return None
def find_organization(self): """ Retrieve the ItopapiOrganization corresponding to this server """ if self.org_id is not None: ItopapiPrototype.get_itop_class('Organization').find(self.org_id) return None
def find_location(self): """ Retrieve the ItopapiLocation related to this instance """ if self.location_id is not None: ItopapiPrototype.get_itop_class('Location').find(self.location_id) return None
def find_organization(self): """ Retrieve the ItopapiOrganization related to this instance """ if self.org_id is not None: ItopapiPrototype.get_itop_class('Organization').find(self.org_id) return None
def find_brand(self): """ Retrieve the ItopapiBrand corresponding to this instance """ if self.brand_id is not None: ItopapiPrototype.get_itop_class('Brand').find(self.brand_id) return None
def find_os_family(self): """ Retrieve the ItopapiOSFamily corresponding to this VirtualMachine """ if self.osfamily_id is not None: ItopapiPrototype.get_itop_class('OSFamily').find(self.osfamily_id) return None
def find_os_licence(self): """ Retrieve the ItopapiOSLicence corresponding to this server """ if self.oslicence_id is not None: ItopapiPrototype.get_itop_class('OSLicence').find(self.osfamily_id) return None
def find_os_family(self): """ Retrieve the ItopapiOSFamily corresponding to this server """ if self.osfamily_id is not None: ItopapiPrototype.get_itop_class('OSFamily').find(self.osfamily_id) return None
def find_enclosure(self): """ Retrieve the ItopapiEnclosure corresponding to this server """ if self.enclosure_id is not None: ItopapiPrototype.get_itop_class('Enclosure').find( self.enclosure_id) return None
def find_model(self): """ Retrieve the ItopapiModel corresponding to this instance """ if self.model_id is not None: ItopapiPrototype.get_itop_class('Model').find(self.model_id) raise ItopapiUnimplementedMethod() return None
def find_web_server(self): """ Retrieve the ItopapiWebServer corresponding to this WebApplication """ if self.webserver_id is not None: ItopapiPrototype.get_itop_class('WebServer').find( self.webserver_id) return None
def find_team(self): """ Retrieve the ItopapiTeam related to this instance """ if self.team_id is not None: return ItopapiPrototype.get_itop_class('Team').find(self.team_id) return None
def find_NetworkDeviceType(self): """ Retrieve the ItopapiNetworkDeviceType related to this instance """ if self.networkdevicetype_id is not None: return ItopapiPrototype.get_itop_class('NetworkDeviceType').find(self.networkdevicetype_id) return None
def find_model(self): """ Retrieve the ItopapiModel related to this instance """ if self.model_id is not None: return ItopapiPrototype.get_itop_class('Model').find(self.location_id) return None
def find_manager(self): """ Retrieve the ItopapiManager related to this instance """ if self.manager_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.manager_id) return None
def find_farm(self): """ Retrieve the ItopapiFarm related to this instance """ if self.farm_id is not None: return ItopapiPrototype.get_itop_class('Farm').find(self.farm_id) return None
def find_powerB(self): """ Retrieve the ItopapiAgent related to this instance """ if self.powerB_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.powerB_id) return None
def find_enclosure(self): """ Retrieve the ItopapiEnclosure related to this instance """ if self.enclosure_id is not None: return ItopapiPrototype.get_itop_class('Enclosure').find(self.enclosure_id) return None
def find_connectableci(self): """ Retrieve the ItopapiConnectableCI related to this instance """ if self.connectableci_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.connectableci_id) return None
def find_system(self): """ Retrieve the Itopapisystem related to this instance """ if self.system_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.system_id) return None
def find_tapelibrary(self): """ Retrieve the ItopapiTapeLibrary related to this instance """ if self.tapelibrary_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.tapelibrary_id) return None
def find_virtualhost(self): """ Retrieve the ItopapiVirtualHost related to this instance """ if self.virtualhost_id is not None: return ItopapiPrototype.get_itop_class('VirtualHost').find(self.virtualhost_id) return None
def find_iosversion(self): """ Retrieve the ItopapiIOSVersion related to this instance """ if self.iosversion_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.iosversion_id) return None
def find_softwarelicence(self): """ Retrieve the ItopapiSoftwareLicence related to this instance """ if self.softwarelicence_id is not None: return ItopapiPrototype.get_itop_class('SoftwareLicence').find(self.softwarelicence_id) return None
def find_server(self): """ Retrieve the ItopapiServer related to this instance """ if self.server_id is not None: return ItopapiPrototype.get_itop_class('Server').find(self.server_id) return None
def find_deliverymodel(self): """ Retrieve the ItopapiDeliveryModel related to this instance """ if self.deliverymodel_id is not None: return ItopapiPrototype.get_itop_class('DeliveryModel').find(self.deliverymodel_id) return None
def find_osfamily(self): """ Retrieve the ItopapiOSFamily related to this instance """ if self.osfamily_id is not None: return ItopapiPrototype.get_itop_class('OSFamily').find(self.osfamily_id) return None
def find_vlan(self): """ Retrieve the ItopapiVLAN related to this instance """ if self.vlan_id is not None: return ItopapiPrototype.get_itop_class('Person').find(self.vlan_id) return None
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiDeliveryModel, name)
def find_all(): """ Retrieve all instance of OSFamily """ return ItopapiPrototype.find_all(ItopapiDeliveryModel)
def find(key): """ Retrieve one or mor instance of Server with the given key or criteria """ return ItopapiPrototype.find(ItopapiServer, key)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiServer, name)
def find_all(): """ Retrieve all instance of OSVersion """ return ItopapiPrototype.find_all(ItopapiOSVersion)
def find_all(): """ Retrieve all instance of Server """ return ItopapiPrototype.find_all(ItopapiServer)
def find(key): """ Retrieve one or more instance of ApplicationSolution with the given key or criteria """ return ItopapiPrototype.find(ItopapiOrganization, key)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiPhysicalInterface, name)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiOSFamily, name)
def find(key): """ Retrieve one or more instance of OSFamily with the given key or criteria """ return ItopapiPrototype.find(ItopapiOSFamily, key)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiLocation, name)
def find_all(): """ Retrieve all instance of OSFamily """ return ItopapiPrototype.find_all(ItopapiOrganization)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiOSVersion, name)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiOrganization, name)
def find(key): """ Retrieve one or more instance of PhysicalInterface with the given key or criteria """ return ItopapiPrototype.find(ItopapiVLAN, key)
def find_all(): """ Retrieve all instance of Enclosure """ return ItopapiPrototype.find_all(ItopapiEnclosure)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiVLAN, name)
def find_all(): """ Retrieve all instance of PhysicalInterface """ return ItopapiPrototype.find_all(ItopapiVLAN)
def find_by_name(name): return ItopapiPrototype.find_by_name(ItopapiSubnet, name)