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.
31417 31418 31419 |
# File 'lib/ovirtsdk4/services.rb', line 31417 def get(opts = {}) internal_get(GET, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
31428 31429 31430 31431 31432 31433 |
# File 'lib/ovirtsdk4/services.rb', line 31428 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |