Class: OvirtSDK4::ImagesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#image_service(id) ⇒ ImageService
Locates the
image
service. -
#list(opts = {}) ⇒ Array<Image>
Returns the list of images available in the storage domain or provider.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#image_service(id) ⇒ ImageService
Locates the image
service.
12504 12505 12506 |
# File 'lib/ovirtsdk4/services.rb', line 12504 def image_service(id) ImageService.new(self, id) end |
#list(opts = {}) ⇒ Array<Image>
Returns the list of images available in the storage domain or provider.
The order of the returned list of images isn’t guaranteed.
12493 12494 12495 |
# File 'lib/ovirtsdk4/services.rb', line 12493 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 |
# File 'lib/ovirtsdk4/services.rb', line 12515 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return image_service(path) end return image_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |