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"/>
5201 5202 5203 |
# File 'lib/ovirtsdk4/services.rb', line 5201 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.
5261 5262 5263 |
# File 'lib/ovirtsdk4/services.rb', line 5261 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>
5249 5250 5251 |
# File 'lib/ovirtsdk4/services.rb', line 5249 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 |
# File 'lib/ovirtsdk4/services.rb', line 5272 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 |