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.
8936 8937 8938 |
# File 'lib/ovirtsdk4/services.rb', line 8936 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.
8925 8926 8927 |
# File 'lib/ovirtsdk4/services.rb', line 8925 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 |
# File 'lib/ovirtsdk4/services.rb', line 8947 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 |