Class: OvirtSDK4::ExternalNetworkProviderConfigurationsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#configuration_service(id) ⇒ ExternalNetworkProviderConfigurationService
Locates the
configurationservice. -
#list(opts = {}) ⇒ Array<ExternalNetworkProviderConfiguration>
Returns the list of all external network providers on the host.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#configuration_service(id) ⇒ ExternalNetworkProviderConfigurationService
Locates the configuration service.
9889 9890 9891 |
# File 'lib/ovirtsdk4/services.rb', line 9889 def configuration_service(id) ExternalNetworkProviderConfigurationService.new(self, id) end |
#list(opts = {}) ⇒ Array<ExternalNetworkProviderConfiguration>
Returns the list of all external network providers on the host.
The order of the returned list of networks is not guaranteed.
9878 9879 9880 |
# File 'lib/ovirtsdk4/services.rb', line 9878 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 |
# File 'lib/ovirtsdk4/services.rb', line 9900 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return configuration_service(path) end return configuration_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |