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.
29140 29141 29142 |
# File 'lib/ovirtsdk4/services.rb', line 29140 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
29151 29152 29153 29154 29155 29156 |
# File 'lib/ovirtsdk4/services.rb', line 29151 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |