org.openbaton.vim.drivers.interfaces.ClientInterfaces Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vim-drivers Show documentation
Show all versions of vim-drivers Show documentation
Openbaton libraries for almost everything
/*
* Copyright (c) 2016 Open Baton (http://www.openbaton.org)
*
* 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.openbaton.vim.drivers.interfaces;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.openbaton.catalogue.mano.common.DeploymentFlavour;
import org.openbaton.catalogue.mano.descriptor.VNFDConnectionPoint;
import org.openbaton.catalogue.nfvo.NFVImage;
import org.openbaton.catalogue.nfvo.Network;
import org.openbaton.catalogue.nfvo.Quota;
import org.openbaton.catalogue.nfvo.Server;
import org.openbaton.catalogue.nfvo.Subnet;
import org.openbaton.catalogue.nfvo.VimInstance;
import org.openbaton.catalogue.security.Key;
import org.openbaton.exceptions.VimDriverException;
/** Created by lto on 12/05/15. */
public interface ClientInterfaces {
/** This version must match the version of the plugin... */
String interfaceVersion = "1.0";
Server launchInstance(
VimInstance vimInstance,
String name,
String image,
String flavor,
String keypair,
Set networks,
Set secGroup,
String userData)
throws VimDriverException;
List listImages(VimInstance vimInstance) throws VimDriverException;
List listServer(VimInstance vimInstance) throws VimDriverException;
List listNetworks(VimInstance vimInstance) throws VimDriverException;
List listFlavors(VimInstance vimInstance) throws VimDriverException;
Server launchInstanceAndWait(
VimInstance vimInstance,
String hostname,
String image,
String extId,
String keyPair,
Set networks,
Set securityGroups,
String s,
Map floatingIps,
Set keys)
throws VimDriverException;
Server launchInstanceAndWait(
VimInstance vimInstance,
String hostname,
String image,
String extId,
String keyPair,
Set networks,
Set securityGroups,
String s)
throws VimDriverException;
void deleteServerByIdAndWait(VimInstance vimInstance, String id) throws VimDriverException;
Network createNetwork(VimInstance vimInstance, Network network) throws VimDriverException;
DeploymentFlavour addFlavor(VimInstance vimInstance, DeploymentFlavour deploymentFlavour)
throws VimDriverException;
NFVImage addImage(VimInstance vimInstance, NFVImage image, byte[] imageFile)
throws VimDriverException;
NFVImage addImage(VimInstance vimInstance, NFVImage image, String image_url)
throws VimDriverException;
NFVImage updateImage(VimInstance vimInstance, NFVImage image) throws VimDriverException;
NFVImage copyImage(VimInstance vimInstance, NFVImage image, byte[] imageFile)
throws VimDriverException;
boolean deleteImage(VimInstance vimInstance, NFVImage image) throws VimDriverException;
DeploymentFlavour updateFlavor(VimInstance vimInstance, DeploymentFlavour deploymentFlavour)
throws VimDriverException;
boolean deleteFlavor(VimInstance vimInstance, String extId) throws VimDriverException;
Subnet createSubnet(VimInstance vimInstance, Network createdNetwork, Subnet subnet)
throws VimDriverException;
Network updateNetwork(VimInstance vimInstance, Network network) throws VimDriverException;
Subnet updateSubnet(VimInstance vimInstance, Network updatedNetwork, Subnet subnet)
throws VimDriverException;
List getSubnetsExtIds(VimInstance vimInstance, String network_extId)
throws VimDriverException;
boolean deleteSubnet(VimInstance vimInstance, String existingSubnetExtId)
throws VimDriverException;
boolean deleteNetwork(VimInstance vimInstance, String extId) throws VimDriverException;
Network getNetworkById(VimInstance vimInstance, String id) throws VimDriverException;
Quota getQuota(VimInstance vimInstance) throws VimDriverException;
String getType(VimInstance vimInstance) throws VimDriverException;
}