GET /ovirt-engine/api/clusterlevels/3.6
public interface ClusterLevelsService extends Service
Provides information about the capabilities of different cluster levels supported by the engine. Version 4.0 of the engine supports levels 4.0 and 3.6. Each of these levels different sets of CPU types, for example. This service provides that information. For example, to find what CPU types are supported by level 3.6 the you can send a request like this:
GET /ovirt-engine/api/clusterlevels/3.6
That will return a ClusterLevel
object containing the CPU types, and other information describing the cluster
level:
<cluster_level id="3.6" href="/ovirt-engine/api/clusterlevel/3.6">
<cpu_types>
<cpu_type>
<name>Intel Conroe Family</name>
<level>3</level>
<architecture>x86_64</architecture>
</cpu_type>
...
</cpu_types>
...
</cluster_level>
Modifier and Type | Interface and Description |
---|---|
static interface |
ClusterLevelsService.ListRequest
Lists the cluster levels supported by the system.
|
static interface |
ClusterLevelsService.ListResponse
Lists the cluster levels supported by the system.
|
Modifier and Type | Method and Description |
---|---|
ClusterLevelService |
levelService(String id)
Reference to the service that provides information about an specific cluster level.
|
ClusterLevelsService.ListRequest |
list()
Lists the cluster levels supported by the system.
|
Service |
service(String path)
Service locator method, returns individual service on which the URI is dispatched.
|
ClusterLevelsService.ListRequest list()
Lists the cluster levels supported by the system.
ClusterLevelService levelService(String id)
Reference to the service that provides information about an specific cluster level.
Copyright © 2016. All rights reserved.