Interface ClusterEnabledFeaturesService

  • All Superinterfaces:
    Service
    All Known Implementing Classes:
    ClusterEnabledFeaturesServiceImpl

    public interface ClusterEnabledFeaturesService
    extends Service
    Provides information about the additional features that are enabled for this cluster. The features that are enabled are the available features for the cluster level
    • Method Detail

      • add

        ClusterEnabledFeaturesService.AddRequest add()
        Enable an additional feature for a cluster. For example, to enable a feature `456` on cluster `123`, send a request like this: [source] ---- POST /ovirt-engine/api/clusters/123/enabledfeatures ---- The request body should look like this: [source,xml] ---- ----
      • list

        ClusterEnabledFeaturesService.ListRequest list()
        Lists the additional features enabled for the cluster. For example, to get the features enabled for cluster `123` send a request like this: [source] ---- GET /ovirt-engine/api/clusters/123/enabledfeatures ---- This will return a list of features: [source,xml] ---- test_feature ... ----
      • featureService

        ClusterEnabledFeatureService featureService​(String id)
        A reference to the service that provides information about a specific feature enabled for the cluster.
      • service

        Service service​(String path)
        Service locator method, returns individual service on which the URI is dispatched.