public interface NovaAsyncClient
ExecutionException
as documented in
Future.get()
.NovaClient
,
Modifier and Type | Method and Description |
---|---|
com.google.common.util.concurrent.ListenableFuture<Void> |
addFloatingIP(int serverId,
String ip) |
com.google.common.util.concurrent.ListenableFuture<Void> |
changeAdminPass(int id,
String adminPass) |
com.google.common.util.concurrent.ListenableFuture<Void> |
confirmResizeServer(int id) |
com.google.common.util.concurrent.ListenableFuture<Image> |
createImageFromServer(String imageName,
int serverId) |
com.google.common.util.concurrent.ListenableFuture<Server> |
createServer(String name,
String imageRef,
String flavorRef,
CreateServerOptions... options) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteImage(int id) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteImage(String id) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteServer(int id) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteServer(String uuid) |
com.google.common.util.concurrent.ListenableFuture<Addresses> |
getAddresses(int serverId) |
com.google.common.util.concurrent.ListenableFuture<Flavor> |
getFlavor(int id) |
com.google.common.util.concurrent.ListenableFuture<Flavor> |
getFlavor(String uuid) |
com.google.common.util.concurrent.ListenableFuture<FloatingIP> |
getFloatingIP(int id) |
com.google.common.util.concurrent.ListenableFuture<Image> |
getImage(int id) |
com.google.common.util.concurrent.ListenableFuture<Image> |
getImage(String uuid) |
com.google.common.util.concurrent.ListenableFuture<SecurityGroup> |
getSecurityGroup(int id) |
com.google.common.util.concurrent.ListenableFuture<Server> |
getServer(int id) |
com.google.common.util.concurrent.ListenableFuture<Server> |
getServer(String uuid) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<Flavor>> |
listFlavors(ListOptions... options) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<FloatingIP>> |
listFloatingIPs() |
com.google.common.util.concurrent.ListenableFuture<? extends Set<Image>> |
listImages(ListOptions... options) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<String>> |
listPrivateAddresses(int serverId) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<String>> |
listPublicAddresses(int serverId) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<SecurityGroup>> |
listSecurityGroups() |
com.google.common.util.concurrent.ListenableFuture<? extends Set<Server>> |
listServers(ListOptions... options) |
com.google.common.util.concurrent.ListenableFuture<Void> |
rebootServer(int id,
RebootType rebootType) |
com.google.common.util.concurrent.ListenableFuture<Void> |
rebuildServer(int id,
RebuildServerOptions... options) |
com.google.common.util.concurrent.ListenableFuture<Void> |
renameServer(int id,
String newName) |
com.google.common.util.concurrent.ListenableFuture<Void> |
resizeServer(int id,
int flavorId) |
com.google.common.util.concurrent.ListenableFuture<Void> |
revertResizeServer(int id) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<Server>> listServers(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<Server> getServer(int id)
NovaClient.getServer(int)
com.google.common.util.concurrent.ListenableFuture<Server> getServer(String uuid)
NovaClient.getServer(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteServer(int id)
NovaClient.deleteServer(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteServer(String uuid)
NovaClient.deleteServer(int)
com.google.common.util.concurrent.ListenableFuture<Void> rebootServer(int id, RebootType rebootType)
com.google.common.util.concurrent.ListenableFuture<Void> resizeServer(int id, int flavorId)
NovaClient.resizeServer(int, int)
com.google.common.util.concurrent.ListenableFuture<Void> confirmResizeServer(int id)
NovaClient.confirmResizeServer(int)
com.google.common.util.concurrent.ListenableFuture<Void> revertResizeServer(int id)
NovaClient.revertResizeServer(int)
com.google.common.util.concurrent.ListenableFuture<Server> createServer(String name, String imageRef, String flavorRef, CreateServerOptions... options)
com.google.common.util.concurrent.ListenableFuture<Void> rebuildServer(int id, RebuildServerOptions... options)
com.google.common.util.concurrent.ListenableFuture<Void> changeAdminPass(int id, String adminPass)
com.google.common.util.concurrent.ListenableFuture<Void> renameServer(int id, String newName)
com.google.common.util.concurrent.ListenableFuture<? extends Set<Flavor>> listFlavors(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<Flavor> getFlavor(int id)
NovaClient.getFlavor(int)
com.google.common.util.concurrent.ListenableFuture<Flavor> getFlavor(String uuid)
NovaClient.getFlavor(int)
com.google.common.util.concurrent.ListenableFuture<? extends Set<Image>> listImages(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<Image> getImage(int id)
NovaClient.getImage(int)
com.google.common.util.concurrent.ListenableFuture<Image> getImage(String uuid)
NovaClient.getImage(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteImage(int id)
NovaClient.deleteImage(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteImage(String id)
NovaClient.deleteImage(int)
com.google.common.util.concurrent.ListenableFuture<Image> createImageFromServer(String imageName, int serverId)
com.google.common.util.concurrent.ListenableFuture<Addresses> getAddresses(int serverId)
NovaClient#listAddresses
com.google.common.util.concurrent.ListenableFuture<? extends Set<String>> listPublicAddresses(int serverId)
NovaClient.listPublicAddresses(int)
com.google.common.util.concurrent.ListenableFuture<? extends Set<String>> listPrivateAddresses(int serverId)
NovaClient.listPrivateAddresses(int)
com.google.common.util.concurrent.ListenableFuture<Void> addFloatingIP(int serverId, String ip)
com.google.common.util.concurrent.ListenableFuture<? extends Set<FloatingIP>> listFloatingIPs()
com.google.common.util.concurrent.ListenableFuture<FloatingIP> getFloatingIP(int id)
com.google.common.util.concurrent.ListenableFuture<? extends Set<SecurityGroup>> listSecurityGroups()
com.google.common.util.concurrent.ListenableFuture<SecurityGroup> getSecurityGroup(int id)
Copyright © 2009-2012 jclouds. All Rights Reserved.