summaryrefslogtreecommitdiffstats
path: root/generator.py
diff options
context:
space:
mode:
authorOsier Yang <jyang@redhat.com>2012-09-04 23:16:24 +0800
committerOsier Yang <jyang@redhat.com>2012-09-06 21:58:36 +0800
commitf3f1a4376405f45ac136a922d535f79a5f816be4 (patch)
treefc56d15def577e1e8d84be01cf8068046c6d598d /generator.py
parentc7d9d7ee807b3adad2926a355d1568998dbad561 (diff)
downloadlibvirt-python-split-f3f1a4376405f45ac136a922d535f79a5f816be4.tar.gz
libvirt-python-split-f3f1a4376405f45ac136a922d535f79a5f816be4.tar.xz
libvirt-python-split-f3f1a4376405f45ac136a922d535f79a5f816be4.zip
list: Define new API virStorageListAllStoragePools
This introduces a new API to list the storage pool objects, 4 groups of flags are provided to filter the returned pools: * Active or not * Autostarting or not * Persistent or not * And the pool type. include/libvirt/libvirt.h.in: New enum virConnectListAllStoragePoolFlags; Declare the API. python/generator.py: Skip the generating src/driver.h: (virDrvConnectListAllStoragePools) src/libvirt.c: Implementation for the API. src/libvirt_public.syms: Export the symbol.
Diffstat (limited to 'generator.py')
-rwxr-xr-xgenerator.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/generator.py b/generator.py
index 7beb361..261efe0 100755
--- a/generator.py
+++ b/generator.py
@@ -337,7 +337,7 @@ foreign_encoding_args = (
#
#######################################################################
-# Class methods which are written by hand in libvir.c but the Python-level
+# Class methods which are written by hand in libvirt.c but the Python-level
# code is still automatically generated (so they are not in skip_function()).
skip_impl = (
'virConnectGetVersion',
@@ -457,9 +457,10 @@ skip_function = (
'virConnectDomainEventDeregisterAny', # overridden in virConnect.py
'virSaveLastError', # We have our own python error wrapper
'virFreeError', # Only needed if we use virSaveLastError
- 'virConnectListAllDomains', #overridden in virConnect.py
+ 'virConnectListAllDomains', # overridden in virConnect.py
'virDomainListAllSnapshots', # overridden in virDomain.py
'virDomainSnapshotListAllChildren', # overridden in virDomainSnapshot.py
+ 'virConnectListAllStoragePools', # overridden in virConnect.py
'virStreamRecvAll', # Pure python libvirt-override-virStream.py
'virStreamSendAll', # Pure python libvirt-override-virStream.py