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>
1154 1155 1156 |
# File 'lib/ovirtsdk4/services.rb', line 1154 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.
1199 1200 1201 |
# File 'lib/ovirtsdk4/services.rb', line 1199 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.
1188 1189 1190 |
# File 'lib/ovirtsdk4/services.rb', line 1188 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 |
# File 'lib/ovirtsdk4/services.rb', line 1210 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 |