Method: OvirtSDK4::ClusterEnabledFeaturesService#list
- Defined in:
- lib/ovirtsdk4/services.rb
#list(opts = {}) ⇒ Array<ClusterFeature>
Lists the additional features enabled for the cluster.
For example, to get the features enabled for cluster 123 send a request like this:
GET /ovirt-engine/api/clusters/123/enabledfeatures HTTP/1.1
This will return a list of features:
<enabled_features>
<cluster_feature id="123">
<name>test_feature</name>
</cluster_feature>
...
</enabled_features>
5239 5240 5241 |
# File 'lib/ovirtsdk4/services.rb', line 5239 def list(opts = {}) internal_get(LIST, opts) end |