Class: OvirtSDK4::TemplateDiskAttachmentsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#attachment_service(id) ⇒ TemplateDiskAttachmentService
Reference to the service that manages a specific attachment.
-
#list(opts = {}) ⇒ Array<DiskAttachment>
List the disks that are attached to the template.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#attachment_service(id) ⇒ TemplateDiskAttachmentService
Reference to the service that manages a specific attachment.
27657 27658 27659 |
# File 'lib/ovirtsdk4/services.rb', line 27657 def (id) TemplateDiskAttachmentService.new(self, id) end |
#list(opts = {}) ⇒ Array<DiskAttachment>
List the disks that are attached to the template.
The order of the returned list of attachments isn’t guaranteed.
27646 27647 27648 |
# File 'lib/ovirtsdk4/services.rb', line 27646 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 |
# File 'lib/ovirtsdk4/services.rb', line 27668 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return (path) end return (path[0..(index - 1)]).service(path[(index + 1)..-1]) end |