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>
1166 1167 1168 |
# File 'lib/ovirtsdk4/services.rb', line 1166 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.
1211 1212 1213 |
# File 'lib/ovirtsdk4/services.rb', line 1211 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.
1200 1201 1202 |
# File 'lib/ovirtsdk4/services.rb', line 1200 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 |
# File 'lib/ovirtsdk4/services.rb', line 1222 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 |