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.
4952 4953 4954 |
# File 'lib/ovirtsdk4/services.rb', line 4952 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.
4941 4942 4943 |
# File 'lib/ovirtsdk4/services.rb', line 4941 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 |
# File 'lib/ovirtsdk4/services.rb', line 4963 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 |