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.
16096 16097 16098 |
# File 'lib/ovirtsdk4/services.rb', line 16096 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
16107 16108 16109 16110 16111 16112 |
# File 'lib/ovirtsdk4/services.rb', line 16107 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |