Class: OvirtSDK4::VmApplicationService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ Application
Returns the information about the application.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ Application
Returns the information about the application.
31848 31849 31850 |
# File 'lib/ovirtsdk4/services.rb', line 31848 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
31859 31860 31861 31862 31863 31864 |
# File 'lib/ovirtsdk4/services.rb', line 31859 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |