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.
35828 35829 35830 |
# File 'lib/ovirtsdk4/services.rb', line 35828 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.
35865 35866 35867 |
# File 'lib/ovirtsdk4/services.rb', line 35865 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
35887 35888 35889 35890 35891 35892 35893 35894 35895 35896 |
# File 'lib/ovirtsdk4/services.rb', line 35887 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.
35876 35877 35878 |
# File 'lib/ovirtsdk4/services.rb', line 35876 def weight_service(id) WeightService.new(self, id) end |