Class: OvirtSDK4::NetworkFilterService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ NetworkFilter
Retrieves a representation of the network filter.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ NetworkFilter
Retrieves a representation of the network filter.
15100 15101 15102 |
# File 'lib/ovirtsdk4/services.rb', line 15100 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
15111 15112 15113 15114 15115 15116 |
# File 'lib/ovirtsdk4/services.rb', line 15111 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |