Method: OvirtSDK4::ClusterLevelsService#list
- Defined in:
- lib/ovirtsdk4/services.rb
#list(opts = {}) ⇒ Array<ClusterLevel>
Lists the cluster levels supported by the system.
GET /ovirt-engine/api/clusterlevels HTTP/1.1
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.
5597 5598 5599 |
# File 'lib/ovirtsdk4/services.rb', line 5597 def list(opts = {}) internal_get(LIST, opts) end |