Varsha Verma
2019-Aug-14 12:53 UTC
[libvirt-users] Libvirt API for attaching volume to domain
Hi, I wanted to know if there is any Python API exposed for libvirt using which I can attach a libvirt volume to a libvirt domain/VM. I intend to do something similar to the `attach-disk` command of virsh using python. -- *Regards,* *Varsha Verma* *Final Year Undergraduate* *Department of Electrical Engineering* *IIT-BHU, Varanasi*
Peter Krempa
2019-Aug-14 13:18 UTC
Re: [libvirt-users] Libvirt API for attaching volume to domain
On Wed, Aug 14, 2019 at 18:23:30 +0530, Varsha Verma wrote:> Hi, > > I wanted to know if there is any Python API exposed for libvirt using which > I can attach a libvirt volume to a libvirt domain/VM. > > I intend to do something similar to the `attach-disk` command of virsh > using python.virsh uses the virDomainAttachDeviceFlags API in the 'attach-disk' command wrapper. the python bindings expose it as 'attachDeviceFlags' method of the virDomain class.
Varsha Verma
2019-Aug-14 14:13 UTC
Re: [libvirt-users] Libvirt API for attaching volume to domain
Thanks, this is exactly what I needed. Is there some documentation where I can get how to exactly call this function along with the arguments? On Wed, Aug 14, 2019 at 6:48 PM Peter Krempa <pkrempa@redhat.com> wrote:> On Wed, Aug 14, 2019 at 18:23:30 +0530, Varsha Verma wrote: > > Hi, > > > > I wanted to know if there is any Python API exposed for libvirt using > which > > I can attach a libvirt volume to a libvirt domain/VM. > > > > I intend to do something similar to the `attach-disk` command of virsh > > using python. > > virsh uses the virDomainAttachDeviceFlags API in the 'attach-disk' > command wrapper. the python bindings expose it as 'attachDeviceFlags' > method of the virDomain class. >-- *Regards,* *Varsha Verma* *Third Year Undergraduate* *Department of Electrical Engineering* *IIT-BHU, Varanasi*