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.
5438 5439 5440 |
# File 'lib/ovirtsdk4/services.rb', line 5438 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 HTTP/1.1
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>
5427 5428 5429 |
# File 'lib/ovirtsdk4/services.rb', line 5427 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 |
# File 'lib/ovirtsdk4/services.rb', line 5449 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 |