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.
20633 20634 20635 |
# File 'lib/ovirtsdk4/services.rb', line 20633 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 |
# File 'lib/ovirtsdk4/services.rb', line 20655 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.
20644 20645 20646 |
# File 'lib/ovirtsdk4/services.rb', line 20644 def unit_service(id) SchedulingPolicyUnitService.new(self, id) end |