Class: OvirtSDK4::ClusterEnabledFeaturesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(feature, opts = {}) ⇒ ClusterFeature
Enable an additional feature for a cluster.
-
#feature_service(id) ⇒ ClusterEnabledFeatureService
A reference to the service that provides information about a specific feature enabled for the cluster.
-
#list(opts = {}) ⇒ Array<ClusterFeature>
Lists the additional features enabled for the cluster.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(feature, opts = {}) ⇒ ClusterFeature
Enable an additional feature for a cluster.
For example, to enable a feature 456
on cluster 123
, send a request like this:
POST /ovirt-engine/api/clusters/123/enabledfeatures
The request body should look like this:
<cluster_feature id="456"/>
5241 5242 5243 |
# File 'lib/ovirtsdk4/services.rb', line 5241 def add(feature, opts = {}) internal_add(feature, ClusterFeature, ADD, opts) end |
#feature_service(id) ⇒ ClusterEnabledFeatureService
A reference to the service that provides information about a specific feature enabled for the cluster.
5301 5302 5303 |
# File 'lib/ovirtsdk4/services.rb', line 5301 def feature_service(id) ClusterEnabledFeatureService.new(self, id) end |
#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
This will return a list of features:
<enabled_features>
<cluster_feature id="123">
<name>test_feature</name>
</cluster_feature>
...
</enabled_features>
5289 5290 5291 |
# File 'lib/ovirtsdk4/services.rb', line 5289 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 |
# File 'lib/ovirtsdk4/services.rb', line 5312 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return feature_service(path) end return feature_service(path[0..(index - 1)]).service(path[(index + 1)..-1]) end |