Class: OvirtSDK4::UnmanagedNetworksService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#list(opts = {}) ⇒ Array<UnmanagedNetwork>
Returns the list of unmanaged networks of the host.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#unmanaged_network_service(id) ⇒ UnmanagedNetworkService
Locates the
unmanaged_network
service.
Methods inherited from Service
Instance Method Details
#list(opts = {}) ⇒ Array<UnmanagedNetwork>
Returns the list of unmanaged networks of the host.
The order of the returned list of networks isn’t guaranteed.
29303 29304 29305 |
# File 'lib/ovirtsdk4/services.rb', line 29303 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 |
# File 'lib/ovirtsdk4/services.rb', line 29325 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return unmanaged_network_service(path) end return unmanaged_network_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |
#unmanaged_network_service(id) ⇒ UnmanagedNetworkService
Locates the unmanaged_network
service.
29314 29315 29316 |
# File 'lib/ovirtsdk4/services.rb', line 29314 def unmanaged_network_service(id) UnmanagedNetworkService.new(self, id) end |