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.
5666 5667 5668 |
# File 'lib/ovirtsdk4/services.rb', line 5666 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.
5655 5656 5657 |
# File 'lib/ovirtsdk4/services.rb', line 5655 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 |
# File 'lib/ovirtsdk4/services.rb', line 5677 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 |