Ejemplo n.º 1
0
 def get(self, fabric):
     path = os.path.join(self.root, self.fabrics, fabric,
                         self.f_endpointgroups, 'index.json')
     return get_json_data(path)
 def get(self, chassis, network_adapter, network_device_function):
     path = create_path(self.root, self.chassis, chassis,
                        self.network_adapters, network_adapter,
                        self.network_device_functions,
                        network_device_function, 'index.json')
     return get_json_data(path)
Ejemplo n.º 3
0
 def get(self):
     path = os.path.join(self.root, self.storage, 'index.json')
     return get_json_data (path)
Ejemplo n.º 4
0
 def get(self, storage_service):
     path = os.path.join(self.root, self.storage_services, storage_service,
                         self.data_security_los_capabilities, 'index.json')
     return get_json_data(path)
Ejemplo n.º 5
0
 def get(self, system, fabric_adapter, fabric_adapter_port):
     path = create_path(self.root, self.systems, system, self.fabric_adapters, fabric_adapter, self.fabric_adapter_ports, fabric_adapter_port, 'index.json')
     return get_json_data (path)
Ejemplo n.º 6
0
 def get(self, storage_service, endpoint_groups):
     path = create_path(self.root, self.storage_services, storage_service,
                        self.endpoint_groups, endpoint_groups, 'index.json')
     return get_json_data(path)
Ejemplo n.º 7
0
 def get(self, fabric, f_switch):
     path = create_path(self.root, self.fabrics, fabric, self.f_switches,
                        f_switch, 'index.json')
     return get_json_data(path)
Ejemplo n.º 8
0
 def get(self):
     path = os.path.join(self.root, self.fabrics, 'index.json')
     return get_json_data(path)
Ejemplo n.º 9
0
 def get(self, fabric):
     path = create_path(self.root, self.fabrics, fabric, 'index.json')
     return get_json_data(path)
Ejemplo n.º 10
0
 def get(self, chassis, network_adapter):
     path = create_path(self.root, self.chassis, chassis, self.network_adapters, network_adapter, 'index.json')
     return get_json_data (path)
 def get(self, storage_service):
     path = os.path.join(self.root, self.storage_services, storage_service,
                         self.ioperformance_los_capabilities, 'index.json')
     return get_json_data(path)
Ejemplo n.º 12
0
 def get(self, chassis):
     path = os.path.join(self.root, self.chassis, chassis, self.network_adapters, 'index.json')
     return get_json_data (path)
Ejemplo n.º 13
0
 def get(self, chassis, drive):
     path = create_path(self.root, self.chassis, chassis, self.drives, drive, 'index.json')
     return get_json_data (path)
Ejemplo n.º 14
0
 def get(self, chassis):
     path = os.path.join(self.root, self.chassis, chassis, self.drives, 'index.json')
     return get_json_data (path)
Ejemplo n.º 15
0
 def get(self, chassis, media_controller, mc_ports):
     path = create_path(self.root, self.chassis, chassis,
                        self.media_controllers, media_controller,
                        self.mc_ports, mc_ports, 'index.json')
     return get_json_data(path)
Ejemplo n.º 16
0
 def get(self, storage_service):
     path = os.path.join(self.root, self.storage_services, storage_service,
                         self.file_systems, 'index.json')
     return get_json_data(path)
Ejemplo n.º 17
0
 def get(self, storage_service):
     path = os.path.join(self.root, self.storage_services, storage_service,
                         self.endpoint_groups, 'index.json')
     return get_json_data(path)
Ejemplo n.º 18
0
 def get(self, storage_service, file_systems):
     path = create_path(self.root, self.storage_services, storage_service,
                        self.file_systems, file_systems, 'index.json')
     return get_json_data(path)
Ejemplo n.º 19
0
 def get(self, fabric):
     path = os.path.join(self.root, self.fabrics, fabric, self.f_switches,
                         'index.json')
     return get_json_data(path)
Ejemplo n.º 20
0
 def get(self, fabric, f_endpoint):
     path = create_path(self.root, self.fabrics, fabric, self.f_endpoints,
                        f_endpoint, 'index.json')
     return get_json_data(path)
Ejemplo n.º 21
0
 def get(self, ident):
     logging.info('ComputerSystemAPI GET called')
     path = os.path.join(self.root, self.systems, ident, 'index.json')
     return get_json_data(path)
Ejemplo n.º 22
0
 def get(self, ident):
     path = os.path.join(self.root, self.chassis, ident, 'index.json')
     return get_json_data(path)
Ejemplo n.º 23
0
 def get(self, system, fabric_adapter):
     path = os.path.join(self.root, self.systems, system, self.fabric_adapters, fabric_adapter, self.fabric_adapter_ports, 'index.json')
     return get_json_data (path)
Ejemplo n.º 24
0
 def get(self, chassis):
     path = os.path.join(self.root, self.chassis, chassis,
                         self.memory_domains, 'index.json')
     return get_json_data(path)
 def get(self, chassis, network_adapter):
     path = os.path.join(self.root, self.chassis, chassis,
                         self.network_adapters, network_adapter,
                         self.network_device_functions, 'index.json')
     return get_json_data(path)
Ejemplo n.º 26
0
 def get(self, chassis, memory_domain):
     path = create_path(self.root, self.chassis, chassis,
                        self.memory_domains, memory_domain, 'index.json')
     return get_json_data(path)
Ejemplo n.º 27
0
 def get(self, storage_service, classes_of_service):
     path = create_path(self.root, self.storage_services, storage_service,
                        self.classes_of_service, classes_of_service,
                        'index.json')
     return get_json_data(path)
Ejemplo n.º 28
0
 def get(self, chassis, media_controller):
     path = os.path.join(self.root, self.chassis, chassis,
                         self.media_controllers, media_controller,
                         self.mc_ports, 'index.json')
     return get_json_data(path)
Ejemplo n.º 29
0
 def get(self, storage):
     path = create_path(self.root, self.storage, storage, 'index.json')
     return get_json_data (path)
Ejemplo n.º 30
0
 def get(self, storage, storagecontroller):
     path = create_path(self.root, self.storage, storage, self.storagecontrollers, storagecontroller, 'index.json')
     return get_json_data (path)