mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-07-29 19:41:52 +03:00
virStoragePoolListAllVolumes API appeared in 0.10.2
This commit is contained in:
committed by
Daniel P. Berrange
parent
f55e27f210
commit
38b2d9304f
@ -3569,6 +3569,7 @@ libvirt_virStoragePoolListVolumes(PyObject *self ATTRIBUTE_UNUSED,
|
||||
return py_retval;
|
||||
}
|
||||
|
||||
#if LIBVIR_CHECK_VERSION(0, 10, 2)
|
||||
static PyObject *
|
||||
libvirt_virStoragePoolListAllVolumes(PyObject *self ATTRIBUTE_UNUSED,
|
||||
PyObject *args)
|
||||
@ -3616,6 +3617,7 @@ cleanup:
|
||||
VIR_FREE(vols);
|
||||
return py_retval;
|
||||
}
|
||||
#endif /* LIBVIR_CHECK_VERSION(0, 10, 2) */
|
||||
|
||||
|
||||
static PyObject *
|
||||
@ -7328,7 +7330,9 @@ static PyMethodDef libvirtMethods[] = {
|
||||
#endif /* LIBVIR_CHECK_VERSION(0, 10, 2) */
|
||||
{(char *) "virStoragePoolGetAutostart", libvirt_virStoragePoolGetAutostart, METH_VARARGS, NULL},
|
||||
{(char *) "virStoragePoolListVolumes", libvirt_virStoragePoolListVolumes, METH_VARARGS, NULL},
|
||||
#if LIBVIR_CHECK_VERSION(0, 10, 2)
|
||||
{(char *) "virStoragePoolListAllVolumes", libvirt_virStoragePoolListAllVolumes, METH_VARARGS, NULL},
|
||||
#endif /* LIBVIR_CHECK_VERSION(0, 10, 2) */
|
||||
{(char *) "virStoragePoolGetInfo", libvirt_virStoragePoolGetInfo, METH_VARARGS, NULL},
|
||||
{(char *) "virStorageVolGetInfo", libvirt_virStorageVolGetInfo, METH_VARARGS, NULL},
|
||||
{(char *) "virStoragePoolGetUUID", libvirt_virStoragePoolGetUUID, METH_VARARGS, NULL},
|
||||
|
Reference in New Issue
Block a user