Exemplo n.º 1
0
 def get_server_profile(self, uri):
     uuid = common.get_uuid_from_uri(uri)
     return self.hponeview_client.server_profiles.get(uuid)
Exemplo n.º 2
0
 def get_enclosure_group(self, uri):
     if uri is None:
         return
     uuid = common.get_uuid_from_uri(uri)
     return self.hponeview_client.enclosure_groups.get(uuid)
Exemplo n.º 3
0
 def get_server_hardware_type(self, uri):
     uuid = common.get_uuid_from_uri(uri)
     return self.hponeview_client.server_hardware_types.get(uuid)
Exemplo n.º 4
0
 def get_server_profile_template(self, uri):
     if uri is None:
         return
     uuid = common.get_uuid_from_uri(uri)
     return self.hponeview_client.server_profile_templates.get(uuid)