Class: OvirtSDK4::SnapshotNicsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<Nic>
Returns the list of NICs of the snapshot.
-
#nic_service(id) ⇒ SnapshotNicService
Locates the
nic
service. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<Nic>
Returns the list of NICs of the snapshot.
The order of the returned list of NICs isn’t guaranteed.
20004 20005 20006 |
# File 'lib/ovirtsdk4/services.rb', line 20004 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ SnapshotNicService
Locates the nic
service.
20015 20016 20017 |
# File 'lib/ovirtsdk4/services.rb', line 20015 def nic_service(id) SnapshotNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 |
# File 'lib/ovirtsdk4/services.rb', line 20026 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return nic_service(path) end return nic_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |