org.jclouds.ec2.services
Interface KeyPairAsyncClient

All Known Subinterfaces:
AWSKeyPairAsyncClient

public interface KeyPairAsyncClient

Provides access to EC2 via their REST API.

Author:
Adrian Cole

Method Summary
 com.google.common.util.concurrent.ListenableFuture<KeyPair> createKeyPairInRegion(String region, String keyName)
           
 com.google.common.util.concurrent.ListenableFuture<Void> deleteKeyPairInRegion(String region, String keyName)
           
 com.google.common.util.concurrent.ListenableFuture<? extends Set<KeyPair>> describeKeyPairsInRegion(String region, String... keyPairNames)
           
 

Method Detail

createKeyPairInRegion

com.google.common.util.concurrent.ListenableFuture<KeyPair> createKeyPairInRegion(@Nullable
                                                                                  String region,
                                                                                  String keyName)
See Also:
KeyPairClient.createKeyPairInRegion(java.lang.String, java.lang.String)

describeKeyPairsInRegion

com.google.common.util.concurrent.ListenableFuture<? extends Set<KeyPair>> describeKeyPairsInRegion(@Nullable
                                                                                                    String region,
                                                                                                    String... keyPairNames)
See Also:
KeyPairClient.describeKeyPairsInRegion(java.lang.String, java.lang.String...)

deleteKeyPairInRegion

com.google.common.util.concurrent.ListenableFuture<Void> deleteKeyPairInRegion(@Nullable
                                                                               String region,
                                                                               String keyName)
See Also:
KeyPairClient.deleteKeyPairInRegion(java.lang.String, java.lang.String)


Copyright © 2009-2011 jclouds. All Rights Reserved.