Class: OvirtSDK4::VmCdromsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(cdrom, opts = {}) ⇒ Cdrom
Add a cdrom to a virtual machine identified by the given id.
-
#cdrom_service(id) ⇒ VmCdromService
Returns a reference to the service that manages a specific CDROM device.
-
#list(opts = {}) ⇒ Array<Cdrom>
Returns the list of CDROM devices of the virtual machine.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(cdrom, opts = {}) ⇒ Cdrom
Add a cdrom to a virtual machine identified by the given id.
31981 31982 31983 |
# File 'lib/ovirtsdk4/services.rb', line 31981 def add(cdrom, opts = {}) internal_add(cdrom, Cdrom, ADD, opts) end |
#cdrom_service(id) ⇒ VmCdromService
Returns a reference to the service that manages a specific CDROM device.
32026 32027 32028 |
# File 'lib/ovirtsdk4/services.rb', line 32026 def cdrom_service(id) VmCdromService.new(self, id) end |
#list(opts = {}) ⇒ Array<Cdrom>
Returns the list of CDROM devices of the virtual machine.
The order of the returned list of CD-ROM devices isn’t guaranteed.
32015 32016 32017 |
# File 'lib/ovirtsdk4/services.rb', line 32015 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 |
# File 'lib/ovirtsdk4/services.rb', line 32037 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return cdrom_service(path) end return cdrom_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |