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
weight
service.
Methods inherited from Service
Instance Method Details
#add(weight, opts = {}) ⇒ Weight
Add a weight to a specified user defined scheduling policy.
33948 33949 33950 |
# File 'lib/ovirtsdk4/services.rb', line 33948 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.
33985 33986 33987 |
# File 'lib/ovirtsdk4/services.rb', line 33985 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
34007 34008 34009 34010 34011 34012 34013 34014 34015 34016 |
# File 'lib/ovirtsdk4/services.rb', line 34007 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.
33996 33997 33998 |
# File 'lib/ovirtsdk4/services.rb', line 33996 def weight_service(id) WeightService.new(self, id) end |