// // typica - A client library for Amazon Web Services // Copyright (C) 2007,2008,2009,2010 Xerox Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // package com.xerox.amazonws.ec2; import java.io.IOException; import java.net.MalformedURLException; import java.util.Calendar; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import javax.xml.bind.JAXBException; import org.xml.sax.SAXException; import org.apache.commons.codec.binary.Base64; import org.apache.http.HttpException; import org.apache.http.client.methods.HttpRequestBase; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.xerox.amazonws.common.AWSException; import com.xerox.amazonws.common.AWSQueryConnection; import com.xerox.amazonws.typica.jaxb.AllocateAddressResponse; import com.xerox.amazonws.typica.jaxb.AssociateAddressResponse; import com.xerox.amazonws.typica.jaxb.AttachmentSetResponseType; import com.xerox.amazonws.typica.jaxb.AttachmentSetItemResponseType; import com.xerox.amazonws.typica.jaxb.AttachVolumeResponse; import com.xerox.amazonws.typica.jaxb.AvailabilityZoneItemType; import com.xerox.amazonws.typica.jaxb.AvailabilityZoneMessageType; import com.xerox.amazonws.typica.jaxb.AvailabilityZoneSetType; import com.xerox.amazonws.typica.jaxb.AuthorizeSecurityGroupIngressResponse; import com.xerox.amazonws.typica.jaxb.BlockDeviceMappingType; import com.xerox.amazonws.typica.jaxb.BlockDeviceMappingItemType; import com.xerox.amazonws.typica.jaxb.BundleInstanceResponse; import com.xerox.amazonws.typica.jaxb.BundleInstanceTaskType; import com.xerox.amazonws.typica.jaxb.CancelBundleTaskResponse; import com.xerox.amazonws.typica.jaxb.CancelSpotInstanceRequestsResponse; import com.xerox.amazonws.typica.jaxb.CancelSpotInstanceRequestsResponseSetItemType; import com.xerox.amazonws.typica.jaxb.CreatePlacementGroupResponse; import com.xerox.amazonws.typica.jaxb.CreateImageResponse; import com.xerox.amazonws.typica.jaxb.CreateKeyPairResponse; import com.xerox.amazonws.typica.jaxb.CreateSnapshotResponse; import com.xerox.amazonws.typica.jaxb.CreateSpotDatafeedSubscriptionResponse; import com.xerox.amazonws.typica.jaxb.CreateVolumeResponse; import com.xerox.amazonws.typica.jaxb.CreateVolumePermissionItemType; import com.xerox.amazonws.typica.jaxb.ConfirmProductInstanceResponse; import com.xerox.amazonws.typica.jaxb.CreateSecurityGroupResponse; import com.xerox.amazonws.typica.jaxb.DeletePlacementGroupResponse; import com.xerox.amazonws.typica.jaxb.DeleteKeyPairResponse; import com.xerox.amazonws.typica.jaxb.DeleteSecurityGroupResponse; import com.xerox.amazonws.typica.jaxb.DeleteSnapshotResponse; import com.xerox.amazonws.typica.jaxb.DeleteSpotDatafeedSubscriptionResponse; import com.xerox.amazonws.typica.jaxb.DeleteVolumeResponse; import com.xerox.amazonws.typica.jaxb.DeregisterImageResponse; import com.xerox.amazonws.typica.jaxb.DescribeAddressesResponse; import com.xerox.amazonws.typica.jaxb.DescribeAddressesResponseInfoType; import com.xerox.amazonws.typica.jaxb.DescribeAddressesResponseItemType; import com.xerox.amazonws.typica.jaxb.DescribeAvailabilityZonesResponse; import com.xerox.amazonws.typica.jaxb.DescribeBundleTasksResponse; import com.xerox.amazonws.typica.jaxb.DescribeImageAttributeResponse; import com.xerox.amazonws.typica.jaxb.DescribeImagesResponse; import com.xerox.amazonws.typica.jaxb.DescribeImagesResponseInfoType; import com.xerox.amazonws.typica.jaxb.DescribeImagesResponseItemType; import com.xerox.amazonws.typica.jaxb.DescribeInstancesResponse; import com.xerox.amazonws.typica.jaxb.DescribeInstanceAttributeResponse; import com.xerox.amazonws.typica.jaxb.DescribePlacementGroupsResponse; import com.xerox.amazonws.typica.jaxb.DescribeReservedInstancesResponse; import com.xerox.amazonws.typica.jaxb.DescribeReservedInstancesResponseSetItemType; import com.xerox.amazonws.typica.jaxb.DescribeReservedInstancesOfferingsResponse; import com.xerox.amazonws.typica.jaxb.DescribeReservedInstancesOfferingsResponseSetItemType; import com.xerox.amazonws.typica.jaxb.DescribeSnapshotsResponse; import com.xerox.amazonws.typica.jaxb.DescribeSnapshotAttributeResponse; import com.xerox.amazonws.typica.jaxb.DescribeSnapshotsSetResponseType; import com.xerox.amazonws.typica.jaxb.DescribeSnapshotsSetItemResponseType; import com.xerox.amazonws.typica.jaxb.DescribeSpotDatafeedSubscriptionResponse; import com.xerox.amazonws.typica.jaxb.DescribeSpotInstanceRequestsResponse; import com.xerox.amazonws.typica.jaxb.DescribeVolumesResponse; import com.xerox.amazonws.typica.jaxb.DescribeVolumesSetResponseType; import com.xerox.amazonws.typica.jaxb.DescribeVolumesSetItemResponseType; import com.xerox.amazonws.typica.jaxb.DescribeKeyPairsResponse; import com.xerox.amazonws.typica.jaxb.DescribeKeyPairsResponseInfoType; import com.xerox.amazonws.typica.jaxb.DescribeKeyPairsResponseItemType; import com.xerox.amazonws.typica.jaxb.DescribeRegionsResponse; import com.xerox.amazonws.typica.jaxb.DescribeSecurityGroupsResponse; import com.xerox.amazonws.typica.jaxb.DescribeSpotPriceHistoryResponse; import com.xerox.amazonws.typica.jaxb.DetachVolumeResponse; import com.xerox.amazonws.typica.jaxb.DisassociateAddressResponse; import com.xerox.amazonws.typica.jaxb.EbsBlockDeviceType; import com.xerox.amazonws.typica.jaxb.GetConsoleOutputResponse; import com.xerox.amazonws.typica.jaxb.GetPasswordDataResponse; import com.xerox.amazonws.typica.jaxb.GroupItemType; import com.xerox.amazonws.typica.jaxb.GroupSetType; import com.xerox.amazonws.typica.jaxb.InstanceStateChangeSetType; import com.xerox.amazonws.typica.jaxb.InstanceStateChangeType; import com.xerox.amazonws.typica.jaxb.IpPermissionSetType; import com.xerox.amazonws.typica.jaxb.IpPermissionType; import com.xerox.amazonws.typica.jaxb.IpRangeItemType; import com.xerox.amazonws.typica.jaxb.IpRangeSetType; import com.xerox.amazonws.typica.jaxb.LaunchPermissionItemType; import com.xerox.amazonws.typica.jaxb.LaunchPermissionListType; import com.xerox.amazonws.typica.jaxb.ModifyImageAttributeResponse; import com.xerox.amazonws.typica.jaxb.ModifyInstanceAttributeResponse; import com.xerox.amazonws.typica.jaxb.ModifySnapshotAttributeResponse; import com.xerox.amazonws.typica.jaxb.MonitorInstancesResponseType; import com.xerox.amazonws.typica.jaxb.MonitorInstancesResponseSetItemType; import com.xerox.amazonws.typica.jaxb.NullableAttributeValueType; import com.xerox.amazonws.typica.jaxb.ObjectFactory; import com.xerox.amazonws.typica.jaxb.PlacementGroupInfoType; import com.xerox.amazonws.typica.jaxb.ProductCodeListType; import com.xerox.amazonws.typica.jaxb.ProductCodeItemType; import com.xerox.amazonws.typica.jaxb.ProductCodesSetType; import com.xerox.amazonws.typica.jaxb.ProductCodesSetItemType; import com.xerox.amazonws.typica.jaxb.PurchaseReservedInstancesOfferingResponse; import com.xerox.amazonws.typica.jaxb.RebootInstancesResponse; import com.xerox.amazonws.typica.jaxb.RegionItemType; import com.xerox.amazonws.typica.jaxb.RegionSetType; import com.xerox.amazonws.typica.jaxb.RegisterImageResponse; import com.xerox.amazonws.typica.jaxb.ReleaseAddressResponse; import com.xerox.amazonws.typica.jaxb.RequestSpotInstancesResponse; import com.xerox.amazonws.typica.jaxb.RevokeSecurityGroupIngressResponse; import com.xerox.amazonws.typica.jaxb.ReservationSetType; import com.xerox.amazonws.typica.jaxb.ReservationInfoType; import com.xerox.amazonws.typica.jaxb.ResetImageAttributeResponse; import com.xerox.amazonws.typica.jaxb.ResetInstanceAttributeResponse; import com.xerox.amazonws.typica.jaxb.ResetSnapshotAttributeResponse; import com.xerox.amazonws.typica.jaxb.RunningInstancesItemType; import com.xerox.amazonws.typica.jaxb.RunningInstancesSetType; import com.xerox.amazonws.typica.jaxb.RunInstancesResponse; import com.xerox.amazonws.typica.jaxb.SecurityGroupSetType; import com.xerox.amazonws.typica.jaxb.SecurityGroupItemType; import com.xerox.amazonws.typica.jaxb.SpotPriceHistorySetItemType; import com.xerox.amazonws.typica.jaxb.SpotInstanceRequestSetItemType; import com.xerox.amazonws.typica.jaxb.StartInstancesResponse; import com.xerox.amazonws.typica.jaxb.StopInstancesResponse; import com.xerox.amazonws.typica.jaxb.TerminateInstancesResponse; import com.xerox.amazonws.typica.jaxb.UserIdGroupPairType; import com.xerox.amazonws.typica.jaxb.UserIdGroupPairSetType; /** * A Java wrapper for the EC2 web services API */ public class Jec2 extends AWSQueryConnection { private static Log logger = LogFactory.getLog(Jec2.class); /** * Initializes the ec2 service with your AWS login information. * * @param awsAccessId The your user key into AWS * @param awsSecretKey The secret string used to generate signatures for authentication. */ public Jec2(String awsAccessId, String awsSecretKey) { this(awsAccessId, awsSecretKey, true); } /** * Initializes the ec2 service with your AWS login information. * * @param awsAccessId The your user key into AWS * @param awsSecretKey The secret string used to generate signatures for authentication. * @param isSecure True if the data should be encrypted on the wire on the way to or from EC2. */ public Jec2(String awsAccessId, String awsSecretKey, boolean isSecure) { this(awsAccessId, awsSecretKey, isSecure, "ec2.amazonaws.com"); } /** * Initializes the ec2 service with your AWS login information. * * @param awsAccessId The your user key into AWS * @param awsSecretKey The secret string used to generate signatures for authentication. * @param isSecure True if the data should be encrypted on the wire on the way to or from EC2. * @param server Which host to connect to. Usually, this will be ec2.amazonaws.com */ public Jec2(String awsAccessId, String awsSecretKey, boolean isSecure, String server) { this(awsAccessId, awsSecretKey, isSecure, server, isSecure ? 443 : 80); } /** * Initializes the ec2 service with your AWS login information. * * @param awsAccessId The your user key into AWS * @param awsSecretKey The secret string used to generate signatures for authentication. * @param isSecure True if the data should be encrypted on the wire on the way to or from EC2. * @param server Which host to connect to. Usually, this will be ec2.amazonaws.com * @param port Which port to use. */ public Jec2(String awsAccessId, String awsSecretKey, boolean isSecure, String server, int port) { super(awsAccessId, awsSecretKey, isSecure, server, port); ArrayList<String> vals = new ArrayList<String>(); vals.add("2010-06-15"); super.headers.put("Version", vals); } /** * Creates an AMI that uses an EBS root device. * * @param instanceId An instance's id ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @param name a name to associate with the image * @param description a descriptive string to attach to the image * @param noReboot normally false; if set to true, instance is not shutdown first. * NOTE: filesystem integrity isn't guaranteed when noReboot=true * @return image ID * @throws EC2Exception wraps checked exceptions */ public String createImage(String instanceId, String name, String description, boolean noReboot) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("Name", name); if (description != null && !description.trim().equals("")) { params.put("Description", description); } if (noReboot) { params.put("NoReboot", "true"); } HttpGet method = new HttpGet(); CreateImageResponse response = makeRequestInt(method, "CreateImage", params, CreateImageResponse.class); return response.getImageId(); } /** * Register an S3 based AMI. * * @param imageLocation An AMI path within S3. * @return A unique AMI ID that can be used to create and manage instances of this AMI. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public String registerImage(String imageLocation) throws EC2Exception { return registerImage(imageLocation, null, null, null, null, null, null, null); } /** * Register a snapshot as an EBS backed AMI * * @param imageLocation An AMI path within S3. * @return A unique AMI ID that can be used to create and manage instances of this AMI. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public String registerImage(String name, String description, String architecture, String kernelId, String ramdiskId, String rootDeviceName, List<BlockDeviceMapping> blockDeviceMappings) throws EC2Exception { return registerImage(null, name, description, architecture, kernelId, ramdiskId, rootDeviceName, blockDeviceMappings); } protected String registerImage(String imageLocation, String name, String description, String architecture, String kernelId, String ramdiskId, String rootDeviceName, List<BlockDeviceMapping> blockDeviceMappings) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (imageLocation != null && !imageLocation.trim().equals("")) { params.put("ImageLocation", imageLocation); } if (name != null && !name.trim().equals("")) { params.put("Name", name); } if (description != null && !description.trim().equals("")) { params.put("Description", description); } if (architecture != null && !architecture.trim().equals("")) { params.put("Architecture", architecture); } if (kernelId != null && !kernelId.trim().equals("")) { params.put("KernelId", kernelId); } if (ramdiskId != null && !ramdiskId.trim().equals("")) { params.put("RamdiskId", ramdiskId); } if (rootDeviceName != null && !rootDeviceName.trim().equals("")) { params.put("RootDeviceName", rootDeviceName); } if (blockDeviceMappings != null) { for(int i = 0; i < blockDeviceMappings.size(); i++) { BlockDeviceMapping bdm = blockDeviceMappings.get(i); params.put("BlockDeviceMapping." + (i + 1) + ".DeviceName", bdm.getDeviceName()); if (bdm.getVirtualName() != null) { params.put("BlockDeviceMapping." + (i + 1) + ".VirtualName", bdm.getVirtualName()); } else { if (bdm.getSnapshotId() != null) { params.put("BlockDeviceMapping." + (i + 1) + ".Ebs.SnapshotId", bdm.getSnapshotId()); } if (bdm.getVolumeSize() > 0) { params.put("BlockDeviceMapping." + (i + 1) + ".Ebs.VolumeSize", ""+bdm.getVolumeSize()); } params.put("BlockDeviceMapping." + (i + 1) + ".Ebs.DeleteOnTermination", bdm.isDeleteOnTerminate()?"true":"false"); } } } HttpGet method = new HttpGet(); RegisterImageResponse response = makeRequestInt(method, "RegisterImage", params, RegisterImageResponse.class); return response.getImageId(); } /** * Deregister the given AMI. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public void deregisterImage(String imageId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("ImageId", imageId); HttpGet method = new HttpGet(); DeregisterImageResponse response = makeRequestInt(method, "DeregisterImage", params, DeregisterImageResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not deregister image : "+imageId+". No reason given."); } } /** * Describe the given AMIs. * * @param imageIds An array of AMI IDs as returned by {@link #registerImage(String)}. * @return A list of {@link ImageDescription} instances describing each AMI ID. * @throws EC2Exception wraps checked exceptions */ public List<ImageDescription> describeImages(String[] imageIds) throws EC2Exception { return describeImages(Arrays.asList(imageIds)); } /** * Describe the given AMIs. * * @param imageIds A list of AMI IDs as returned by {@link #registerImage(String)}. * @return A list of {@link ImageDescription} instances describing each AMI ID. * @throws EC2Exception wraps checked exceptions */ public List<ImageDescription> describeImages(List<String> imageIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<imageIds.size(); i++) { params.put("ImageId."+(i+1), imageIds.get(i)); } return describeImages(params); } /** * Describe the AMIs belonging to the supplied owners. * * @param owners A list of owners. * @return A list of {@link ImageDescription} instances describing each AMI ID. * @throws EC2Exception wraps checked exceptions */ public List<ImageDescription> describeImagesByOwner(List<String> owners) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<owners.size(); i++) { params.put("Owner."+(i+1), owners.get(i)); } return describeImages(params); } /** * Describe the AMIs executable by supplied users. * * @param users A list of users. * @return A list of {@link ImageDescription} instances describing each AMI ID. * @throws EC2Exception wraps checked exceptions */ public List<ImageDescription> describeImagesByExecutability(List<String> users) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<users.size(); i++) { params.put("ExecutableBy."+(i+1), users.get(i)); } return describeImages(params); } /** * Describe the AMIs that match the intersection of the criteria supplied * * @param imageIds A list of AMI IDs as returned by {@link #registerImage(String)}. * @param owners A list of owners. * @param users A list of users. * @return A list of {@link ImageDescription} instances describing each AMI ID. * @throws EC2Exception wraps checked exceptions */ public List<ImageDescription> describeImages(List<String> imageIds, List<String> owners, List<String> users) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<imageIds.size(); i++) { params.put("ImageId."+(i+1), imageIds.get(i)); } for (int i=0 ; i<owners.size(); i++) { params.put("Owner."+(i+1), owners.get(i)); } for (int i=0 ; i<users.size(); i++) { params.put("ExecutableBy."+(i+1), users.get(i)); } return describeImages(params); } protected List<ImageDescription> describeImages(Map<String, String> params) throws EC2Exception { HttpGet method = new HttpGet(); DescribeImagesResponse response = makeRequestInt(method, "DescribeImages", params, DescribeImagesResponse.class); List<ImageDescription> result = new ArrayList<ImageDescription>(); DescribeImagesResponseInfoType set = response.getImagesSet(); Iterator set_iter = set.getItems().iterator(); while (set_iter.hasNext()) { DescribeImagesResponseItemType item = (DescribeImagesResponseItemType) set_iter .next(); ArrayList<String> codes = new ArrayList<String>(); ProductCodesSetType code_set = item.getProductCodes(); if (code_set != null) { for (ProductCodesSetItemType code : code_set.getItems()) { codes.add(code.getProductCode()); } } ArrayList<BlockDeviceMapping> bdm = new ArrayList<BlockDeviceMapping>(); BlockDeviceMappingType bdmType = item.getBlockDeviceMapping(); if (bdmType != null) { for (BlockDeviceMappingItemType mapping : bdmType.getItems()) { if (mapping.getVirtualName() != null) { bdm.add(new BlockDeviceMapping(mapping.getVirtualName(), mapping.getDeviceName())); } else if (mapping.getEbs() != null) { EbsBlockDeviceType ebs = mapping.getEbs(); bdm.add(new BlockDeviceMapping(mapping.getDeviceName(), ebs.getSnapshotId(), ebs.getVolumeSize(), ebs.isDeleteOnTermination())); } else { bdm.add(new BlockDeviceMapping("", mapping.getDeviceName())); } } } String reason = ""; if (item.getStateReason() != null) { reason = item.getStateReason().getMessage(); } result.add(new ImageDescription(item.getImageId(), item.getImageLocation(), item.getImageOwnerId(), item.getImageState(), item.isIsPublic(), codes, item.getArchitecture(), item.getImageType(), item.getKernelId(), item.getRamdiskId(), item.getPlatform(), reason, item.getImageOwnerAlias(), item.getName(), item.getDescription(), item.getRootDeviceType(), item.getRootDeviceName(), bdm, item.getVirtualizationType())); } return result; } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * <p> * NOTE: this method defaults to the AWS desired "public" addressing type. * NOTE: this method defaults to the small(traditional) instance type. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @param minCount The minimum number of instances to attempt to reserve. * @param maxCount The maximum number of instances to attempt to reserve. * @param groupSet A (possibly empty) set of security group definitions. * @param userData User supplied data that will be made available to the instance(s) * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(String imageId, int minCount, int maxCount, List<String> groupSet, String userData, String keyName) throws EC2Exception { return runInstances(imageId, minCount, maxCount, groupSet, userData, keyName, true, InstanceType.DEFAULT); } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * NOTE: this method defaults to the small(traditional) instance type. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @param minCount The minimum number of instances to attempt to reserve. * @param maxCount The maximum number of instances to attempt to reserve. * @param groupSet A (possibly empty) set of security group definitions. * @param userData User supplied data that will be made available to the instance(s) * @param publicAddr sets addressing mode to public * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(String imageId, int minCount, int maxCount, List<String> groupSet, String userData, String keyName, boolean publicAddr) throws EC2Exception { return runInstances(imageId, minCount, maxCount, groupSet, userData, keyName, publicAddr, InstanceType.DEFAULT); } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * NOTE: this method defaults to the AWS desired "public" addressing type. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @param minCount The minimum number of instances to attempt to reserve. * @param maxCount The maximum number of instances to attempt to reserve. * @param groupSet A (possibly empty) set of security group definitions. * @param userData User supplied data that will be made available to the instance(s) * @param type instance type * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(String imageId, int minCount, int maxCount, List<String> groupSet, String userData, String keyName, InstanceType type) throws EC2Exception { return runInstances(imageId, minCount, maxCount, groupSet, userData, keyName, true, type); } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @param minCount The minimum number of instances to attempt to reserve. * @param maxCount The maximum number of instances to attempt to reserve. * @param groupSet A (possibly empty) set of security group definitions. * @param userData User supplied data that will be made available to the instance(s) * @param publicAddr sets addressing mode to public * @param type instance type * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(String imageId, int minCount, int maxCount, List<String> groupSet, String userData, String keyName, boolean publicAddr, InstanceType type) throws EC2Exception { return runInstances(imageId, minCount, maxCount, groupSet, userData, keyName, publicAddr, type, null, null, null, null); } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * * @param imageId An AMI ID as returned by {@link #registerImage(String)}. * @param minCount The minimum number of instances to attempt to reserve. * @param maxCount The maximum number of instances to attempt to reserve. * @param groupSet A (possibly empty) set of security group definitions. * @param userData User supplied data that will be made available to the instance(s) * @param publicAddr sets addressing mode to public * @param type instance type * @param availabilityZone the zone in which to launch the instance(s) * @param kernelId id of the kernel with which to launch the instance(s) * @param ramdiskId id of the RAM disk with wich to launch the imstance(s) * @param blockDeviceMappings mappings of virtual to device names * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(String imageId, int minCount, int maxCount, List<String> groupSet, String userData, String keyName, boolean publicAddr, InstanceType type, String availabilityZone, String kernelId, String ramdiskId, List<BlockDeviceMapping> blockDeviceMappings) throws EC2Exception { LaunchConfiguration lc = new LaunchConfiguration(imageId); lc.setMinCount(minCount); lc.setMaxCount(maxCount); lc.setSecurityGroup(groupSet); if (userData != null) { lc.setUserData(userData.getBytes()); } lc.setKeyName(keyName); lc.setInstanceType(type); lc.setAvailabilityZone(availabilityZone); lc.setKernelId(kernelId); lc.setRamdiskId(ramdiskId); lc.setBlockDevicemappings(blockDeviceMappings); lc.setPublicAddressing(publicAddr); return runInstances(lc); } /** * Requests reservation of a number of instances. * <p> * This will begin launching those instances for which a reservation was * successfully obtained. * <p> * If less than <code>minCount</code> instances are available no instances * will be reserved. * * @param lc object containing launch configuration * @return A {@link com.xerox.amazonws.ec2.ReservationDescription} describing the instances that * have been reserved. * @throws EC2Exception wraps checked exceptions */ public ReservationDescription runInstances(LaunchConfiguration lc) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); lc.prepareQueryParams("", true, params); HttpPost method = new HttpPost(); RunInstancesResponse response = makeRequestInt(method, "RunInstances", params, RunInstancesResponse.class); ReservationDescription res = new ReservationDescription(response.getRequestId(), response.getOwnerId(), response.getReservationId(), response.getRequesterId(), response.getGroupSet(), response.getInstancesSet()); return res; } /** * Starts a selection of stopped instances. * * @param instanceIds An array of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions */ public List<InstanceStateChangeDescription> startInstances(String[] instanceIds) throws EC2Exception { return this.startInstances(Arrays.asList(instanceIds)); } /** * Starts a selection of stopped instances. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public List<InstanceStateChangeDescription> startInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); StartInstancesResponse response = makeRequestInt(method, "StartInstances", params, StartInstancesResponse.class); List<InstanceStateChangeDescription> res = new ArrayList<InstanceStateChangeDescription>(); InstanceStateChangeSetType set = response.getInstancesSet(); Iterator instances_iter = set.getItems().iterator(); while (instances_iter.hasNext()) { InstanceStateChangeType rsp_item = (InstanceStateChangeType)instances_iter.next(); res.add(new InstanceStateChangeDescription( rsp_item.getInstanceId(), rsp_item.getPreviousState().getName(), rsp_item.getPreviousState().getCode(), rsp_item.getCurrentState().getName(), rsp_item.getCurrentState().getCode())); } return res; } /** * Stops a selection of running instances. * * @param instanceIds An array of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @param force forces the instance to stop. bypasses filesystem flush. Use with caution! * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions */ public List<InstanceStateChangeDescription> stopInstances(String[] instanceIds, boolean force) throws EC2Exception { return this.stopInstances(Arrays.asList(instanceIds), force); } /** * Stops a selection of running instances. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @param force forces the instance to stop. bypasses filesystem flush. Use with caution! * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public List<InstanceStateChangeDescription> stopInstances(List<String> instanceIds, boolean force) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); StopInstancesResponse response = makeRequestInt(method, "StopInstances", params, StopInstancesResponse.class); List<InstanceStateChangeDescription> res = new ArrayList<InstanceStateChangeDescription>(); InstanceStateChangeSetType set = response.getInstancesSet(); Iterator instances_iter = set.getItems().iterator(); while (instances_iter.hasNext()) { InstanceStateChangeType rsp_item = (InstanceStateChangeType)instances_iter.next(); res.add(new InstanceStateChangeDescription( rsp_item.getInstanceId(), rsp_item.getPreviousState().getName(), rsp_item.getPreviousState().getCode(), rsp_item.getCurrentState().getName(), rsp_item.getCurrentState().getCode())); } return res; } /** * Terminates a selection of running instances. * * @param instanceIds An array of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions */ public List<InstanceStateChangeDescription> terminateInstances(String[] instanceIds) throws EC2Exception { return this.terminateInstances(Arrays.asList(instanceIds)); } /** * Terminates a selection of running instances. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link InstanceStateChangeDescription} instances. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public List<InstanceStateChangeDescription> terminateInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpPost method = new HttpPost(); TerminateInstancesResponse response = makeRequestInt(method, "TerminateInstances", params, TerminateInstancesResponse.class); List<InstanceStateChangeDescription> res = new ArrayList<InstanceStateChangeDescription>(); InstanceStateChangeSetType set = response.getInstancesSet(); Iterator instances_iter = set.getItems().iterator(); while (instances_iter.hasNext()) { InstanceStateChangeType rsp_item = (InstanceStateChangeType)instances_iter.next(); res.add(new InstanceStateChangeDescription( rsp_item.getInstanceId(), rsp_item.getPreviousState().getName(), rsp_item.getPreviousState().getCode(), rsp_item.getCurrentState().getName(), rsp_item.getCurrentState().getCode())); } return res; } /** * Gets a list of running instances. * <p> * If the array of instance IDs is empty then a list of all instances owned * by the caller will be returned. Otherwise the list will contain * information for the requested instances only. * * @param instanceIds An array of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link com.xerox.amazonws.ec2.ReservationDescription} instances. * @throws EC2Exception wraps checked exceptions */ public List<ReservationDescription> describeInstances(String[] instanceIds) throws EC2Exception { return this.describeInstances(Arrays.asList(instanceIds)); } /** * Gets a list of running instances. * <p> * If the list of instance IDs is empty then a list of all instances owned * by the caller will be returned. Otherwise the list will contain * information for the requested instances only. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return A list of {@link com.xerox.amazonws.ec2.ReservationDescription} instances. * @throws EC2Exception wraps checked exceptions */ public List<ReservationDescription> describeInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); DescribeInstancesResponse response = makeRequestInt(method, "DescribeInstances", params, DescribeInstancesResponse.class); List<ReservationDescription> result = new ArrayList<ReservationDescription>(); ReservationSetType res_set = response.getReservationSet(); for (ReservationInfoType item : res_set.getItems()) { ReservationDescription res = new ReservationDescription(response.getRequestId(), item.getOwnerId(), item.getReservationId(), item.getRequesterId(), item.getGroupSet(), item.getInstancesSet()); result.add(res); } return result; } /** * Reboot a selection of running instances. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public void rebootInstances(String [] instanceIds) throws EC2Exception { this.rebootInstances(Arrays.asList(instanceIds)); } /** * Reboot a selection of running instances. * * @param instanceIds A list of instances ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public void rebootInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); RebootInstancesResponse response = makeRequestInt(method, "RebootInstances", params, RebootInstancesResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not reboot instances. No reason given."); } } /** * Changes one of a variety of settings for a instance. * * @param instanceId the instance you are addressing * @param attribute for now, should be (instanceType|kernel|ramdisk|userData|disableApiTermination|instanceInitatedShutdownBehavior|rootDeviceName|blockDeviceMapping) * @param value value of the attribute * @throws EC2Exception wraps checked exceptions */ public void modifyInstanceAttribute(String instanceId, String attribute, String value) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("Attribute", attribute); params.put("Value", value); HttpPost method = new HttpPost(); ModifyInstanceAttributeResponse response = makeRequestInt(method, "ModifyInstanceAttribute", params, ModifyInstanceAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not modify instance attribute : "+attribute+". No reason given."); } } /** * Resets an attribute on an instance. * * @param instanceId The instance to reset the attribute on. * @param attribute The attribute type to reset (kernel|ramdisk). * @throws EC2Exception wraps checked exceptions */ public void resetInstanceAttribute(String instanceId, String attribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("Attribute", attribute); HttpGet method = new HttpGet(); ResetInstanceAttributeResponse response = makeRequestInt(method, "ResetInstanceAttribute", params, ResetInstanceAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not reset instance attribute. No reason given."); } } /** * Describes an attribute of an instance. * * @param instanceId The instance for which the attribute is described. * @param attribute The attribute to describe (createVolumePermission). * @return An object containing the instanceId and a list of list attribute item types and values. * @throws EC2Exception wraps checked exceptions */ public DescribeInstanceAttributeResult describeInstanceAttribute(String instanceId, String attribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("Attribute", attribute); HttpGet method = new HttpGet(); DescribeInstanceAttributeResponse response = makeRequestInt(method, "DescribeInstanceAttribute", params, DescribeInstanceAttributeResponse.class); return new DescribeInstanceAttributeResult(response); } /** * Get an instance's console output. * * @param instanceId An instance's id ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return ({@link ConsoleOutput}) * @throws EC2Exception wraps checked exceptions */ public ConsoleOutput getConsoleOutput(String instanceId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); HttpGet method = new HttpGet(); GetConsoleOutputResponse response = makeRequestInt(method, "GetConsoleOutput", params, GetConsoleOutputResponse.class); return new ConsoleOutput(response.getRequestId(), response.getInstanceId(), response.getTimestamp().toGregorianCalendar(), new String(Base64.decodeBase64(response.getOutput().getBytes()))); } /** * Get a Windows instance's admin password. * * @param instanceId An instance's id ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @return password data * @throws EC2Exception wraps checked exceptions */ public String getPasswordData(String instanceId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); HttpGet method = new HttpGet(); GetPasswordDataResponse response = makeRequestInt(method, "GetPasswordData", params, GetPasswordDataResponse.class); return response.getPasswordData(); } /** * Creates a security group. * * @param name The name of the security group. * @param desc The description of the security group. * @throws EC2Exception wraps checked exceptions */ public void createSecurityGroup(String name, String desc) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", name); params.put("GroupDescription", desc); HttpGet method = new HttpGet(); CreateSecurityGroupResponse response = makeRequestInt(method, "CreateSecurityGroup", params, CreateSecurityGroupResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not create security group : "+name+". No reason given."); } } /** * Deletes a security group. * * @param name The name of the security group. * @throws EC2Exception wraps checked exceptions */ public void deleteSecurityGroup(String name) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", name); HttpGet method = new HttpGet(); DeleteSecurityGroupResponse response = makeRequestInt(method, "DeleteSecurityGroup", params, DeleteSecurityGroupResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not delete security group : "+name+". No reason given."); } } /** * Gets a list of security groups and their associated permissions. * * @param groupNames An array of groups to describe. * @return A list of groups ({@link GroupDescription}. * @throws EC2Exception wraps checked exceptions */ public List<GroupDescription> describeSecurityGroups(String[] groupNames) throws EC2Exception { return describeSecurityGroups(Arrays.asList(groupNames)); } /** * Gets a list of security groups and their associated permissions. * * @param groupNames A list of groups to describe. * @return A list of groups ({@link GroupDescription}. * @throws EC2Exception wraps checked exceptions */ public List<GroupDescription> describeSecurityGroups(List<String> groupNames) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<groupNames.size(); i++) { params.put("GroupName."+(i+1), groupNames.get(i)); } HttpGet method = new HttpGet(); DescribeSecurityGroupsResponse response = makeRequestInt(method, "DescribeSecurityGroups", params, DescribeSecurityGroupsResponse.class); List<GroupDescription> result = new ArrayList<GroupDescription>(); SecurityGroupSetType rsp_set = response.getSecurityGroupInfo(); Iterator set_iter = rsp_set.getItems().iterator(); while (set_iter.hasNext()) { SecurityGroupItemType item = (SecurityGroupItemType) set_iter.next(); GroupDescription group = new GroupDescription(item.getGroupName(), item.getGroupDescription(), item.getOwnerId()); IpPermissionSetType perms = item.getIpPermissions(); Iterator perm_iter = perms.getItems().iterator(); while (perm_iter.hasNext()) { IpPermissionType perm = (IpPermissionType) perm_iter.next(); GroupDescription.IpPermission group_perms = group .addPermission(perm.getIpProtocol(), perm.getFromPort(), perm.getToPort()); Iterator group_iter = perm.getGroups().getItems().iterator(); while (group_iter.hasNext()) { UserIdGroupPairType uid_group = (UserIdGroupPairType) group_iter.next(); group_perms.addUserGroupPair(uid_group.getUserId(), uid_group.getGroupName()); } Iterator iprange_iter = perm.getIpRanges().getItems().iterator(); while (iprange_iter.hasNext()) { IpRangeItemType range = (IpRangeItemType) iprange_iter .next(); group_perms.addIpRange(range.getCidrIp()); } } result.add(group); } return result; } /** * Adds incoming permissions to a security group. * * @param groupName name of group to modify * @param secGroupName name of security group to authorize access to * @param secGroupOwnerId owner of security group to authorize access to * @throws EC2Exception wraps checked exceptions */ public void authorizeSecurityGroupIngress(String groupName, String secGroupName, String secGroupOwnerId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", groupName); params.put("SourceSecurityGroupOwnerId", secGroupOwnerId); params.put("SourceSecurityGroupName", secGroupName); HttpGet method = new HttpGet(); AuthorizeSecurityGroupIngressResponse response = makeRequestInt(method, "AuthorizeSecurityGroupIngress", params, AuthorizeSecurityGroupIngressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not authorize security ingress : "+groupName+". No reason given."); } } /** * Adds incoming permissions to a security group. * * @param groupName name of group to modify * @param ipProtocol protocol to authorize (tcp, udp, icmp) * @param fromPort bottom of port range to authorize * @param toPort top of port range to authorize * @param cidrIp CIDR IP range to authorize (i.e. 0.0.0.0/0) * @throws EC2Exception wraps checked exceptions */ public void authorizeSecurityGroupIngress(String groupName, String ipProtocol, int fromPort, int toPort, String cidrIp) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", groupName); params.put("IpProtocol", ipProtocol); params.put("FromPort", ""+fromPort); params.put("ToPort", ""+toPort); params.put("CidrIp", cidrIp); HttpGet method = new HttpGet(); AuthorizeSecurityGroupIngressResponse response = makeRequestInt(method, "AuthorizeSecurityGroupIngress", params, AuthorizeSecurityGroupIngressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not authorize security ingress : "+groupName+". No reason given."); } } /** * Revokes incoming permissions from a security group. * * @param groupName name of group to modify * @param secGroupName name of security group to revoke access from * @param secGroupOwnerId owner of security group to revoke access from * @throws EC2Exception wraps checked exceptions */ public void revokeSecurityGroupIngress(String groupName, String secGroupName, String secGroupOwnerId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", groupName); params.put("SourceSecurityGroupOwnerId", secGroupOwnerId); params.put("SourceSecurityGroupName", secGroupName); HttpGet method = new HttpGet(); RevokeSecurityGroupIngressResponse response = makeRequestInt(method, "RevokeSecurityGroupIngress", params, RevokeSecurityGroupIngressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not revoke security ingress : "+groupName+". No reason given."); } } /** * Revokes incoming permissions from a security group. * * @param groupName name of group to modify * @param ipProtocol protocol to revoke (tcp, udp, icmp) * @param fromPort bottom of port range to revoke * @param toPort top of port range to revoke * @param cidrIp CIDR IP range to revoke (i.e. 0.0.0.0/0) * @throws EC2Exception wraps checked exceptions */ public void revokeSecurityGroupIngress(String groupName, String ipProtocol, int fromPort, int toPort, String cidrIp) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GroupName", groupName); params.put("IpProtocol", ipProtocol); params.put("FromPort", ""+fromPort); params.put("ToPort", ""+toPort); params.put("CidrIp", cidrIp); HttpGet method = new HttpGet(); RevokeSecurityGroupIngressResponse response = makeRequestInt(method, "RevokeSecurityGroupIngress", params, RevokeSecurityGroupIngressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not revoke security ingress : "+groupName+". No reason given."); } } /** * Creates a public/private keypair. * * @param keyName Name of the keypair. * @return A keypair description ({@link KeyPairInfo}). * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public KeyPairInfo createKeyPair(String keyName) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("KeyName", keyName); HttpGet method = new HttpGet(); CreateKeyPairResponse response = makeRequestInt(method, "CreateKeyPair", params, CreateKeyPairResponse.class); return new KeyPairInfo(response.getKeyName(), response.getKeyFingerprint(), response.getKeyMaterial()); } /** * Lists public/private keypairs. * * @param keyIds An array of keypairs. * @return A list of keypair descriptions ({@link KeyPairInfo}). * @throws EC2Exception wraps checked exceptions */ public List<KeyPairInfo> describeKeyPairs(String[] keyIds) throws EC2Exception { return describeKeyPairs(Arrays.asList(keyIds)); } /** * Lists public/private keypairs. NOTE: the KeyPairInfo.getMaterial() method will return null * because this API call doesn't return the keypair material. * * @param keyIds A list of keypairs. * @return A list of keypair descriptions ({@link KeyPairInfo}). * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public List<KeyPairInfo> describeKeyPairs(List<String> keyIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<keyIds.size(); i++) { params.put("KeyName."+(i+1), keyIds.get(i)); } HttpGet method = new HttpGet(); DescribeKeyPairsResponse response = makeRequestInt(method, "DescribeKeyPairs", params, DescribeKeyPairsResponse.class); List<KeyPairInfo> result = new ArrayList<KeyPairInfo>(); DescribeKeyPairsResponseInfoType set = response.getKeySet(); Iterator set_iter = set.getItems().iterator(); while (set_iter.hasNext()) { DescribeKeyPairsResponseItemType item = (DescribeKeyPairsResponseItemType) set_iter.next(); result.add(new KeyPairInfo(item.getKeyName(), item.getKeyFingerprint(), null)); } return result; } /** * Deletes a public/private keypair. * * @param keyName Name of the keypair. * @throws EC2Exception wraps checked exceptions * TODO: need to return request id */ public void deleteKeyPair(String keyName) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("KeyName", keyName); HttpGet method = new HttpGet(); DeleteKeyPairResponse response = makeRequestInt(method, "DeleteKeyPair", params, DeleteKeyPairResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not delete keypair : "+keyName+". No reason given."); } } /** * Enumerates image list attribute operation types. */ public enum ImageListAttributeOperationType { add, remove } /** * Modifies an attribute by the given items with the given operation. * * @param imageId The ID of the AMI to modify the attributes for. * @param attribute The name of the attribute to change. * @param operationType The name of the operation to change. May be add or remove. * @throws EC2Exception wraps checked exceptions */ public void modifyImageAttribute(String imageId, ImageListAttribute attribute, ImageListAttributeOperationType operationType) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("ImageId", imageId); if (attribute.getType().equals(ImageAttribute.ImageAttributeType.launchPermission)) { params.put("Attribute", "launchPermission"); switch (operationType) { case add: params.put("OperationType", "add"); break; case remove: params.put("OperationType", "remove"); break; default: throw new IllegalArgumentException("Unknown attribute operation."); } } else if (attribute.getType().equals(ImageAttribute.ImageAttributeType.productCodes)) { params.put("Attribute", "productCodes"); } int gNum = 1; int iNum = 1; int pNum = 1; for(ImageListAttributeItem item : attribute.getImageListAttributeItems()) { switch (item.getType()) { case group: params.put("UserGroup."+gNum, item.getValue()); gNum++; break; case userId: params.put("UserId."+iNum, item.getValue()); iNum++; break; case productCode: params.put("ProductCode."+pNum, item.getValue()); pNum++; break; default: throw new IllegalArgumentException("Unknown item type."); } } HttpGet method = new HttpGet(); ModifyImageAttributeResponse response = makeRequestInt(method, "ModifyImageAttribute", params, ModifyImageAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not reset image attribute. No reason given."); } } /** * Resets an attribute on an AMI. * * @param imageId The AMI to reset the attribute on. * @param imageAttribute The attribute type to reset. * @throws EC2Exception wraps checked exceptions */ public void resetImageAttribute(String imageId, ImageAttribute.ImageAttributeType imageAttribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("ImageId", imageId); if (imageAttribute.equals(ImageAttribute.ImageAttributeType.launchPermission)) { params.put("Attribute", "launchPermission"); } else if (imageAttribute.equals(ImageAttribute.ImageAttributeType.productCodes)) { throw new IllegalArgumentException("Cannot reset productCodes attribute"); } HttpGet method = new HttpGet(); ResetImageAttributeResponse response = makeRequestInt(method, "ResetImageAttribute", params, ResetImageAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not reset image attribute. No reason given."); } } /** * Describes an attribute of an AMI. * * @param imageId The AMI for which the attribute is described. * @param imageAttribute The attribute type to describe. * @return An object containing the imageId and a list of list attribute item types and values. * @throws EC2Exception wraps checked exceptions */ public DescribeImageAttributeResult describeImageAttribute(String imageId, ImageAttribute.ImageAttributeType imageAttribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("ImageId", imageId); if (imageAttribute.equals(ImageAttribute.ImageAttributeType.launchPermission)) { params.put("Attribute", "launchPermission"); } else if (imageAttribute.equals(ImageAttribute.ImageAttributeType.productCodes)) { params.put("Attribute", "productCodes"); } HttpGet method = new HttpGet(); DescribeImageAttributeResponse response = makeRequestInt(method, "DescribeImageAttribute", params, DescribeImageAttributeResponse.class); ImageListAttribute attribute = null; if (response.getLaunchPermission() != null) { LaunchPermissionListType list = response.getLaunchPermission(); attribute = new LaunchPermissionAttribute(); java.util.ListIterator i = list.getItems().listIterator(); while (i.hasNext()) { LaunchPermissionItemType item = (LaunchPermissionItemType) i.next(); if (item.getGroup() != null) { attribute.addImageListAttributeItem(ImageListAttribute.ImageListAttributeItemType.group, item.getGroup()); } else if (item.getUserId() != null) { attribute.addImageListAttributeItem(ImageListAttribute.ImageListAttributeItemType.userId, item.getUserId()); } } } else if (response.getProductCodes() != null) { ProductCodeListType list = response.getProductCodes(); attribute = new ProductCodesAttribute(); java.util.ListIterator i = list.getItems().listIterator(); while (i.hasNext()) { ProductCodeItemType item = (ProductCodeItemType) i.next(); if (item.getProductCode() != null) { attribute.addImageListAttributeItem(ImageListAttribute.ImageListAttributeItemType.productCode, item.getProductCode()); } } } ArrayList<String> codes = new ArrayList<String>(); ProductCodeListType set = response.getProductCodes(); if (set != null) { for (ProductCodeItemType code : set.getItems()) { codes.add(code.getProductCode()); } } NullableAttributeValueType val = response.getKernel(); String kernel = (val != null)?val.getValue():""; val = response.getRamdisk(); String ramdisk = (val != null)?val.getValue():""; ArrayList<BlockDeviceMapping> bdm = new ArrayList<BlockDeviceMapping>(); BlockDeviceMappingType bdmSet = response.getBlockDeviceMapping(); if (bdmSet != null) { for (BlockDeviceMappingItemType mapping : bdmSet.getItems()) { bdm.add(new BlockDeviceMapping(mapping.getVirtualName(), mapping.getDeviceName())); } } return new DescribeImageAttributeResult(response.getImageId(), attribute, codes, kernel, ramdisk, bdm); } /** * Returns true if the productCode is associated with the instance. * * @param instanceId An instance's id ({@link com.xerox.amazonws.ec2.ReservationDescription.Instance#instanceId}. * @param productCode the code for the project you registered with AWS * @return null if no relationship exists, otherwise information about the owner * @throws EC2Exception wraps checked exceptions */ public ProductInstanceInfo confirmProductInstance(String instanceId, String productCode) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("ProductCode", productCode); HttpGet method = new HttpGet(); ConfirmProductInstanceResponse response = makeRequestInt(method, "ConfirmProductInstance", params, ConfirmProductInstanceResponse.class); if (response.isReturn()) { return new ProductInstanceInfo(instanceId, productCode, response.getOwnerId()); } else return null; } /** * Returns a list of availability zones and their status. * * @param zones a list of zones to limit the results, or null * @return a list of zones and their availability * @throws EC2Exception wraps checked exceptions */ public List<AvailabilityZone> describeAvailabilityZones(List<String> zones) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (zones != null && zones.size() > 0) { for (int i=0 ; i<zones.size(); i++) { params.put("ZoneName."+(i+1), zones.get(i)); } } HttpGet method = new HttpGet(); DescribeAvailabilityZonesResponse response = makeRequestInt(method, "DescribeAvailabilityZones", params, DescribeAvailabilityZonesResponse.class); List<AvailabilityZone> ret = new ArrayList<AvailabilityZone>(); AvailabilityZoneSetType set = response.getAvailabilityZoneInfo(); Iterator set_iter = set.getItems().iterator(); while (set_iter.hasNext()) { AvailabilityZoneItemType item = (AvailabilityZoneItemType) set_iter.next(); List<String> messages = new ArrayList<String>(); for (AvailabilityZoneMessageType msg : item.getMessageSet().getItems()) { messages.add(msg.getMessage()); } ret.add(new AvailabilityZone(item.getZoneName(), item.getZoneState(), item.getRegionName(), messages)); } return ret; } /** * Returns a list of addresses associated with this account. * * @param addresses a list of zones to limit the results, or null * @return a list of addresses and their associated instance * @throws EC2Exception wraps checked exceptions */ public List<AddressInfo> describeAddresses(List<String> addresses) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (addresses != null && addresses.size() > 0) { for (int i=0 ; i<addresses.size(); i++) { params.put("PublicIp."+(i+1), addresses.get(i)); } } HttpGet method = new HttpGet(); DescribeAddressesResponse response = makeRequestInt(method, "DescribeAddresses", params, DescribeAddressesResponse.class); List<AddressInfo> ret = new ArrayList<AddressInfo>(); DescribeAddressesResponseInfoType set = response.getAddressesSet(); Iterator set_iter = set.getItems().iterator(); while (set_iter.hasNext()) { DescribeAddressesResponseItemType item = (DescribeAddressesResponseItemType) set_iter.next(); ret.add(new AddressInfo(item.getPublicIp(), item.getInstanceId())); } return ret; } /** * Allocates an address for this account. * * @return the new address allocated * @throws EC2Exception wraps checked exceptions */ public String allocateAddress() throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); HttpGet method = new HttpGet(); AllocateAddressResponse response = makeRequestInt(method, "AllocateAddress", params, AllocateAddressResponse.class); return response.getPublicIp(); } /** * Associates an address with an instance. * * @param instanceId the instance * @param publicIp the ip address to associate * @throws EC2Exception wraps checked exceptions */ public void associateAddress(String instanceId, String publicIp) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("PublicIp", publicIp); HttpGet method = new HttpGet(); AssociateAddressResponse response = makeRequestInt(method, "AssociateAddress", params, AssociateAddressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not associate address with instance (no reason given)."); } } /** * Disassociates an address with an instance. * * @param publicIp the ip address to disassociate * @throws EC2Exception wraps checked exceptions */ public void disassociateAddress(String publicIp) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("PublicIp", publicIp); HttpGet method = new HttpGet(); DisassociateAddressResponse response = makeRequestInt(method, "DisassociateAddress", params, DisassociateAddressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not disassociate address with instance (no reason given)."); } } /** * Releases an address * * @param publicIp the ip address to release * @throws EC2Exception wraps checked exceptions */ public void releaseAddress(String publicIp) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("PublicIp", publicIp); HttpGet method = new HttpGet(); ReleaseAddressResponse response = makeRequestInt(method, "ReleaseAddress", params, ReleaseAddressResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not release address (no reason given)."); } } /** * Creates an EBS volume either by size, or from a snapshot. The zone must be the same as * that of the instance you wish to attach it to. * * @param size the size of the volume in gigabytes * @param snapshotId the snapshot from which to create the new volume * @param zoneName the availability zone for the new volume * @return information about the volume * @throws EC2Exception wraps checked exceptions */ public VolumeInfo createVolume(String size, String snapshotId, String zoneName) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (size != null && !size.equals("")) { params.put("Size", size); } if (snapshotId != null && !snapshotId.equals("")) { params.put("SnapshotId", snapshotId); } params.put("AvailabilityZone", zoneName); HttpGet method = new HttpGet(); CreateVolumeResponse response = makeRequestInt(method, "CreateVolume", params, CreateVolumeResponse.class); return new VolumeInfo(response.getVolumeId(), response.getSize(), response.getSnapshotId(), response.getAvailabilityZone(), response.getStatus(), response.getCreateTime().toGregorianCalendar()); } /** * Deletes the EBS volume. * * @param volumeId the id of the volume to be deleted * @throws EC2Exception wraps checked exceptions */ public void deleteVolume(String volumeId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("VolumeId", volumeId); HttpGet method = new HttpGet(); DeleteVolumeResponse response = makeRequestInt(method, "DeleteVolume", params, DeleteVolumeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not release delete volume (no reason given)."); } } /** * Gets a list of EBS volumes for this account. * <p> * If the array of volume IDs is empty then a list of all volumes owned * by the caller will be returned. Otherwise the list will contain * information for the requested volumes only. * * @param volumeIds An array of volumes ({@link com.xerox.amazonws.ec2.VolumeInfo}. * @return A list of {@link com.xerox.amazonws.ec2.VolumeInfo} volumes. * @throws EC2Exception wraps checked exceptions */ public List<VolumeInfo> describeVolumes(String[] volumeIds) throws EC2Exception { return this.describeVolumes(Arrays.asList(volumeIds)); } /** * Gets a list of EBS volumes for this account. * <p> * If the list of volume IDs is empty then a list of all volumes owned * by the caller will be returned. Otherwise the list will contain * information for the requested volumes only. * * @param volumeIds A list of volumes ({@link com.xerox.amazonws.ec2.VolumeInfo}. * @return A list of {@link com.xerox.amazonws.ec2.VolumeInfo} volumes. * @throws EC2Exception wraps checked exceptions */ public List<VolumeInfo> describeVolumes(List<String> volumeIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<volumeIds.size(); i++) { params.put("VolumeId."+(i+1), volumeIds.get(i)); } HttpGet method = new HttpGet(); DescribeVolumesResponse response = makeRequestInt(method, "DescribeVolumes", params, DescribeVolumesResponse.class); List<VolumeInfo> result = new ArrayList<VolumeInfo>(); DescribeVolumesSetResponseType res_set = response.getVolumeSet(); Iterator reservations_iter = res_set.getItems().iterator(); while (reservations_iter.hasNext()) { DescribeVolumesSetItemResponseType item = (DescribeVolumesSetItemResponseType) reservations_iter.next(); VolumeInfo vol = new VolumeInfo(item.getVolumeId(), item.getSize(), item.getSnapshotId(), item.getAvailabilityZone(), item.getStatus(), item.getCreateTime().toGregorianCalendar()); AttachmentSetResponseType set = item.getAttachmentSet(); Iterator attachments_iter = set.getItems().iterator(); while (attachments_iter.hasNext()) { AttachmentSetItemResponseType as_item = (AttachmentSetItemResponseType) attachments_iter .next(); vol.addAttachmentInfo(as_item.getVolumeId(), as_item.getInstanceId(), as_item.getDevice(), as_item.getStatus(), as_item.getAttachTime().toGregorianCalendar()); } result.add(vol); } return result; } /** * Attaches an EBS volume to an instance. * * @param volumeId the id of the volume * @param instanceId the id of the instance * @param device the device name for the attached volume * @return the information about this attachment * @throws EC2Exception wraps checked exceptions */ public AttachmentInfo attachVolume(String volumeId, String instanceId, String device) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("VolumeId", volumeId); params.put("InstanceId", instanceId); params.put("Device", device); HttpGet method = new HttpGet(); AttachVolumeResponse response = makeRequestInt(method, "AttachVolume", params, AttachVolumeResponse.class); return new AttachmentInfo(response.getVolumeId(), response.getInstanceId(), response.getDevice(), response.getStatus(), response.getAttachTime().toGregorianCalendar()); } /** * Detaches an EBS volume from an instance. * * @param volumeId the id of the volume * @param instanceId the id of the instance * @param device the device name for the attached volume * @param force if true, forces the detachment, only use if normal detachment fails * @return the information about this attachment * @throws EC2Exception wraps checked exceptions */ public AttachmentInfo detachVolume(String volumeId, String instanceId, String device, boolean force) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("VolumeId", volumeId); params.put("InstanceId", (instanceId==null)?"":instanceId); if (device != null && !device.equals("")) { params.put("Device", device); } params.put("Force", force?"true":"false"); HttpGet method = new HttpGet(); DetachVolumeResponse response = makeRequestInt(method, "DetachVolume", params, DetachVolumeResponse.class); return new AttachmentInfo(response.getVolumeId(), response.getInstanceId(), response.getDevice(), response.getStatus(), response.getAttachTime().toGregorianCalendar()); } /** * Creates a snapshot of the EBS Volume. * * @param volumeId the id of the volume * @param description an optional descriptive string (256 chars max) * @return information about the snapshot * @throws EC2Exception wraps checked exceptions */ public SnapshotInfo createSnapshot(String volumeId, String description) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("VolumeId", volumeId); params.put("Description", description); HttpGet method = new HttpGet(); CreateSnapshotResponse response = makeRequestInt(method, "CreateSnapshot", params, CreateSnapshotResponse.class); return new SnapshotInfo(response.getSnapshotId(), response.getVolumeId(), response.getStatus(), response.getStartTime().toGregorianCalendar(), response.getProgress(), response.getOwnerId(), response.getVolumeSize(), response.getDescription(), null); } /** * Deletes the snapshot. * * @param snapshotId the id of the snapshot * @throws EC2Exception wraps checked exceptions */ public void deleteSnapshot(String snapshotId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("SnapshotId", snapshotId); HttpGet method = new HttpGet(); DeleteSnapshotResponse response = makeRequestInt(method, "DeleteSnapshot", params, DeleteSnapshotResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not release delete snapshot (no reason given)."); } } /** * Gets a list of EBS snapshots for this account. * <p> * If the array of snapshot IDs is empty then a list of all snapshots owned * by the caller will be returned. Otherwise the list will contain * information for the requested snapshots only. * * @param snapshotIds An array of snapshots ({@link com.xerox.amazonws.ec2.SnapshotInfo}. * @return A list of {@link com.xerox.amazonws.ec2.VolumeInfo} volumes. * @throws EC2Exception wraps checked exceptions */ public List<SnapshotInfo> describeSnapshots(String[] snapshotIds) throws EC2Exception { return this.describeSnapshots(Arrays.asList(snapshotIds)); } /** * Gets a list of EBS snapshots for this account. * <p> * If the list of snapshot IDs is empty then a list of all snapshots owned * by the caller will be returned. Otherwise the list will contain * information for the requested snapshots only. * * @param snapshotIds A list of snapshots ({@link com.xerox.amazonws.ec2.SnapshotInfo}. * @return A list of {@link com.xerox.amazonws.ec2.VolumeInfo} volumes. * @throws EC2Exception wraps checked exceptions */ public List<SnapshotInfo> describeSnapshots(List<String> snapshotIds) throws EC2Exception { return describeSnapshots(snapshotIds, null, null); } /** * Gets a list of EBS snapshots for this account. * <p> * If the list of snapshot IDs is empty then a list of all snapshots owned * by the caller will be returned. Otherwise the list will contain * information for the requested snapshots only. * * @param snapshotIds A list of snapshots ({@link com.xerox.amazonws.ec2.SnapshotInfo}. * @param owner limits results to snapshots owned by this user * @param restorableBy limits results to account that can create volumes from this snapshot * @return A list of {@link com.xerox.amazonws.ec2.VolumeInfo} volumes. * @throws EC2Exception wraps checked exceptions */ public List<SnapshotInfo> describeSnapshots(List<String> snapshotIds, String owner, String restorableBy) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<snapshotIds.size(); i++) { params.put("SnapshotId."+(i+1), snapshotIds.get(i)); } if (owner != null) { params.put("Owner", owner); } if (restorableBy != null) { params.put("RestorableBy", owner); } HttpGet method = new HttpGet(); DescribeSnapshotsResponse response = makeRequestInt(method, "DescribeSnapshots", params, DescribeSnapshotsResponse.class); List<SnapshotInfo> result = new ArrayList<SnapshotInfo>(); DescribeSnapshotsSetResponseType res_set = response.getSnapshotSet(); Iterator reservations_iter = res_set.getItems().iterator(); while (reservations_iter.hasNext()) { DescribeSnapshotsSetItemResponseType item = (DescribeSnapshotsSetItemResponseType) reservations_iter.next(); SnapshotInfo vol = new SnapshotInfo(item.getSnapshotId(), item.getVolumeId(), item.getStatus(), item.getStartTime().toGregorianCalendar(), item.getProgress(), item.getOwnerId(), item.getVolumeSize(), item.getDescription(), item.getOwnerAlias()); result.add(vol); } return result; } /** * Changes permissions settings of a snapshot. * * @param snapshotId the snapshot you are addressing * @param attribute for now, should be "createVolumePermission" * @param opType either add or remove * @param userId optional userId (this or userGroup); * @param userGroup optional userGroup (this or userId) * @throws EC2Exception wraps checked exceptions */ public void modifySnapshotAttribute(String snapshotId, String attribute, OperationType opType, String userId, String userGroup) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("SnapshotId", snapshotId); if (userId != null) { params.put("UserId", userId); } if (userGroup != null) { params.put("UserGroup", userGroup); } params.put("Attribute", attribute); params.put("OperationType", opType.getTypeId()); HttpGet method = new HttpGet(); ModifySnapshotAttributeResponse response = makeRequestInt(method, "ModifySnapshotAttribute", params, ModifySnapshotAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not modify snapshot attribute : "+attribute+". No reason given."); } } /** * Resets an attribute on a snapshot. * * @param snapshotId The snapshot to reset the attribute on. * @param attribute The attribute to reset (currently just "createVolumePermission"). * @throws EC2Exception wraps checked exceptions */ public void resetSnapshotAttribute(String snapshotId, String attribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("SnapshotId", snapshotId); params.put("Attribute", attribute); HttpGet method = new HttpGet(); ResetSnapshotAttributeResponse response = makeRequestInt(method, "ResetSnapshotAttribute", params, ResetSnapshotAttributeResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not reset snapshot attribute. No reason given."); } } /** * Describes an attribute of a snapshot. * * @param snapshotId The snapshot for which the attribute is described. * @param attribute The attribute to describe (createVolumePermission). * @return An object containing the snapshotId and a list of list attribute item types and values. * @throws EC2Exception wraps checked exceptions */ public DescribeSnapshotAttributeResult describeSnapshotAttribute(String snapshotId, String attribute) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("SnapshotId", snapshotId); params.put("Attribute", attribute); HttpGet method = new HttpGet(); DescribeSnapshotAttributeResponse response = makeRequestInt(method, "DescribeSnapshotAttribute", params, DescribeSnapshotAttributeResponse.class); DescribeSnapshotAttributeResult ret = new DescribeSnapshotAttributeResult(response.getSnapshotId()); List<CreateVolumePermissionItemType> list = response.getCreateVolumePermission().getItems(); if (list != null) { for (CreateVolumePermissionItemType item : list) { ret.addCreateVolumePermission(item.getUserId(), item.getGroup()); } } return ret; } /** * Returns a list of regions * * @param regions a list of regions to limit the results, or null * @return a list of regions and endpoints * @throws EC2Exception wraps checked exceptions */ public List<RegionInfo> describeRegions(List<String> regions) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (regions != null && regions.size() > 0) { for (int i=0 ; i<regions.size(); i++) { params.put("Region."+(i+1), regions.get(i)); } } HttpGet method = new HttpGet(); DescribeRegionsResponse response = makeRequestInt(method, "DescribeRegions", params, DescribeRegionsResponse.class); List<RegionInfo> ret = new ArrayList<RegionInfo>(); RegionSetType set = response.getRegionInfo(); Iterator set_iter = set.getItems().iterator(); while (set_iter.hasNext()) { RegionItemType item = (RegionItemType) set_iter.next(); ret.add(new RegionInfo(item.getRegionName(), item.getRegionEndpoint())); } return ret; } /** * Sets the region to use. * * @param region the region to use, from describeRegions() */ public void setRegion(RegionInfo region) { setServer(region.getUrl()); } /** * Sets the region Url to use. * * @param region the region Url to use from RegionInfo.getUrl() */ public void setRegionUrl(String regionUrl) { setServer(regionUrl); } /** * Initiates bundling of an instance running Windows. * * @param instanceId the Id of the instance to bundle * @param accessId the accessId of the owner of the S3 bucket * @param bucketName the name of the S3 bucket in which the AMi will be stored * @param prefix the prefix to append to the AMI * @param policy an UploadPolicy object containing policy parameters * @return information about the bundle task * @throws EC2Exception wraps checked exceptions */ public BundleInstanceInfo bundleInstance(String instanceId, String accessId, String bucketName, String prefix, UploadPolicy policy) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("InstanceId", instanceId); params.put("Storage.S3.AWSAccessKeyId", accessId); params.put("Storage.S3.Bucket", bucketName); params.put("Storage.S3.Prefix", prefix); String jsonPolicy = policy.getPolicyString(); params.put("Storage.S3.UploadPolicy", jsonPolicy); params.put("Storage.S3.UploadPolicySignature", encode(getSecretAccessKey(), jsonPolicy, false, "HmacSHA1")); HttpGet method = new HttpGet(); BundleInstanceResponse response = makeRequestInt(method, "BundleInstance", params, BundleInstanceResponse.class); BundleInstanceTaskType task = response.getBundleInstanceTask(); return new BundleInstanceInfo(response.getRequestId(), task.getInstanceId(), task.getBundleId(), task.getState(), task.getStartTime().toGregorianCalendar(), task.getUpdateTime().toGregorianCalendar(), task.getStorage(), task.getProgress(), task.getError()); } /** * Cancel a bundling operation. * * @param bundleId the Id of the bundle task to cancel * @return information about the cancelled task * @throws EC2Exception wraps checked exceptions */ public BundleInstanceInfo cancelBundleInstance(String bundleId) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("BundleId", bundleId); HttpGet method = new HttpGet(); CancelBundleTaskResponse response = makeRequestInt(method, "CancelBundleTask", params, CancelBundleTaskResponse.class); BundleInstanceTaskType task = response.getBundleInstanceTask(); return new BundleInstanceInfo(response.getRequestId(), task.getInstanceId(), task.getBundleId(), task.getState(), task.getStartTime().toGregorianCalendar(), task.getUpdateTime().toGregorianCalendar(), task.getStorage(), task.getProgress(), task.getError()); } /** * Returns a list of current bundling tasks. An empty array causes all tasks to be returned. * * @param bundleIds the Ids of the bundle task to describe * @return information about the cancelled task * @throws EC2Exception wraps checked exceptions */ public List<BundleInstanceInfo> describeBundleTasks(String [] bundleIds) throws EC2Exception { return this.describeBundleTasks(Arrays.asList(bundleIds)); } /** * Returns a list of current bundling tasks. An empty list causes all tasks to be returned. * * @param bundleIds the Ids of the bundle task to describe * @return information about the cancelled task * @throws EC2Exception wraps checked exceptions */ public List<BundleInstanceInfo> describeBundleTasks(List<String> bundleIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<bundleIds.size(); i++) { params.put("BundleId."+(i+1), bundleIds.get(i)); } HttpGet method = new HttpGet(); DescribeBundleTasksResponse response = makeRequestInt(method, "DescribeBundleTasks", params, DescribeBundleTasksResponse.class); List<BundleInstanceInfo> ret = new ArrayList<BundleInstanceInfo>(); Iterator task_iter = response.getBundleInstanceTasksSet().getItems().iterator(); while (task_iter.hasNext()) { BundleInstanceTaskType task = (BundleInstanceTaskType) task_iter.next(); ret.add(new BundleInstanceInfo(response.getRequestId(), task.getInstanceId(), task.getBundleId(), task.getState(), task.getStartTime().toGregorianCalendar(), task.getUpdateTime().toGregorianCalendar(), task.getStorage(), task.getProgress(), task.getError())); } return ret; } /** * Returns a list of Reserved Instance offerings that are available for purchase. * * @param instanceIds specific reserved instance offering ids to return * @throws EC2Exception wraps checked exceptions */ public List<ReservedInstances> describeReservedInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (instanceIds != null) { for (int i=0 ; i<instanceIds.size(); i++) { params.put("ReservedInstanceId."+(i+1), instanceIds.get(i)); } } HttpGet method = new HttpGet(); DescribeReservedInstancesResponse response = makeRequestInt(method, "DescribeReservedInstances", params, DescribeReservedInstancesResponse.class); List<ReservedInstances> ret = new ArrayList<ReservedInstances>(); Iterator task_iter = response.getReservedInstancesSet().getItems().iterator(); while (task_iter.hasNext()) { DescribeReservedInstancesResponseSetItemType type = (DescribeReservedInstancesResponseSetItemType) task_iter.next(); ret.add(new ReservedInstances(type.getReservedInstancesId(), InstanceType.getTypeFromString(type.getInstanceType()), type.getAvailabilityZone(), type.getStart().toGregorianCalendar(), type.getDuration(), type.getFixedPrice(), type.getUsagePrice(), type.getProductDescription(), type.getInstanceCount().intValue(), type.getState())); } return ret; } /** * Returns a list of Reserved Instance offerings that are available for purchase. * * @param offeringIds specific reserved instance offering ids to return * @param instanceType the type of instance offering to be returned * @param availabilityZone the availability zone to get offerings for * @param productDescription limit results to those with a matching product description * @return a list of product descriptions * @throws EC2Exception wraps checked exceptions */ public List<ProductDescription> describeReservedInstancesOfferings(List<String> offeringIds, InstanceType instanceType, String availabilityZone, String productDescription) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (offeringIds != null) { for (int i=0 ; i<offeringIds.size(); i++) { params.put("ReservedInstancesOfferingId."+(i+1), offeringIds.get(i)); } } if (instanceType != null) { params.put("InstanceType", instanceType.getTypeId()); } if (availabilityZone != null) { params.put("AvailabilityZone", availabilityZone); } if (productDescription != null) { params.put("ProductDescription", productDescription); } HttpGet method = new HttpGet(); DescribeReservedInstancesOfferingsResponse response = makeRequestInt(method, "DescribeReservedInstancesOfferings", params, DescribeReservedInstancesOfferingsResponse.class); List<ProductDescription> ret = new ArrayList<ProductDescription>(); Iterator task_iter = response.getReservedInstancesOfferingsSet().getItems().iterator(); while (task_iter.hasNext()) { DescribeReservedInstancesOfferingsResponseSetItemType type = (DescribeReservedInstancesOfferingsResponseSetItemType) task_iter.next(); ret.add(new ProductDescription(type.getReservedInstancesOfferingId(), InstanceType.getTypeFromString(type.getInstanceType()), type.getAvailabilityZone(), type.getDuration(), type.getFixedPrice(), type.getUsagePrice(), type.getProductDescription())); } return ret; } /** * This method purchases a reserved instance offering. * * NOTE: Use With Caution!!! This can cost a lot of money! * * @param offeringId the id of the offering to purchase * @param instanceCount the number of instances to reserve * @return id of reserved instances * @throws EC2Exception wraps checked exceptions */ public String purchaseReservedInstancesOffering(String offeringId, int instanceCount) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("ReservedInstancesOfferingId", offeringId); params.put("InstanceCount", ""+instanceCount); HttpGet method = new HttpGet(); PurchaseReservedInstancesOfferingResponse response = makeRequestInt(method, "PurchaseReservedInstancesOffering", params, PurchaseReservedInstancesOfferingResponse.class); return response.getReservedInstancesId(); } /** * This method enables monitoring for some instances * * @param instanceIds the id of the instances to enable monitoring for * @return information about the monitoring state of those instances * @throws EC2Exception wraps checked exceptions */ public List<MonitoredInstanceInfo> monitorInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); MonitorInstancesResponseType response = makeRequestInt(method, "MonitorInstances", params, MonitorInstancesResponseType.class); List<MonitoredInstanceInfo> ret = new ArrayList<MonitoredInstanceInfo>(); for (MonitorInstancesResponseSetItemType item : response.getInstancesSet().getItems()) { ret.add(new MonitoredInstanceInfo(item.getInstanceId(), item.getMonitoring().getState())); } return ret; } /** * This method disables monitoring for some instances * * @param instanceIds the id of the instances to disable monitoring for * @return information about the monitoring state of those instances * @throws EC2Exception wraps checked exceptions */ public List<MonitoredInstanceInfo> unmonitorInstances(List<String> instanceIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<instanceIds.size(); i++) { params.put("InstanceId."+(i+1), instanceIds.get(i)); } HttpGet method = new HttpGet(); MonitorInstancesResponseType response = makeRequestInt(method, "UnmonitorInstances", params, MonitorInstancesResponseType.class); List<MonitoredInstanceInfo> ret = new ArrayList<MonitoredInstanceInfo>(); for (MonitorInstancesResponseSetItemType item : response.getInstancesSet().getItems()) { ret.add(new MonitoredInstanceInfo(item.getInstanceId(), item.getMonitoring().getState())); } return ret; } public List<SpotPriceHistoryItem> describeSpotPriceHistory(Calendar start, Calendar end, String productDescription, InstanceType... instanceTypes) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); if (start != null) { params.put("StartTime", httpDate(start)); } if (end != null) { params.put("EndTime", httpDate(end)); } if (productDescription != null) { params.put("ProductDescription", productDescription); } for (int i = 0; i < instanceTypes.length; i++) { InstanceType instanceType = instanceTypes[i]; params.put("InstanceType." + (i + 1), instanceType.getTypeId()); } HttpGet method = new HttpGet(); List<SpotPriceHistoryItem> ret = new ArrayList<SpotPriceHistoryItem>(); DescribeSpotPriceHistoryResponse response = makeRequestInt(method, "DescribeSpotPriceHistory", params, DescribeSpotPriceHistoryResponse.class); List<SpotPriceHistorySetItemType> items = response.getSpotPriceHistorySet().getItems(); if (items != null) { for (SpotPriceHistorySetItemType item : items) { ret.add(new SpotPriceHistoryItem(item)); } } return ret; } public List<SpotInstanceRequest> describeSpotInstanceRequests() throws EC2Exception { HttpGet method = new HttpGet(); List<SpotInstanceRequest> ret = new ArrayList<SpotInstanceRequest>(); DescribeSpotInstanceRequestsResponse response = makeRequestInt(method, "DescribeSpotInstanceRequests", null, DescribeSpotInstanceRequestsResponse.class); List<SpotInstanceRequestSetItemType> items = response.getSpotInstanceRequestSet().getItems(); if (items != null) { for (SpotInstanceRequestSetItemType item : items) { ret.add(new SpotInstanceRequest(item)); } } return ret; } public List<SpotInstanceRequest> requestSpotInstances(SpotInstanceRequestConfiguration sirc, LaunchConfiguration lc) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); lc.prepareQueryParams("LaunchSpecification.", false, params); sirc.prepareQueryParams(params); HttpGet method = new HttpGet(); List<SpotInstanceRequest> ret = new ArrayList<SpotInstanceRequest>(); RequestSpotInstancesResponse response = makeRequestInt(method, "RequestSpotInstances", params, RequestSpotInstancesResponse.class); List<SpotInstanceRequestSetItemType> items = response.getSpotInstanceRequestSet().getItems(); if (items != null) { for (SpotInstanceRequestSetItemType item : items) { ret.add(new SpotInstanceRequest(item)); } } return ret; } public List<SpotInstanceCancellationResponse> cancelSpotInstanceRequests(String... sirIds) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i = 0; i < sirIds.length; i++) { params.put("SpotInstanceRequestId." + (i + 1), sirIds[i]); } HttpGet method = new HttpGet(); List<SpotInstanceCancellationResponse> ret = new ArrayList<SpotInstanceCancellationResponse>(); CancelSpotInstanceRequestsResponse response = makeRequestInt(method, "CancelSpotInstanceRequests", params, CancelSpotInstanceRequestsResponse.class); List<CancelSpotInstanceRequestsResponseSetItemType> items = response.getSpotInstanceRequestSet().getItems(); if (items != null) { for (CancelSpotInstanceRequestsResponseSetItemType item : items) { ret.add(new SpotInstanceCancellationResponse(item)); } } return ret; } /** * This method creates the spot datafeed subscription (for spot usage logs) * * @param bucket the bucket to store the feed in * @param prefix the prefix used with the datafeed files * @return information about the subscription * @throws EC2Exception wraps checked exceptions */ public SpotDatafeedSubscription createSpotDatafeedSubscription(String bucket, String prefix) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("Bucket", bucket); if (prefix != null && !prefix.trim().equals("")) { params.put("Prefix", prefix); } HttpGet method = new HttpGet(); CreateSpotDatafeedSubscriptionResponse response = makeRequestInt(method, "CreateSpotDatafeedSubscription", params, CreateSpotDatafeedSubscriptionResponse.class); return new SpotDatafeedSubscription(response.getRequestId(), response.getSpotDatafeedSubscription()); } /** * This method describes the spot datafeed subscription * * @return information about the subscription * @throws EC2Exception wraps checked exceptions */ public SpotDatafeedSubscription describeSpotDatafeedSubscription() throws EC2Exception { HttpGet method = new HttpGet(); DescribeSpotDatafeedSubscriptionResponse response = makeRequestInt(method, "DescribeSpotDatafeedSubscription", null, DescribeSpotDatafeedSubscriptionResponse.class); return new SpotDatafeedSubscription(response.getRequestId(), response.getSpotDatafeedSubscription()); } /** * This method deletes the spot datafeed subscription * * @throws EC2Exception wraps checked exceptions */ public void deleteSpotDatafeedSubscription() throws EC2Exception { HttpGet method = new HttpGet(); DeleteSpotDatafeedSubscriptionResponse response = makeRequestInt(method, "DeleteSpotDatafeedSubscription", null, DeleteSpotDatafeedSubscriptionResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not delete subscription. No reason given."); } } /** * Creates a placement group to launch cluster compute instances into. * * @param groupName the name of the group you're creating * @param strategy placement strategy ("cluster") * @throws EC2Exception wraps checked exceptions */ public void createPlacementGroup(String groupName, String strategy) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GropuName", groupName); params.put("Stategy", strategy); HttpGet method = new HttpGet(); CreatePlacementGroupResponse response = makeRequestInt(method, "CreatePlacementGroup", params, CreatePlacementGroupResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not create placement group. No reason given."); } } /** * Deletes a placement group. * * @param groupName the name of the group you're creating * @throws EC2Exception wraps checked exceptions */ public void deletePlacementGroup(String groupName) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); params.put("GropuName", groupName); HttpGet method = new HttpGet(); DeletePlacementGroupResponse response = makeRequestInt(method, "DeletePlacementGroup", params, DeletePlacementGroupResponse.class); if (!response.isReturn()) { throw new EC2Exception("Could not delete placement group. No reason given."); } } /** * This method describes the placement groups. * * @param groupNames names of 1 or more groups to get information about, null for all groups * @return information about the groups * @throws EC2Exception wraps checked exceptions */ public List<PlacementGroupInfo> describePlacementGroups(List<String> groupNames) throws EC2Exception { Map<String, String> params = new HashMap<String, String>(); for (int i=0 ; i<groupNames.size(); i++) { params.put("GroupName."+(i+1), groupNames.get(i)); } HttpGet method = new HttpGet(); DescribePlacementGroupsResponse response = makeRequestInt(method, "DescribePlacementGroups", params, DescribePlacementGroupsResponse.class); List<PlacementGroupInfo> ret = new ArrayList<PlacementGroupInfo>(); List<PlacementGroupInfoType> items = response.getPlacementGroupSet().getItems(); if (items != null) { for (PlacementGroupInfoType item : items) { ret.add(new PlacementGroupInfo(response.getRequestId(), item.getGroupName(), item.getStrategy(), item.getState())); } } return ret; } protected <T> T makeRequestInt(HttpRequestBase method, String action, Map<String, String> params, Class<T> respType) throws EC2Exception { try { return makeRequest(method, action, params, respType); } catch (AWSException ex) { throw new EC2Exception(ex); } catch (JAXBException ex) { throw new EC2Exception("Problem parsing returned message.", ex); } catch (SAXException ex) { throw new EC2Exception("Problem parsing returned message.", ex); } catch (MalformedURLException ex) { throw new EC2Exception(ex.getMessage(), ex); } catch (IOException ex) { throw new EC2Exception(ex.getMessage(), ex); } catch (HttpException ex) { throw new EC2Exception(ex.getMessage(), ex); } } }