Package org.ovirt.engine.sdk4.services
Interface VmGraphicsConsolesService
-
- All Superinterfaces:
Service
- All Known Implementing Classes:
VmGraphicsConsolesServiceImpl
public interface VmGraphicsConsolesService extends Service
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
VmGraphicsConsolesService.AddRequest
Add new graphics console to the virtual machine.static interface
VmGraphicsConsolesService.AddResponse
Add new graphics console to the virtual machine.static interface
VmGraphicsConsolesService.ListRequest
Lists all the configured graphics consoles of the virtual machine.static interface
VmGraphicsConsolesService.ListResponse
Lists all the configured graphics consoles of the virtual machine.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VmGraphicsConsolesService.AddRequest
add()
Add new graphics console to the virtual machine.VmGraphicsConsoleService
consoleService(String id)
Returns a reference to the service that manages a specific virtual machine graphics console.VmGraphicsConsolesService.ListRequest
list()
Lists all the configured graphics consoles of the virtual machine.Service
service(String path)
Service locator method, returns individual service on which the URI is dispatched.
-
-
-
Method Detail
-
add
VmGraphicsConsolesService.AddRequest add()
Add new graphics console to the virtual machine.
-
list
VmGraphicsConsolesService.ListRequest list()
Lists all the configured graphics consoles of the virtual machine. IMPORTANT: By default, when the `current` parameter is not specified, the data returned corresponds to the next execution of the virtual machine. In the current implementation of the system this means that the `address` and `port` attributes will not be populated because the system does not know what address and port will be used for the next execution. Since in most cases those attributes are needed, it is strongly advised to aways explicitly include the `current` parameter with the value `true`. The order of the returned list of graphics consoles is not guaranteed.
-
consoleService
VmGraphicsConsoleService consoleService(String id)
Returns a reference to the service that manages a specific virtual machine graphics console.
-
-