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_networkservice.
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.
28928 28929 28930 |
# File 'lib/ovirtsdk4/services.rb', line 28928 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 |
# File 'lib/ovirtsdk4/services.rb', line 28950 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.
28939 28940 28941 |
# File 'lib/ovirtsdk4/services.rb', line 28939 def unmanaged_network_service(id) UnmanagedNetworkService.new(self, id) end |