mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-24 05:25:18 +00:00
Fix python code generation for storage APIs
This commit is contained in:
parent
2b483bfaf5
commit
2168e27738
@ -1,3 +1,8 @@
|
|||||||
|
Thu May 29 10:41:00 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* python/libvirt-python-api.xml: Add API overrides for functions
|
||||||
|
where the generator doesn't produce correct python wrappers
|
||||||
|
|
||||||
Thu May 29 13:26:40 JST 2008 Atushi SAKAI <sakaia@jp.fujitsu.com>
|
Thu May 29 13:26:40 JST 2008 Atushi SAKAI <sakaia@jp.fujitsu.com>
|
||||||
|
|
||||||
Fix make syntax-check caused by trailing blank(s)
|
Fix make syntax-check caused by trailing blank(s)
|
||||||
|
@ -110,5 +110,30 @@
|
|||||||
<arg name='domain' type='virDomainPtr' info='pointer to domain object'/>
|
<arg name='domain' type='virDomainPtr' info='pointer to domain object'/>
|
||||||
<arg name='params' type='virSchedParameterPtr' info='pointer to scheduler parameter objects'/>
|
<arg name='params' type='virSchedParameterPtr' info='pointer to scheduler parameter objects'/>
|
||||||
</function>
|
</function>
|
||||||
|
<function name='virConnectListStoragePools' file='python'>
|
||||||
|
<info>list the storage pools, stores the pointers to the names in @names</info>
|
||||||
|
<arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/>
|
||||||
|
<return type='str *' info='the list of Names of None in case of error'/>
|
||||||
|
</function>
|
||||||
|
<function name='virConnectListDefinedStoragePools' file='python'>
|
||||||
|
<info>list the defined storage pool, stores the pointers to the names in @names</info>
|
||||||
|
<arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/>
|
||||||
|
<return type='str *' info='the list of Names of None in case of error'/>
|
||||||
|
</function>
|
||||||
|
<function name='virStoragePoolListVolumes' file='python'>
|
||||||
|
<info>list the storage volumes, stores the pointers to the names in @names</info>
|
||||||
|
<arg name='pool' type='virStoragePoolPtr' info='pointer to the storage pool'/>
|
||||||
|
<return type='str *' info='the list of Names of None in case of error'/>
|
||||||
|
</function>
|
||||||
|
<function name='virStoragePoolGetInfo' file='python'>
|
||||||
|
<info>Extract information about a storage pool. Note that if the connection used to get the domain is limited only a partial set of the information can be extracted.</info>
|
||||||
|
<return type='int *' info='the list of information or None in case of error'/>
|
||||||
|
<arg name='pool' type='virStoragePoolPtr' info='a storage pool object'/>
|
||||||
|
</function>
|
||||||
|
<function name='virStorageVolGetInfo' file='python'>
|
||||||
|
<info>Extract information about a storage pool. Note that if the connection used to get the domain is limited only a partial set of the information can be extracted.</info>
|
||||||
|
<return type='int *' info='the list of information or None in case of error'/>
|
||||||
|
<arg name='vol' type='virStorageVolPtr' info='a storage vol object'/>
|
||||||
|
</function>
|
||||||
</symbols>
|
</symbols>
|
||||||
</api>
|
</api>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user