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
unit
service.
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.
19558 19559 19560 |
# File 'lib/ovirtsdk4/services.rb', line 19558 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 |
# File 'lib/ovirtsdk4/services.rb', line 19580 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.
19569 19570 19571 |
# File 'lib/ovirtsdk4/services.rb', line 19569 def unit_service(id) SchedulingPolicyUnitService.new(self, id) end |