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
nicservice. -
#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.
19903 19904 19905 |
# File 'lib/ovirtsdk4/services.rb', line 19903 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ SnapshotNicService
Locates the nic service.
19914 19915 19916 |
# File 'lib/ovirtsdk4/services.rb', line 19914 def nic_service(id) SnapshotNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 |
# File 'lib/ovirtsdk4/services.rb', line 19925 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 |