Class: OvirtSDK4::ClusterLevelsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#level_service(id) ⇒ ClusterLevelService
Reference to the service that provides information about an specific cluster level.
-
#list(opts = {}) ⇒ Array<ClusterLevel>
Lists the cluster levels supported by the system.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#level_service(id) ⇒ ClusterLevelService
Reference to the service that provides information about an specific cluster level.
5626 5627 5628 |
# File 'lib/ovirtsdk4/services.rb', line 5626 def level_service(id) ClusterLevelService.new(self, id) end |
#list(opts = {}) ⇒ Array<ClusterLevel>
Lists the cluster levels supported by the system.
GET /ovirt-engine/api/clusterlevels
This will return a list of available cluster levels.
<cluster_levels>
<cluster_level id="4.0">
...
</cluster_level>
...
</cluster_levels>
The order of the returned cluster levels isn’t guaranteed.
5615 5616 5617 |
# File 'lib/ovirtsdk4/services.rb', line 5615 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 |
# File 'lib/ovirtsdk4/services.rb', line 5637 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return level_service(path) end return level_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |