Class: OvirtSDK4::WeightsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(weight, opts = {}) ⇒ Weight
Add a weight to a specified user defined scheduling policy.
-
#list(opts = {}) ⇒ Array<Weight>
Returns the list of weights.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#weight_service(id) ⇒ WeightService
Locates the
weightservice.
Methods inherited from Service
Instance Method Details
#add(weight, opts = {}) ⇒ Weight
Add a weight to a specified user defined scheduling policy.
36271 36272 36273 |
# File 'lib/ovirtsdk4/services.rb', line 36271 def add(weight, opts = {}) internal_add(weight, Weight, ADD, opts) end |
#list(opts = {}) ⇒ Array<Weight>
Returns the list of weights.
The order of the returned list of weights isn’t guaranteed.
36308 36309 36310 |
# File 'lib/ovirtsdk4/services.rb', line 36308 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
36330 36331 36332 36333 36334 36335 36336 36337 36338 36339 |
# File 'lib/ovirtsdk4/services.rb', line 36330 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return weight_service(path) end return weight_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |
#weight_service(id) ⇒ WeightService
Locates the weight service.
36319 36320 36321 |
# File 'lib/ovirtsdk4/services.rb', line 36319 def weight_service(id) WeightService.new(self, id) end |