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_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_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_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
Example #6
0
 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_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_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
Example #10
0
 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_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
Example #12
0
 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
Example #13
0
 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
Example #14
0
 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_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
Example #16
0
 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_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
Example #18
0
 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
Example #19
0
 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_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
Example #21
0
 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
Example #22
0
 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_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
Example #25
0
 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_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_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
Example #28
0
 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
Example #29
0
 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
Example #30
0
 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_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_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_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_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
Example #37
0
 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
Example #38
0
 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
Example #39
0
 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_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_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