Beispiel #1
0
 def get_list(self):
     result = disks.get_partitions_names()
     return result
Beispiel #2
0
    def lookup(self, name):
        if name not in disks.get_partitions_names():
            raise NotFoundError("KCHPART0001E", {'name': name})

        return disks.get_partition_details(name)
Beispiel #3
0
 def get_list(self):
     result = disks.get_partitions_names()
     return result
Beispiel #4
0
    def lookup(self, name):
        if name not in disks.get_partitions_names():
            raise NotFoundError("KCHPART0001E", {'name': name})

        return disks.get_partition_details(name)