Class: OvirtSDK4::FiltersService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(filter, opts = {}) ⇒ Filter
Add a filter to a specified user defined scheduling policy.
-
#filter_service(id) ⇒ FilterService
Locates the
filter
service. -
#list(opts = {}) ⇒ Array<Filter>
Returns the list of filters used by the scheduling policy.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(filter, opts = {}) ⇒ Filter
Add a filter to a specified user defined scheduling policy.
10873 10874 10875 |
# File 'lib/ovirtsdk4/services.rb', line 10873 def add(filter, opts = {}) internal_add(filter, Filter, ADD, opts) end |
#filter_service(id) ⇒ FilterService
Locates the filter
service.
10921 10922 10923 |
# File 'lib/ovirtsdk4/services.rb', line 10921 def filter_service(id) FilterService.new(self, id) end |
#list(opts = {}) ⇒ Array<Filter>
Returns the list of filters used by the scheduling policy.
The order of the returned list of filters isn’t guaranteed.
10910 10911 10912 |
# File 'lib/ovirtsdk4/services.rb', line 10910 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 |
# File 'lib/ovirtsdk4/services.rb', line 10932 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return filter_service(path) end return filter_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |