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.
20098 20099 20100 |
# File 'lib/ovirtsdk4/services.rb', line 20098 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ SnapshotNicService
Locates the nic
service.
20109 20110 20111 |
# File 'lib/ovirtsdk4/services.rb', line 20109 def nic_service(id) SnapshotNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 |
# File 'lib/ovirtsdk4/services.rb', line 20120 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 |