diff options
author | Daniel Veillard <veillard@redhat.com> | 2006-02-23 11:26:17 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2006-02-23 11:26:17 +0000 |
commit | 2ce9e08fac637cb6a19e5244027b118dbed708c2 (patch) | |
tree | 0fac58555ce1d3828590b09b13a089abadd6498f /libvirt-python-api.xml | |
parent | 9000be07f8575994c143c6d19e7c4de395588582 (diff) | |
download | libvirt-python-v6-2ce9e08fac637cb6a19e5244027b118dbed708c2.tar.gz libvirt-python-v6-2ce9e08fac637cb6a19e5244027b118dbed708c2.tar.xz libvirt-python-v6-2ce9e08fac637cb6a19e5244027b118dbed708c2.zip |
* src/libvirt.c: fixing a bug before the release of 0.0.5v0.0.5LIBVIRT_0_0_5
* python/generator.py python/libvir.c python/libvirt-python-api.xml:
also fixing the binding for getting a domain UUID
* python/tests/Makefile.am python/tests/uuid.py: added a test
for the new UUID API
Daniel
Diffstat (limited to 'libvirt-python-api.xml')
-rw-r--r-- | libvirt-python-api.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libvirt-python-api.xml b/libvirt-python-api.xml index d90da8a..2a43280 100644 --- a/libvirt-python-api.xml +++ b/libvirt-python-api.xml @@ -6,10 +6,15 @@ <arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/> <return type='int *' info="the list of ID or None in case of error"/> </function> - <function name='virDomainGetInfo' file='libvir' module='libvir'> + <function name='virDomainGetInfo' file='libvir' module='python'> <info>Extract information about a domain. Note that if the connection used to get the domain is limited only a partial set of the informations can be extracted.</info> <return type='int *' info='the list of informations or None in case of error'/> <arg name='domain' type='virDomainPtr' info='a domain object'/> </function> + <function name='virDomainGetUUID' file='libvir' module='python'> + <info>Extract the UUID unique Identifier of a domain.</info> + <return type='char *' info='the 16 bytes string or None in case of error'/> + <arg name='domain' type='virDomainPtr' info='a domain object'/> + </function> </symbols> </api> |