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.
36774 36775 36776 |
# File 'lib/ovirtsdk4/services.rb', line 36774 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.
36811 36812 36813 |
# File 'lib/ovirtsdk4/services.rb', line 36811 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
36833 36834 36835 36836 36837 36838 36839 36840 36841 36842 |
# File 'lib/ovirtsdk4/services.rb', line 36833 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.
36822 36823 36824 |
# File 'lib/ovirtsdk4/services.rb', line 36822 def weight_service(id) WeightService.new(self, id) end |