Examples of importKeyPair()

@param importKeyPairRequest Container for the necessary parameters toexecute the ImportKeyPair service method on AmazonEC2. @return The response from the ImportKeyPair service method, asreturned by AmazonEC2. @throws AmazonClientException If any internal errors are encountered inside the client while attempting to make the request or handle the response. For example if a network connection is not available. @throws AmazonServiceException If an error response is returned by AmazonEC2 indicating either a problem with the data in the request, or a server side issue.

Examples of com.amazon.ec2.AmazonEC2SkeletonInterface.importKeyPair()

        return ec2Service.deleteTags(deleteTags);
    }

    public ImportKeyPairResponse importKeyPair(ImportKeyPair importKeyPair) {
        AmazonEC2SkeletonInterface ec2Service = ServiceProvider.getInstance().getServiceImpl(AmazonEC2SkeletonInterface.class);
        return ec2Service.importKeyPair(importKeyPair);
    }

    @Override
    public CancelConversionTaskResponse cancelConversionTask(CancelConversionTask cancelConversionTask) {
        AmazonEC2SkeletonInterface ec2Service = ServiceProvider.getInstance().getServiceImpl(AmazonEC2SkeletonInterface.class);
View Full Code Here

Examples of com.amazonaws.services.ec2.AmazonEC2Client.importKeyPair()

            String keyPairName = CLOUDBREAK_KEY_NAME + "-" + rnd.nextInt(SUFFIX_RND);
            for (Regions regions : Regions.values()) {
                if (!Regions.CN_NORTH_1.equals(regions) && !Regions.GovCloud.equals(regions)) {
                    AmazonEC2Client client = awsStackUtil.createEC2Client(regions, awsCredential);
                    ImportKeyPairRequest importKeyPairRequest = new ImportKeyPairRequest(keyPairName, awsCredential.getPublicKey());
                    client.importKeyPair(importKeyPairRequest);
                }
            }
            awsCredential.setKeyPairName(keyPairName);
        } catch (Exception e) {
            String errorMessage = String.format("Failed to import public key [roleArn:'%s'], detailed message: %s", awsCredential.getRoleArn(), e.getMessage());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.