blob: ccc4d5f07ef0a6353252d2d3565aff34b6bf1b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
def listAllSnapshots(self, flags):
"""List all snapshots and returns a list of snapshot objects"""
ret = libvirtmod.virDomainListAllSnapshots(self._o, flags)
if ret is None:
raise libvirtError("virDomainListAllSnapshots() failed", conn=self)
retlist = list()
for snapptr in ret:
retlist.append(virDomainSnapshot(self, _obj=snapptr))
return retlist
|