Esempio n. 1
0
 def get_list(self):
     result = disks.get_partitions_names()
     return result
Esempio n. 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)
Esempio n. 3
0
 def get_list(self):
     result = disks.get_partitions_names()
     return result
Esempio n. 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)