org.ovirt.engine.sdk4.services.ClusterLevelService Maven / Gradle / Ivy
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.ovirt.engine.sdk4.services;
import java.io.IOException;
import org.ovirt.engine.sdk4.Request;
import org.ovirt.engine.sdk4.Response;
import org.ovirt.engine.sdk4.Service;
import org.ovirt.engine.sdk4.types.ClusterLevel;
/**
* Provides information about a specific cluster level. See the <> service for
* more information.
*/
public interface ClusterLevelService extends Service {
/**
* Provides the information about the capabilities of the specific cluster level managed by this service.
*
* For example, to find what CPU types are supported by level 3.6 you can send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/clusterlevels/3.6
* ----
*
* That will return a <> object containing the supported CPU types, and other
* information which describes the cluster level:
*
* [source,xml]
* ----
*
*
*
* Intel Conroe Family
* 3
* x86_64
*
* ...
*
*
*
* create_vm
* false
*
* ...
*
*
* ----
*/
public interface GetRequest extends Request {
}
/**
* Provides the information about the capabilities of the specific cluster level managed by this service.
*
* For example, to find what CPU types are supported by level 3.6 you can send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/clusterlevels/3.6
* ----
*
* That will return a <> object containing the supported CPU types, and other
* information which describes the cluster level:
*
* [source,xml]
* ----
*
*
*
* Intel Conroe Family
* 3
* x86_64
*
* ...
*
*
*
* create_vm
* false
*
* ...
*
*
* ----
*/
public interface GetResponse extends Response {
/**
* Retreived cluster level.
*/
ClusterLevel level();
}
/**
* Provides the information about the capabilities of the specific cluster level managed by this service.
*
* For example, to find what CPU types are supported by level 3.6 you can send a request like this:
*
* [source]
* ----
* GET /ovirt-engine/api/clusterlevels/3.6
* ----
*
* That will return a <> object containing the supported CPU types, and other
* information which describes the cluster level:
*
* [source,xml]
* ----
*
*
*
* Intel Conroe Family
* 3
* x86_64
*
* ...
*
*
*
* create_vm
* false
*
* ...
*
*
* ----
*/
GetRequest get();
/**
* Service locator method, returns individual service on which the URI is dispatched.
*/
Service service(String path);
}