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.
26569 26570 26571 |
# File 'lib/ovirtsdk4/services.rb', line 26569 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.
26614 26615 26616 |
# File 'lib/ovirtsdk4/services.rb', line 26614 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.
26603 26604 26605 |
# File 'lib/ovirtsdk4/services.rb', line 26603 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 |
# File 'lib/ovirtsdk4/services.rb', line 26625 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 |