Class: OvirtSDK4::AffinityGroupVmsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(vm, opts = {}) ⇒ Vm
Adds a virtual machine to the affinity group.
-
#list(opts = {}) ⇒ Array<Vm>
List all virtual machines assigned to this affinity group.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#vm_service(id) ⇒ AffinityGroupVmService
Access the service that manages the virtual machine assignment to this affinity group.
Methods inherited from Service
Instance Method Details
#add(vm, opts = {}) ⇒ Vm
Adds a virtual machine to the affinity group.
For example, to add the virtual machine 789
to the affinity group 456
of cluster 123
, send a request like
this:
POST /ovirt-engine/api/clusters/123/affinitygroups/456/vms
With the following body:
<vm id="789"/>
1597 1598 1599 |
# File 'lib/ovirtsdk4/services.rb', line 1597 def add(vm, opts = {}) internal_add(vm, Vm, ADD, opts) end |
#list(opts = {}) ⇒ Array<Vm>
List all virtual machines assigned to this affinity group.
The order of the returned virtual machines isn’t guaranteed.
1632 1633 1634 |
# File 'lib/ovirtsdk4/services.rb', line 1632 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 |
# File 'lib/ovirtsdk4/services.rb', line 1654 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return vm_service(path) end return vm_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |
#vm_service(id) ⇒ AffinityGroupVmService
Access the service that manages the virtual machine assignment to this affinity group.
1643 1644 1645 |
# File 'lib/ovirtsdk4/services.rb', line 1643 def vm_service(id) AffinityGroupVmService.new(self, id) end |