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.
4778 4779 4780 |
# File 'lib/ovirtsdk4/services.rb', line 4778 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>
4767 4768 4769 |
# File 'lib/ovirtsdk4/services.rb', line 4767 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 |
# File 'lib/ovirtsdk4/services.rb', line 4789 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 |