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.
26381 26382 26383 |
# File 'lib/ovirtsdk4/services.rb', line 26381 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.
26370 26371 26372 |
# File 'lib/ovirtsdk4/services.rb', line 26370 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 |
# File 'lib/ovirtsdk4/services.rb', line 26392 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 |