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.
28872 28873 28874 |
# File 'lib/ovirtsdk4/services.rb', line 28872 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 |
# File 'lib/ovirtsdk4/services.rb', line 28894 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.
28883 28884 28885 |
# File 'lib/ovirtsdk4/services.rb', line 28883 def unmanaged_network_service(id) UnmanagedNetworkService.new(self, id) end |