Class: OvirtSDK4::TemplateGraphicsConsolesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(console, opts = {}) ⇒ GraphicsConsole
Add new graphics console to the template.
-
#console_service(id) ⇒ TemplateGraphicsConsoleService
Returns a reference to the service that manages a specific template graphics console.
-
#list(opts = {}) ⇒ Array<GraphicsConsole>
Lists all the configured graphics consoles of the template.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(console, opts = {}) ⇒ GraphicsConsole
Add new graphics console to the template.
27684 27685 27686 |
# File 'lib/ovirtsdk4/services.rb', line 27684 def add(console, opts = {}) internal_add(console, GraphicsConsole, ADD, opts) end |
#console_service(id) ⇒ TemplateGraphicsConsoleService
Returns a reference to the service that manages a specific template graphics console.
27729 27730 27731 |
# File 'lib/ovirtsdk4/services.rb', line 27729 def console_service(id) TemplateGraphicsConsoleService.new(self, id) end |
#list(opts = {}) ⇒ Array<GraphicsConsole>
Lists all the configured graphics consoles of the template.
The order of the returned list of graphics consoles isn’t guaranteed.
27718 27719 27720 |
# File 'lib/ovirtsdk4/services.rb', line 27718 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 |
# File 'lib/ovirtsdk4/services.rb', line 27740 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return console_service(path) end return console_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |