Class: OvirtSDK4::VmDisksService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(disk, opts = {}) ⇒ Disk
Adds a new
disk
. -
#disk_service(id) ⇒ VmDiskService
Locates the
disk
service. -
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks of the virtual machine.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(disk, opts = {}) ⇒ Disk
Adds a new disk
.
33150 33151 33152 |
# File 'lib/ovirtsdk4/services.rb', line 33150 def add(disk, opts = {}) internal_add(disk, Disk, ADD, opts) end |
#disk_service(id) ⇒ VmDiskService
Locates the disk
service.
33195 33196 33197 |
# File 'lib/ovirtsdk4/services.rb', line 33195 def disk_service(id) VmDiskService.new(self, id) end |
#list(opts = {}) ⇒ Array<Disk>
Returns the list of disks of the virtual machine.
The order of the returned list of disks isn’t guaranteed.
33184 33185 33186 |
# File 'lib/ovirtsdk4/services.rb', line 33184 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
33206 33207 33208 33209 33210 33211 33212 33213 33214 33215 |
# File 'lib/ovirtsdk4/services.rb', line 33206 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return disk_service(path) end return disk_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |