Class: OvirtSDK4::StorageDomainTemplatesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<Template>
Returns the list of templates availalbe in the storage domain.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#template_service(id) ⇒ StorageDomainTemplateService
Locates the
templateservice.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<Template>
Returns the list of templates availalbe in the storage domain.
The order of the returned list of templates isn’t guaranteed.
22354 22355 22356 |
# File 'lib/ovirtsdk4/services.rb', line 22354 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 |
# File 'lib/ovirtsdk4/services.rb', line 22376 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return template_service(path) end return template_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |
#template_service(id) ⇒ StorageDomainTemplateService
Locates the template service.
22365 22366 22367 |
# File 'lib/ovirtsdk4/services.rb', line 22365 def template_service(id) StorageDomainTemplateService.new(self, id) end |