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>
1733 1734 1735 |
# File 'lib/ovirtsdk4/services.rb', line 1733 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.
1778 1779 1780 |
# File 'lib/ovirtsdk4/services.rb', line 1778 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.
1767 1768 1769 |
# File 'lib/ovirtsdk4/services.rb', line 1767 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 |
# File 'lib/ovirtsdk4/services.rb', line 1789 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 |