summaryrefslogtreecommitdiffstats
path: root/libvirt-python-api.xml
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2008-06-10 15:20:25 +0000
committerDaniel Veillard <veillard@redhat.com>2008-06-10 15:20:25 +0000
commit1b58a90c1a40d555fd82d91e89f8cf0a51042059 (patch)
tree803bfbe1ceb0281830488057f0211e14a4ef653b /libvirt-python-api.xml
parent93fe0e8f5d189dd4eecb8554d1691d3575f93817 (diff)
downloadlibvirt-python-split-1b58a90c1a40d555fd82d91e89f8cf0a51042059.tar.gz
libvirt-python-split-1b58a90c1a40d555fd82d91e89f8cf0a51042059.tar.xz
libvirt-python-split-1b58a90c1a40d555fd82d91e89f8cf0a51042059.zip
* python/generator.py python/libvir.c python/libvirt-python-api.xml:
Apply patch from Cole Robinson fixing UUIDString for python Daniel
Diffstat (limited to 'libvirt-python-api.xml')
-rw-r--r--libvirt-python-api.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/libvirt-python-api.xml b/libvirt-python-api.xml
index f415c50..da643d7 100644
--- a/libvirt-python-api.xml
+++ b/libvirt-python-api.xml
@@ -48,11 +48,31 @@
<return type='char *' info='the 16 bytes string or None in case of error'/>
<arg name='domain' type='virDomainPtr' info='a domain object'/>
</function>
+ <function name='virDomainGetUUIDString' file='python'>
+ <info>Fetch globally unique ID of the domain as a string.</info>
+ <return type='char *' info='the UUID string or None in case of error'/>
+ <arg name='pool' type='virDomainPtr' info='a domain object'/>
+ </function>
<function name='virNetworkGetUUID' file='python'>
<info>Extract the UUID unique Identifier of a network.</info>
<return type='char *' info='the 16 bytes string or None in case of error'/>
<arg name='domain' type='virNetworkPtr' info='a network object'/>
</function>
+ <function name='virNetworkGetUUIDString' file='python'>
+ <info>Fetch globally unique ID of the network as a string.</info>
+ <return type='char *' info='the UUID string or None in case of error'/>
+ <arg name='net' type='virNetworkPtr' info='a network object'/>
+ </function>
+ <function name='virStoragePoolGetUUID' file='python'>
+ <info>Extract the UUID unique Identifier of a storage pool.</info>
+ <return type='char *' info='the 16 bytes string or None in case of error'/>
+ <arg name='pool' type='virStoragePoolPtr' info='a storage pool object'/>
+ </function>
+ <function name='virStoragePoolGetUUIDString' file='python'>
+ <info>Fetch globally unique ID of the storage pool as a string.</info>
+ <return type='char *' info='the UUID string or None in case of error'/>
+ <arg name='pool' type='virStoragePoolPtr' info='a storage pool object'/>
+ </function>
<function name='virNetworkGetAutostart' file='python'>
<info>Extract the autostart flag for a network.</info>
<return type='int' info='the autostart flag, or None in case of error'/>