Class: OvirtSDK4::ClusterFeaturesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#feature_service(id) ⇒ ClusterFeatureService
Reference to the service that provides information about a specific feature.
-
#list(opts = {}) ⇒ Array<ClusterFeature>
Lists the cluster features supported by the cluster level.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#feature_service(id) ⇒ ClusterFeatureService
Reference to the service that provides information about a specific feature.
5452 5453 5454 |
# File 'lib/ovirtsdk4/services.rb', line 5452 def feature_service(id) ClusterFeatureService.new(self, id) end |
#list(opts = {}) ⇒ Array<ClusterFeature>
Lists the cluster features supported by the cluster level.
GET /ovirt-engine/api/clusterlevels/4.1/clusterfeatures
This will return a list of cluster features supported by the cluster level:
<cluster_features>
<cluster_feature id="123">
<name>test_feature</name>
</cluster_feature>
...
</cluster_features>
5441 5442 5443 |
# File 'lib/ovirtsdk4/services.rb', line 5441 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 |
# File 'lib/ovirtsdk4/services.rb', line 5463 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 |