Class: OvirtSDK4::ExternalNetworkProviderConfigurationService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ ExternalNetworkProviderConfiguration
Returns the information about an external network provider on the host.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ ExternalNetworkProviderConfiguration
Returns the information about an external network provider on the host.
9829 9830 9831 |
# File 'lib/ovirtsdk4/services.rb', line 9829 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
9840 9841 9842 9843 9844 9845 |
# File 'lib/ovirtsdk4/services.rb', line 9840 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |