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"/>
1036 1037 1038 |
# File 'lib/ovirtsdk4/services.rb', line 1036 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.
1071 1072 1073 |
# File 'lib/ovirtsdk4/services.rb', line 1071 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 |
# File 'lib/ovirtsdk4/services.rb', line 1093 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.
1082 1083 1084 |
# File 'lib/ovirtsdk4/services.rb', line 1082 def vm_service(id) AffinityGroupVmService.new(self, id) end |