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.
21174 21175 21176 |
# File 'lib/ovirtsdk4/services.rb', line 21174 def list(opts = {}) internal_get(LIST, opts) end |
#nic_service(id) ⇒ SnapshotNicService
Locates the nic
service.
21185 21186 21187 |
# File 'lib/ovirtsdk4/services.rb', line 21185 def nic_service(id) SnapshotNicService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 |
# File 'lib/ovirtsdk4/services.rb', line 21196 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 |