Class: OvirtSDK4::AffinityGroupsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(group, opts = {}) ⇒ AffinityGroup
Create a new affinity group.
-
#group_service(id) ⇒ AffinityGroupService
Access the affinity group service that manages the affinity group specified by an ID.
-
#list(opts = {}) ⇒ Array<AffinityGroup>
List existing affinity groups.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(group, opts = {}) ⇒ AffinityGroup
Create a new affinity group.
Post a request like in the example below to create a new affinity group:
POST /ovirt-engine/api/clusters/000-000/affinitygroups
And use the following example in its body:
<affinity_group>
<name>AF_GROUP_001</name>
<hosts_rule>
<enforcing>true</enforcing>
<positive>true</positive>
</hosts_rule>
<vms_rule>
<enabled>false</enabled>
</vms_rule>
</affinity_group>
1715 1716 1717 |
# File 'lib/ovirtsdk4/services.rb', line 1715 def add(group, opts = {}) internal_add(group, AffinityGroup, ADD, opts) end |
#group_service(id) ⇒ AffinityGroupService
Access the affinity group service that manages the affinity group specified by an ID.
1760 1761 1762 |
# File 'lib/ovirtsdk4/services.rb', line 1760 def group_service(id) AffinityGroupService.new(self, id) end |
#list(opts = {}) ⇒ Array<AffinityGroup>
List existing affinity groups.
The order of the affinity groups results isn’t guaranteed.
1749 1750 1751 |
# File 'lib/ovirtsdk4/services.rb', line 1749 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 |
# File 'lib/ovirtsdk4/services.rb', line 1771 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return group_service(path) end return group_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |