@Singleton public class CloudServersComputeServiceAdapter extends Object implements ComputeServiceAdapter<Server,Flavor,Image,Location>
CloudServersClient
implementation and the jclouds
ComputeService
ComputeServiceAdapter.NodeAndInitialCredentials<N>
Modifier and Type | Field and Description |
---|---|
protected CloudServersClient |
client |
Modifier | Constructor and Description |
---|---|
protected |
CloudServersComputeServiceAdapter(CloudServersClient client) |
Modifier and Type | Method and Description |
---|---|
ComputeServiceAdapter.NodeAndInitialCredentials<Server> |
createNodeWithGroupEncodedIntoName(String group,
String name,
Template template)
ComputeService.createNodesInGroup(String, int, Template) generates
the parameters passed into this method such that each node in the set has
a unique name. |
void |
destroyNode(String id) |
Server |
getNode(String id) |
Iterable<Flavor> |
listHardwareProfiles()
Hardware profiles describe available cpu, memory, and disk configurations
that can be used to run a node.
|
Iterable<Image> |
listImages()
Images are the available configured operating systems that someone can run
a node with.
|
Iterable<Location> |
listLocations() |
Iterable<Server> |
listNodes() |
void |
rebootNode(String id) |
void |
resumeNode(String id) |
void |
suspendNode(String id) |
protected final CloudServersClient client
@Inject protected CloudServersComputeServiceAdapter(CloudServersClient client)
public ComputeServiceAdapter.NodeAndInitialCredentials<Server> createNodeWithGroupEncodedIntoName(String group, String name, Template template)
ComputeServiceAdapter
ComputeService.createNodesInGroup(String, int, Template)
generates
the parameters passed into this method such that each node in the set has
a unique name.
N
. If you are not using library-native objects
(such as libvirt Domain
) use
JCloudsNativeComputeServiceAdapter
instead.
credentialStore
createNodeWithGroupEncodedIntoName
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
group
- used to aggregate nodes with identical configurationname
- unique supplied name for the node, which has the tag encoded
into it.template
- includes imageId
, locationId
, and
hardwareId
used to resume the instance.ComputeService.createNodesInGroup(String, int, Template)
public Iterable<Flavor> listHardwareProfiles()
ComputeServiceAdapter
listHardwareProfiles
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
ComputeService.listHardwareProfiles()
public Iterable<Image> listImages()
ComputeServiceAdapter
listImages
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
ComputeService.listImages()
public Iterable<Location> listLocations()
listLocations
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
public void destroyNode(String id)
destroyNode
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
public void rebootNode(String id)
rebootNode
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
public void resumeNode(String id)
resumeNode
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
public void suspendNode(String id)
suspendNode
in interface ComputeServiceAdapter<Server,Flavor,Image,Location>
Copyright © 2009-2012 jclouds. All Rights Reserved.