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.
27845 27846 27847 |
# File 'lib/ovirtsdk4/services.rb', line 27845 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.
27890 27891 27892 |
# File 'lib/ovirtsdk4/services.rb', line 27890 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.
27879 27880 27881 |
# File 'lib/ovirtsdk4/services.rb', line 27879 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 |
# File 'lib/ovirtsdk4/services.rb', line 27901 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 |