public interface CloudServersAsyncClient
ExecutionException
as documented in
Future.get()
.CloudServersClient
,
Modifier and Type | Method and Description |
---|---|
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,
int imageId,
int flavorId,
CreateServerOptions... options) |
com.google.common.util.concurrent.ListenableFuture<SharedIpGroup> |
createSharedIpGroup(String name,
CreateSharedIpGroupOptions... options) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteBackupSchedule(int serverId) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteImage(int id) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteServer(int id) |
com.google.common.util.concurrent.ListenableFuture<Boolean> |
deleteSharedIpGroup(int id) |
com.google.common.util.concurrent.ListenableFuture<Addresses> |
getAddresses(int serverId) |
com.google.common.util.concurrent.ListenableFuture<BackupSchedule> |
getBackupSchedule(int serverId) |
com.google.common.util.concurrent.ListenableFuture<Flavor> |
getFlavor(int id) |
com.google.common.util.concurrent.ListenableFuture<Image> |
getImage(int id) |
com.google.common.util.concurrent.ListenableFuture<Limits> |
getLimits() |
com.google.common.util.concurrent.ListenableFuture<Server> |
getServer(int id) |
com.google.common.util.concurrent.ListenableFuture<SharedIpGroup> |
getSharedIpGroup(int id) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<Flavor>> |
listFlavors(ListOptions... options) |
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<Server>> |
listServers(ListOptions... options) |
com.google.common.util.concurrent.ListenableFuture<? extends Set<SharedIpGroup>> |
listSharedIpGroups(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> |
replaceBackupSchedule(int id,
BackupSchedule backupSchedule) |
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<Void> |
shareIp(String addressToShare,
int serverToTosignBindressTo,
int sharedIpGroup,
boolean configureServer) |
com.google.common.util.concurrent.ListenableFuture<Void> |
unshareIp(String addressToShare,
int serverToTosignBindressTo) |
com.google.common.util.concurrent.ListenableFuture<Limits> getLimits()
CloudServersClient.getLimits()
com.google.common.util.concurrent.ListenableFuture<? extends Set<Server>> listServers(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<Server> getServer(int id)
CloudServersClient.getServer(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteServer(int id)
CloudServersClient.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)
com.google.common.util.concurrent.ListenableFuture<Void> confirmResizeServer(int id)
com.google.common.util.concurrent.ListenableFuture<Void> revertResizeServer(int id)
com.google.common.util.concurrent.ListenableFuture<Server> createServer(String name, int imageId, int flavorId, CreateServerOptions... options)
com.google.common.util.concurrent.ListenableFuture<Void> rebuildServer(int id, RebuildServerOptions... options)
com.google.common.util.concurrent.ListenableFuture<Void> shareIp(String addressToShare, int serverToTosignBindressTo, int sharedIpGroup, boolean configureServer)
com.google.common.util.concurrent.ListenableFuture<Void> unshareIp(String addressToShare, int serverToTosignBindressTo)
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)
CloudServersClient.getFlavor(int)
com.google.common.util.concurrent.ListenableFuture<? extends Set<Image>> listImages(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<Image> getImage(int id)
CloudServersClient.getImage(int)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteImage(int id)
CloudServersClient.deleteImage(int)
com.google.common.util.concurrent.ListenableFuture<Image> createImageFromServer(String imageName, int serverId)
com.google.common.util.concurrent.ListenableFuture<? extends Set<SharedIpGroup>> listSharedIpGroups(ListOptions... options)
com.google.common.util.concurrent.ListenableFuture<SharedIpGroup> getSharedIpGroup(int id)
com.google.common.util.concurrent.ListenableFuture<SharedIpGroup> createSharedIpGroup(String name, CreateSharedIpGroupOptions... options)
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteSharedIpGroup(int id)
com.google.common.util.concurrent.ListenableFuture<BackupSchedule> getBackupSchedule(int serverId)
CloudServersClient#listBackupSchedule
com.google.common.util.concurrent.ListenableFuture<Boolean> deleteBackupSchedule(int serverId)
com.google.common.util.concurrent.ListenableFuture<Void> replaceBackupSchedule(int id, BackupSchedule backupSchedule)
com.google.common.util.concurrent.ListenableFuture<Addresses> getAddresses(int serverId)
CloudServersClient#listAddresses
com.google.common.util.concurrent.ListenableFuture<? extends Set<String>> listPublicAddresses(int serverId)
Copyright © 2009-2012 jclouds. All Rights Reserved.