Class: OvirtSDK4::SchedulingPolicyUnitsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<SchedulingPolicyUnit>
Returns the list of scheduling policy units available in the system.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#unit_service(id) ⇒ SchedulingPolicyUnitService
Locates the
unitservice.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<SchedulingPolicyUnit>
Returns the list of scheduling policy units available in the system.
The order of the returned list of scheduling policy units isn’t guaranteed.
19386 19387 19388 |
# File 'lib/ovirtsdk4/services.rb', line 19386 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 |
# File 'lib/ovirtsdk4/services.rb', line 19408 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return unit_service(path) end return unit_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |
#unit_service(id) ⇒ SchedulingPolicyUnitService
Locates the unit service.
19397 19398 19399 |
# File 'lib/ovirtsdk4/services.rb', line 19397 def unit_service(id) SchedulingPolicyUnitService.new(self, id) end |