Merge pull request #1261 from jclouds/aws-action-names

changed aws apis to use Action key for config instead of more verbose iam names
This commit is contained in:
Adrian Cole 2013-01-29 05:53:06 -08:00
commit 5aa41d07aa
32 changed files with 217 additions and 217 deletions

View File

@ -63,7 +63,7 @@ public interface MetricAsyncApi {
/** /**
* @see MetricApi#list() * @see MetricApi#list()
*/ */
@Named("cloudwatch:ListMetrics") @Named("ListMetrics")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(ListMetricsResponseHandler.class) @XMLResponseParser(ListMetricsResponseHandler.class)
@ -75,7 +75,7 @@ public interface MetricAsyncApi {
/** /**
* @see MetricApi#list(ListMetricsOptions) * @see MetricApi#list(ListMetricsOptions)
*/ */
@Named("cloudwatch:ListMetrics") @Named("ListMetrics")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(ListMetricsResponseHandler.class) @XMLResponseParser(ListMetricsResponseHandler.class)
@ -86,7 +86,7 @@ public interface MetricAsyncApi {
/** /**
* @see MetricApi#getMetricStatistics(GetMetricStatistics) * @see MetricApi#getMetricStatistics(GetMetricStatistics)
*/ */
@Named("cloudwatch:GetMetricStatistics") @Named("GetMetricStatistics")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(GetMetricStatisticsResponseHandlerV2.class) @XMLResponseParser(GetMetricStatisticsResponseHandlerV2.class)
@ -97,7 +97,7 @@ public interface MetricAsyncApi {
/** /**
* @see MetricApi#getMetricStatistics(GetMetricStatistics, GetMetricStatisticsOptions) * @see MetricApi#getMetricStatistics(GetMetricStatistics, GetMetricStatisticsOptions)
*/ */
@Named("cloudwatch:GetMetricStatistics") @Named("GetMetricStatistics")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(GetMetricStatisticsResponseHandlerV2.class) @XMLResponseParser(GetMetricStatisticsResponseHandlerV2.class)
@ -109,7 +109,7 @@ public interface MetricAsyncApi {
/** /**
* @see MetricApi#putMetricsInNamespace(Iterable, String) * @see MetricApi#putMetricsInNamespace(Iterable, String)
*/ */
@Named("cloudwatch:PutMetricData") @Named("PutMetricData")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = "Action", values = "PutMetricData") @FormParams(keys = "Action", values = "PutMetricData")

View File

@ -65,7 +65,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateTags.html">docs</a>
*/ */
@Named("ec2:CreateTags") @Named("CreateTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateTags") @FormParams(keys = ACTION, values = "CreateTags")
@ -77,7 +77,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateTags.html">docs</a>
*/ */
@Named("ec2:CreateTags") @Named("CreateTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateTags") @FormParams(keys = ACTION, values = "CreateTags")
@ -89,7 +89,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html">docs</a>
*/ */
@Named("ec2:DescribeTags") @Named("DescribeTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeTags") @FormParams(keys = ACTION, values = "DescribeTags")
@ -102,7 +102,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html">docs</a>
*/ */
@Named("ec2:DescribeTags") @Named("DescribeTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeTags") @FormParams(keys = ACTION, values = "DescribeTags")
@ -116,7 +116,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteTags.html">docs</a>
*/ */
@Named("ec2:DeleteTags") @Named("DeleteTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteTags") @FormParams(keys = ACTION, values = "DeleteTags")
@ -129,7 +129,7 @@ public interface TagAsyncApi {
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteTags.html">docs</a> * href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteTags.html">docs</a>
*/ */
@Named("ec2:DeleteTags") @Named("DeleteTags")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteTags") @FormParams(keys = ACTION, values = "DeleteTags")

View File

@ -56,7 +56,7 @@ public interface WindowsAsyncApi {
/** /**
* @see WindowsApi#getPasswordDataForInstance * @see WindowsApi#getPasswordDataForInstance
*/ */
@Named("ec2:GetPasswordData") @Named("GetPasswordData")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetPasswordData") @FormParams(keys = ACTION, values = "GetPasswordData")

View File

@ -68,7 +68,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#describeImagesInRegion * @see AMIClient#describeImagesInRegion
*/ */
@Named("ec2:DescribeImages") @Named("DescribeImages")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeImages") @FormParams(keys = ACTION, values = "DescribeImages")
@ -81,7 +81,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#createImageInRegion * @see AMIClient#createImageInRegion
*/ */
@Named("ec2:CreateImage") @Named("CreateImage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateImage") @FormParams(keys = ACTION, values = "CreateImage")
@ -93,7 +93,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#deregisterImageInRegion * @see AMIClient#deregisterImageInRegion
*/ */
@Named("ec2:DeregisterImage") @Named("DeregisterImage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeregisterImage") @FormParams(keys = ACTION, values = "DeregisterImage")
@ -104,7 +104,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#registerImageFromManifestInRegion * @see AMIClient#registerImageFromManifestInRegion
*/ */
@Named("ec2:RegisterImage") @Named("RegisterImage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RegisterImage") @FormParams(keys = ACTION, values = "RegisterImage")
@ -117,7 +117,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#registerUnixImageBackedByEbsInRegion * @see AMIClient#registerUnixImageBackedByEbsInRegion
*/ */
@Named("ec2:RegisterImage") @Named("RegisterImage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "RootDeviceName", "BlockDeviceMapping.0.DeviceName" }, values = { "RegisterImage", @FormParams(keys = { ACTION, "RootDeviceName", "BlockDeviceMapping.0.DeviceName" }, values = { "RegisterImage",
@ -132,7 +132,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#resetLaunchPermissionsOnImageInRegion * @see AMIClient#resetLaunchPermissionsOnImageInRegion
*/ */
@Named("ec2:ResetImageAttribute") @Named("ResetImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ResetImageAttribute", "launchPermission" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ResetImageAttribute", "launchPermission" })
@ -143,7 +143,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#addLaunchPermissionsToImageInRegion * @see AMIClient#addLaunchPermissionsToImageInRegion
*/ */
@Named("ec2:ModifyImageAttribute") @Named("ModifyImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "add", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "add",
@ -157,7 +157,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#removeLaunchPermissionsToImageInRegion * @see AMIClient#removeLaunchPermissionsToImageInRegion
*/ */
@Named("ec2:ModifyImageAttribute") @Named("ModifyImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "remove", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "remove",
@ -171,7 +171,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#getLaunchPermissionForImageInRegion * @see AMIClient#getLaunchPermissionForImageInRegion
*/ */
@Named("ec2:DescribeImageAttribute") @Named("DescribeImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "launchPermission" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "launchPermission" })
@ -183,7 +183,7 @@ public interface AMIAsyncClient {
/** /**
* @see AMIClient#getBlockDeviceMappingsForImageInRegion * @see AMIClient#getBlockDeviceMappingsForImageInRegion
*/ */
@Named("ec2:DescribeImageAttribute") @Named("DescribeImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "blockDeviceMapping" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "blockDeviceMapping" })

View File

@ -59,7 +59,7 @@ public interface AvailabilityZoneAndRegionAsyncClient {
/** /**
* @see AvailabilityZoneAndRegionClient#describeAvailabilityZonesInRegion * @see AvailabilityZoneAndRegionClient#describeAvailabilityZonesInRegion
*/ */
@Named("ec2:DescribeAvailabilityZones") @Named("DescribeAvailabilityZones")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeAvailabilityZones") @FormParams(keys = ACTION, values = "DescribeAvailabilityZones")
@ -72,7 +72,7 @@ public interface AvailabilityZoneAndRegionAsyncClient {
/** /**
* @see AvailabilityZoneAndRegionClient#describeRegions * @see AvailabilityZoneAndRegionClient#describeRegions
*/ */
@Named("ec2:DescribeRegions") @Named("DescribeRegions")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeRegions") @FormParams(keys = ACTION, values = "DescribeRegions")

View File

@ -72,7 +72,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#createVolumeFromSnapshotInAvailabilityZone * @see ElasticBlockStoreClient#createVolumeFromSnapshotInAvailabilityZone
*/ */
@Named("ec2:CreateVolume") @Named("CreateVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateVolume") @FormParams(keys = ACTION, values = "CreateVolume")
@ -84,7 +84,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#createVolumeFromSnapshotInAvailabilityZone * @see ElasticBlockStoreClient#createVolumeFromSnapshotInAvailabilityZone
*/ */
@Named("ec2:CreateVolume") @Named("CreateVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateVolume") @FormParams(keys = ACTION, values = "CreateVolume")
@ -96,7 +96,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#createVolumeInAvailabilityZone * @see ElasticBlockStoreClient#createVolumeInAvailabilityZone
*/ */
@Named("ec2:CreateVolume") @Named("CreateVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateVolume") @FormParams(keys = ACTION, values = "CreateVolume")
@ -109,7 +109,7 @@ public interface ElasticBlockStoreAsyncClient {
* @see ElasticBlockStoreClient#describeVolumesInRegion * @see ElasticBlockStoreClient#describeVolumesInRegion
*/ */
@POST @POST
@Named("ec2:DescribeVolumes") @Named("DescribeVolumes")
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeVolumes") @FormParams(keys = ACTION, values = "DescribeVolumes")
@XMLResponseParser(DescribeVolumesResponseHandler.class) @XMLResponseParser(DescribeVolumesResponseHandler.class)
@ -120,7 +120,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#deleteVolumeInRegion * @see ElasticBlockStoreClient#deleteVolumeInRegion
*/ */
@Named("ec2:DeleteVolume") @Named("DeleteVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteVolume") @FormParams(keys = ACTION, values = "DeleteVolume")
@ -130,7 +130,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#detachVolumeInRegion * @see ElasticBlockStoreClient#detachVolumeInRegion
*/ */
@Named("ec2:DetachVolume") @Named("DetachVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DetachVolume") @FormParams(keys = ACTION, values = "DetachVolume")
@ -141,7 +141,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#attachVolumeInRegion * @see ElasticBlockStoreClient#attachVolumeInRegion
*/ */
@Named("ec2:AttachVolume") @Named("AttachVolume")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AttachVolume") @FormParams(keys = ACTION, values = "AttachVolume")
@ -154,7 +154,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#createSnapshotInRegion * @see ElasticBlockStoreClient#createSnapshotInRegion
*/ */
@Named("ec2:CreateSnapshot") @Named("CreateSnapshot")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateSnapshot") @FormParams(keys = ACTION, values = "CreateSnapshot")
@ -166,7 +166,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#describeSnapshotsInRegion * @see ElasticBlockStoreClient#describeSnapshotsInRegion
*/ */
@Named("ec2:DescribeSnapshots") @Named("DescribeSnapshots")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeSnapshots") @FormParams(keys = ACTION, values = "DescribeSnapshots")
@ -179,7 +179,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#deleteSnapshotInRegion * @see ElasticBlockStoreClient#deleteSnapshotInRegion
*/ */
@Named("ec2:DeleteSnapshot") @Named("DeleteSnapshot")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteSnapshot") @FormParams(keys = ACTION, values = "DeleteSnapshot")
@ -190,7 +190,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#addCreateVolumePermissionsToSnapshotInRegion * @see ElasticBlockStoreClient#addCreateVolumePermissionsToSnapshotInRegion
*/ */
@Named("ec2:ModifySnapshotAttribute") @Named("ModifySnapshotAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifySnapshotAttribute", "add", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifySnapshotAttribute", "add",
@ -204,7 +204,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#removeCreateVolumePermissionsFromSnapshotInRegion * @see ElasticBlockStoreClient#removeCreateVolumePermissionsFromSnapshotInRegion
*/ */
@Named("ec2:ModifySnapshotAttribute") @Named("ModifySnapshotAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifySnapshotAttribute", "remove", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifySnapshotAttribute", "remove",
@ -218,7 +218,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#getCreateVolumePermissionForSnapshotInRegion * @see ElasticBlockStoreClient#getCreateVolumePermissionForSnapshotInRegion
*/ */
@Named("ec2:DescribeSnapshotAttribute") @Named("DescribeSnapshotAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeSnapshotAttribute", "createVolumePermission" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeSnapshotAttribute", "createVolumePermission" })
@ -230,7 +230,7 @@ public interface ElasticBlockStoreAsyncClient {
/** /**
* @see ElasticBlockStoreClient#resetCreateVolumePermissionsOnSnapshotInRegion * @see ElasticBlockStoreClient#resetCreateVolumePermissionsOnSnapshotInRegion
*/ */
@Named("ec2:ResetSnapshotAttribute") @Named("ResetSnapshotAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ResetSnapshotAttribute", "createVolumePermission" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ResetSnapshotAttribute", "createVolumePermission" })

View File

@ -58,7 +58,7 @@ public interface ElasticIPAddressAsyncClient {
/** /**
* @see BaseEC2Client#allocateAddressInRegion * @see BaseEC2Client#allocateAddressInRegion
*/ */
@Named("ec2:AllocateAddress") @Named("AllocateAddress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(AllocateAddressResponseHandler.class) @XMLResponseParser(AllocateAddressResponseHandler.class)
@ -69,7 +69,7 @@ public interface ElasticIPAddressAsyncClient {
/** /**
* @see BaseEC2Client#associateAddressInRegion * @see BaseEC2Client#associateAddressInRegion
*/ */
@Named("ec2:AssociateAddress") @Named("AssociateAddress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AssociateAddress") @FormParams(keys = ACTION, values = "AssociateAddress")
@ -80,7 +80,7 @@ public interface ElasticIPAddressAsyncClient {
/** /**
* @see BaseEC2Client#disassociateAddressInRegion * @see BaseEC2Client#disassociateAddressInRegion
*/ */
@Named("ec2:DisassociateAddress") @Named("DisassociateAddress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DisassociateAddress") @FormParams(keys = ACTION, values = "DisassociateAddress")
@ -91,7 +91,7 @@ public interface ElasticIPAddressAsyncClient {
/** /**
* @see BaseEC2Client#releaseAddressInRegion * @see BaseEC2Client#releaseAddressInRegion
*/ */
@Named("ec2:ReleaseAddress") @Named("ReleaseAddress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ReleaseAddress") @FormParams(keys = ACTION, values = "ReleaseAddress")
@ -102,7 +102,7 @@ public interface ElasticIPAddressAsyncClient {
/** /**
* @see BaseEC2Client#describeAddressesInRegion * @see BaseEC2Client#describeAddressesInRegion
*/ */
@Named("ec2:DescribeAddresses") @Named("DescribeAddresses")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeAddresses") @FormParams(keys = ACTION, values = "DescribeAddresses")

View File

@ -76,7 +76,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#describeInstancesInRegion * @see InstanceClient#describeInstancesInRegion
*/ */
@Named("ec2:DescribeInstances") @Named("DescribeInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeInstances") @FormParams(keys = ACTION, values = "DescribeInstances")
@ -89,7 +89,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#runInstancesInRegion * @see InstanceClient#runInstancesInRegion
*/ */
@Named("ec2:RunInstances") @Named("RunInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RunInstances") @FormParams(keys = ACTION, values = "RunInstances")
@ -103,7 +103,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#rebootInstancesInRegion * @see InstanceClient#rebootInstancesInRegion
*/ */
@Named("ec2:RebootInstances") @Named("RebootInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RebootInstances") @FormParams(keys = ACTION, values = "RebootInstances")
@ -114,7 +114,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#terminateInstancesInRegion * @see InstanceClient#terminateInstancesInRegion
*/ */
@Named("ec2:TerminateInstances") @Named("TerminateInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "TerminateInstances") @FormParams(keys = ACTION, values = "TerminateInstances")
@ -127,7 +127,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#stopInstancesInRegion * @see InstanceClient#stopInstancesInRegion
*/ */
@Named("ec2:StopInstances") @Named("StopInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "StopInstances") @FormParams(keys = ACTION, values = "StopInstances")
@ -140,7 +140,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#startInstancesInRegion * @see InstanceClient#startInstancesInRegion
*/ */
@Named("ec2:StartInstances") @Named("StartInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "StartInstances") @FormParams(keys = ACTION, values = "StartInstances")
@ -152,7 +152,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getUserDataForInstanceInRegion * @see AMIClient#getUserDataForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "userData" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "userData" })
@ -164,7 +164,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getRootDeviceNameForInstanceInRegion * @see AMIClient#getRootDeviceNameForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "rootDeviceName" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "rootDeviceName" })
@ -176,7 +176,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getRamdiskForInstanceInRegion * @see AMIClient#getRamdiskForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "ramdisk" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "ramdisk" })
@ -188,7 +188,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getKernelForInstanceInRegion * @see AMIClient#getKernelForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "kernel" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "kernel" })
@ -200,7 +200,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#isApiTerminationDisabledForInstanceInRegion * @see AMIClient#isApiTerminationDisabledForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "disableApiTermination" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "disableApiTermination" })
@ -212,7 +212,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getInstanceTypeForInstanceInRegion * @see AMIClient#getInstanceTypeForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "instanceType" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "instanceType" })
@ -224,7 +224,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#getInstanceInitiatedShutdownBehaviorForInstanceInRegion * @see AMIClient#getInstanceInitiatedShutdownBehaviorForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute",
@ -237,7 +237,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#getBlockDeviceMappingForInstanceInRegion * @see InstanceClient#getBlockDeviceMappingForInstanceInRegion
*/ */
@Named("ec2:DescribeInstanceAttribute") @Named("DescribeInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "blockDeviceMapping" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeInstanceAttribute", "blockDeviceMapping" })
@ -249,7 +249,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#resetRamdiskForInstanceInRegion * @see AMIClient#resetRamdiskForInstanceInRegion
*/ */
@Named("ec2:ResetInstanceAttribute") @Named("ResetInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ResetInstanceAttribute", "ramdisk" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ResetInstanceAttribute", "ramdisk" })
@ -260,7 +260,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#resetKernelForInstanceInRegion * @see AMIClient#resetKernelForInstanceInRegion
*/ */
@Named("ec2:ResetInstanceAttribute") @Named("ResetInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ResetInstanceAttribute", "kernel" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ResetInstanceAttribute", "kernel" })
@ -271,7 +271,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setUserDataForInstanceInRegion * @see AMIClient#setUserDataForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "userData" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "userData" })
@ -283,7 +283,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setRamdiskForInstanceInRegion * @see AMIClient#setRamdiskForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "ramdisk" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "ramdisk" })
@ -294,7 +294,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setKernelForInstanceInRegion * @see AMIClient#setKernelForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "kernel" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "kernel" })
@ -305,7 +305,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setApiTerminationDisabledForInstanceInRegion * @see AMIClient#setApiTerminationDisabledForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "disableApiTermination" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "disableApiTermination" })
@ -316,7 +316,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setInstanceTypeForInstanceInRegion * @see AMIClient#setInstanceTypeForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "instanceType" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", "instanceType" })
@ -327,7 +327,7 @@ public interface InstanceAsyncClient {
/** /**
* @see AMIClient#setInstanceInitiatedShutdownBehaviorForInstanceInRegion * @see AMIClient#setInstanceInitiatedShutdownBehaviorForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute", @FormParams(keys = { ACTION, "Attribute" }, values = { "ModifyInstanceAttribute",
@ -340,7 +340,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#setBlockDeviceMappingForInstanceInRegion * @see InstanceClient#setBlockDeviceMappingForInstanceInRegion
*/ */
@Named("ec2:ModifyInstanceAttribute") @Named("ModifyInstanceAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION }, values = { "ModifyInstanceAttribute" }) @FormParams(keys = { ACTION }, values = { "ModifyInstanceAttribute" })
@ -352,7 +352,7 @@ public interface InstanceAsyncClient {
/** /**
* @see InstanceClient#getConsoleOutputForInstanceInRegion(String, String) * @see InstanceClient#getConsoleOutputForInstanceInRegion(String, String)
*/ */
@Named("ec2:GetConsoleOutput") @Named("GetConsoleOutput")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION }, values = { "GetConsoleOutput" }) @FormParams(keys = { ACTION }, values = { "GetConsoleOutput" })

View File

@ -58,7 +58,7 @@ public interface KeyPairAsyncClient {
/** /**
* @see KeyPairClient#createKeyPairInRegion * @see KeyPairClient#createKeyPairInRegion
*/ */
@Named("ec2:CreateKeyPair") @Named("CreateKeyPair")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateKeyPair") @FormParams(keys = ACTION, values = "CreateKeyPair")
@ -70,7 +70,7 @@ public interface KeyPairAsyncClient {
/** /**
* @see KeyPairClient#describeKeyPairsInRegion * @see KeyPairClient#describeKeyPairsInRegion
*/ */
@Named("ec2:DescribeKeyPairs") @Named("DescribeKeyPairs")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeKeyPairs") @FormParams(keys = ACTION, values = "DescribeKeyPairs")
@ -83,7 +83,7 @@ public interface KeyPairAsyncClient {
/** /**
* @see KeyPairClient#deleteKeyPairInRegion * @see KeyPairClient#deleteKeyPairInRegion
*/ */
@Named("ec2:DeleteKeyPair") @Named("DeleteKeyPair")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteKeyPair") @FormParams(keys = ACTION, values = "DeleteKeyPair")

View File

@ -61,7 +61,7 @@ public interface SecurityGroupAsyncClient {
/** /**
* @see SecurityGroupClient#createSecurityGroupInRegion * @see SecurityGroupClient#createSecurityGroupInRegion
*/ */
@Named("ec2:CreateSecurityGroup") @Named("CreateSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateSecurityGroup") @FormParams(keys = ACTION, values = "CreateSecurityGroup")
@ -72,7 +72,7 @@ public interface SecurityGroupAsyncClient {
/** /**
* @see SecurityGroupClient#deleteSecurityGroupInRegion * @see SecurityGroupClient#deleteSecurityGroupInRegion
*/ */
@Named("ec2:DeleteSecurityGroup") @Named("DeleteSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteSecurityGroup") @FormParams(keys = ACTION, values = "DeleteSecurityGroup")
@ -83,7 +83,7 @@ public interface SecurityGroupAsyncClient {
/** /**
* @see SecurityGroupClient#describeSecurityGroupsInRegion * @see SecurityGroupClient#describeSecurityGroupsInRegion
*/ */
@Named("ec2:DescribeSecurityGroups") @Named("DescribeSecurityGroups")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeSecurityGroups") @FormParams(keys = ACTION, values = "DescribeSecurityGroups")
@ -97,7 +97,7 @@ public interface SecurityGroupAsyncClient {
* @see SecurityGroupClient#authorizeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region, * @see SecurityGroupClient#authorizeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region,
* String,UserIdGroupPair) * String,UserIdGroupPair)
*/ */
@Named("ec2:AuthorizeSecurityGroupIngress") @Named("AuthorizeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress") @FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress")
@ -110,7 +110,7 @@ public interface SecurityGroupAsyncClient {
* @see SecurityGroupClient#authorizeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region, * @see SecurityGroupClient#authorizeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region,
* String,IpProtocol,int,int,String) * String,IpProtocol,int,int,String)
*/ */
@Named("ec2:AuthorizeSecurityGroupIngress") @Named("AuthorizeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress") @FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress")
@ -123,7 +123,7 @@ public interface SecurityGroupAsyncClient {
* @see SecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable Region, * @see SecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable Region,
* String,UserIdGroupPair) * String,UserIdGroupPair)
*/ */
@Named("ec2:RevokeSecurityGroupIngress") @Named("RevokeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress") @FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress")
@ -136,7 +136,7 @@ public interface SecurityGroupAsyncClient {
* @see SecurityGroupClient#revokeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region, * @see SecurityGroupClient#revokeSecurityGroupIngressInRegion(@ org.jclouds.javax.annotation.Nullable Region,
* String,IpProtocol,int,int,String) * String,IpProtocol,int,int,String)
*/ */
@Named("ec2:RevokeSecurityGroupIngress") @Named("RevokeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress") @FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress")

View File

@ -62,7 +62,7 @@ public interface WindowsAsyncClient {
/** /**
* @see WindowsClient#bundleInstanceInRegion * @see WindowsClient#bundleInstanceInRegion
*/ */
@Named("ec2:BundleInstance") @Named("BundleInstance")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "BundleInstance") @FormParams(keys = ACTION, values = "BundleInstance")
@ -77,7 +77,7 @@ public interface WindowsAsyncClient {
/** /**
* @see WindowsClient#cancelBundleTaskInRegion * @see WindowsClient#cancelBundleTaskInRegion
*/ */
@Named("ec2:CancelBundleTask") @Named("CancelBundleTask")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CancelBundleTask") @FormParams(keys = ACTION, values = "CancelBundleTask")
@ -89,7 +89,7 @@ public interface WindowsAsyncClient {
/** /**
* @see BundleTaskClient#describeBundleTasksInRegion * @see BundleTaskClient#describeBundleTasksInRegion
*/ */
@Named("ec2:DescribeBundleTasks") @Named("DescribeBundleTasks")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeBundleTasks") @FormParams(keys = ACTION, values = "DescribeBundleTasks")
@ -102,7 +102,7 @@ public interface WindowsAsyncClient {
/** /**
* @see WindowsClient#getPasswordDataInRegion * @see WindowsClient#getPasswordDataInRegion
*/ */
@Named("ec2:GetPasswordData") @Named("GetPasswordData")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetPasswordData") @FormParams(keys = ACTION, values = "GetPasswordData")

View File

@ -119,7 +119,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getObject * @see S3Client#getObject
*/ */
@Named("s3:GetObject") @Named("GetObject")
@GET @GET
@Path("/{key}") @Path("/{key}")
@Fallback(NullOnKeyNotFound.class) @Fallback(NullOnKeyNotFound.class)
@ -131,7 +131,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#headObject * @see S3Client#headObject
*/ */
@Named("s3:GetObject") @Named("GetObject")
@HEAD @HEAD
@Path("/{key}") @Path("/{key}")
@Fallback(NullOnKeyNotFound.class) @Fallback(NullOnKeyNotFound.class)
@ -143,7 +143,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#objectExists * @see S3Client#objectExists
*/ */
@Named("s3:GetObject") @Named("GetObject")
@HEAD @HEAD
@Path("/{key}") @Path("/{key}")
@Fallback(FalseOnKeyNotFound.class) @Fallback(FalseOnKeyNotFound.class)
@ -154,7 +154,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#deleteObject * @see S3Client#deleteObject
*/ */
@Named("s3:DeleteObject") @Named("DeleteObject")
@DELETE @DELETE
@Path("/{key}") @Path("/{key}")
@Fallback(VoidOnNotFoundOr404.class) @Fallback(VoidOnNotFoundOr404.class)
@ -165,7 +165,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#putObject * @see S3Client#putObject
*/ */
@Named("s3:PutObject") @Named("PutObject")
@PUT @PUT
@Path("/{key}") @Path("/{key}")
@ResponseParser(ParseETagHeader.class) @ResponseParser(ParseETagHeader.class)
@ -177,7 +177,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#putBucketInRegion * @see S3Client#putBucketInRegion
*/ */
@Named("s3:CreateBucket") @Named("CreateBucket")
@PUT @PUT
@Path("/") @Path("/")
@Endpoint(Bucket.class) @Endpoint(Bucket.class)
@ -190,7 +190,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#deleteBucketIfEmpty * @see S3Client#deleteBucketIfEmpty
*/ */
@Named("s3:DeleteBucket") @Named("DeleteBucket")
@DELETE @DELETE
@Path("/") @Path("/")
@Fallback(TrueOn404OrNotFoundFalseOnIllegalState.class) @Fallback(TrueOn404OrNotFoundFalseOnIllegalState.class)
@ -200,7 +200,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#bucketExists * @see S3Client#bucketExists
*/ */
@Named("s3:ListBucket") @Named("ListBucket")
@GET @GET
@Path("/") @Path("/")
@QueryParams(keys = "max-keys", values = "0") @QueryParams(keys = "max-keys", values = "0")
@ -212,7 +212,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getBucketLocation * @see S3Client#getBucketLocation
*/ */
@Named("s3:GetBucketLocation") @Named("GetBucketLocation")
@GET @GET
@QueryParams(keys = "location") @QueryParams(keys = "location")
@Path("/") @Path("/")
@ -224,7 +224,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getBucketPayer * @see S3Client#getBucketPayer
*/ */
@Named("s3:GetBucketRequestPayment") @Named("GetBucketRequestPayment")
@GET @GET
@QueryParams(keys = "requestPayment") @QueryParams(keys = "requestPayment")
@Path("/") @Path("/")
@ -235,7 +235,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#setBucketPayer * @see S3Client#setBucketPayer
*/ */
@Named("s3:PutBucketRequestPayment") @Named("PutBucketRequestPayment")
@PUT @PUT
@QueryParams(keys = "requestPayment") @QueryParams(keys = "requestPayment")
@Path("/") @Path("/")
@ -246,7 +246,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#listBucket * @see S3Client#listBucket
*/ */
@Named("s3:ListBucket") @Named("ListBucket")
@GET @GET
@Path("/") @Path("/")
@XMLResponseParser(ListBucketHandler.class) @XMLResponseParser(ListBucketHandler.class)
@ -257,7 +257,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#listOwnedBuckets * @see S3Client#listOwnedBuckets
*/ */
@Named("s3:ListAllMyBuckets") @Named("ListAllMyBuckets")
@GET @GET
@XMLResponseParser(ListAllMyBucketsHandler.class) @XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/") @Path("/")
@ -267,7 +267,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#copyObject * @see S3Client#copyObject
*/ */
@Named("s3:PutObject") @Named("PutObject")
@PUT @PUT
@Path("/{destinationObject}") @Path("/{destinationObject}")
@Headers(keys = "x-amz-copy-source", values = "/{sourceBucket}/{sourceObject}") @Headers(keys = "x-amz-copy-source", values = "/{sourceBucket}/{sourceObject}")
@ -281,7 +281,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getBucketACL * @see S3Client#getBucketACL
*/ */
@Named("s3:GetBucketAcl") @Named("GetBucketAcl")
@GET @GET
@QueryParams(keys = "acl") @QueryParams(keys = "acl")
@XMLResponseParser(AccessControlListHandler.class) @XMLResponseParser(AccessControlListHandler.class)
@ -293,7 +293,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#putBucketACL * @see S3Client#putBucketACL
*/ */
@Named("s3:PutBucketAcl") @Named("PutBucketAcl")
@PUT @PUT
@Path("/") @Path("/")
@QueryParams(keys = "acl") @QueryParams(keys = "acl")
@ -304,7 +304,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getObjectACL * @see S3Client#getObjectACL
*/ */
@Named("s3:GetObjectAcl") @Named("GetObjectAcl")
@GET @GET
@QueryParams(keys = "acl") @QueryParams(keys = "acl")
@Path("/{key}") @Path("/{key}")
@ -317,7 +317,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#putObjectACL * @see S3Client#putObjectACL
*/ */
@Named("s3:PutObjectAcl") @Named("PutObjectAcl")
@PUT @PUT
@QueryParams(keys = "acl") @QueryParams(keys = "acl")
@Path("/{key}") @Path("/{key}")
@ -328,7 +328,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#getBucketLogging * @see S3Client#getBucketLogging
*/ */
@Named("s3:GetBucketLogging") @Named("GetBucketLogging")
@GET @GET
@QueryParams(keys = "logging") @QueryParams(keys = "logging")
@XMLResponseParser(BucketLoggingHandler.class) @XMLResponseParser(BucketLoggingHandler.class)
@ -340,7 +340,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#enableBucketLogging * @see S3Client#enableBucketLogging
*/ */
@Named("s3:PutBucketLogging") @Named("PutBucketLogging")
@PUT @PUT
@Path("/") @Path("/")
@QueryParams(keys = "logging") @QueryParams(keys = "logging")
@ -351,7 +351,7 @@ public interface S3AsyncClient {
/** /**
* @see S3Client#putBucketLogging * @see S3Client#putBucketLogging
*/ */
@Named("s3:PutBucketLogging") @Named("PutBucketLogging")
@PUT @PUT
@Path("/") @Path("/")
@QueryParams(keys = "logging") @QueryParams(keys = "logging")

View File

@ -74,7 +74,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#delete(String) * @see MessageApi#delete(String)
*/ */
@Named("sqs:DeleteMessage") @Named("DeleteMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteMessage") @FormParams(keys = ACTION, values = "DeleteMessage")
@ -84,7 +84,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#delete(Map) * @see MessageApi#delete(Map)
*/ */
@Named("sqs:DeleteMessageBatch") @Named("DeleteMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteMessageBatch") @FormParams(keys = ACTION, values = "DeleteMessageBatch")
@ -95,7 +95,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#delete(Iterable) * @see MessageApi#delete(Iterable)
*/ */
@Named("sqs:DeleteMessageBatch") @Named("DeleteMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteMessageBatch") @FormParams(keys = ACTION, values = "DeleteMessageBatch")
@ -106,7 +106,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#changeVisibility(String, int) * @see MessageApi#changeVisibility(String, int)
*/ */
@Named("sqs:ChangeMessageVisibility") @Named("ChangeMessageVisibility")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ChangeMessageVisibility") @FormParams(keys = ACTION, values = "ChangeMessageVisibility")
@ -116,7 +116,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#changeVisibility(Table) * @see MessageApi#changeVisibility(Table)
*/ */
@Named("sqs:ChangeMessageVisibilityBatch") @Named("ChangeMessageVisibilityBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch") @FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch")
@ -127,7 +127,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#changeVisibility(Map) * @see MessageApi#changeVisibility(Map)
*/ */
@Named("sqs:ChangeMessageVisibilityBatch") @Named("ChangeMessageVisibilityBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch") @FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch")
@ -138,7 +138,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#changeVisibility(Map, int) * @see MessageApi#changeVisibility(Map, int)
*/ */
@Named("sqs:ChangeMessageVisibilityBatch") @Named("ChangeMessageVisibilityBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch") @FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch")
@ -151,7 +151,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#changeVisibility(Iterable, int) * @see MessageApi#changeVisibility(Iterable, int)
*/ */
@Named("sqs:ChangeMessageVisibilityBatch") @Named("ChangeMessageVisibilityBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch") @FormParams(keys = ACTION, values = "ChangeMessageVisibilityBatch")
@ -164,7 +164,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#send(String) * @see MessageApi#send(String)
*/ */
@Named("sqs:SendMessage") @Named("SendMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessage") @FormParams(keys = ACTION, values = "SendMessage")
@ -174,7 +174,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#send(String, SendMessageOptions) * @see MessageApi#send(String, SendMessageOptions)
*/ */
@Named("sqs:SendMessage") @Named("SendMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessage") @FormParams(keys = ACTION, values = "SendMessage")
@ -184,7 +184,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#sendWithDelays(Table) * @see MessageApi#sendWithDelays(Table)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -196,7 +196,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#sendWithDelays(Map) * @see MessageApi#sendWithDelays(Map)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -208,7 +208,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#sendWithDelay(Map, int) * @see MessageApi#sendWithDelay(Map, int)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -221,7 +221,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#sendWithDelay(Iterable, int) * @see MessageApi#sendWithDelay(Iterable, int)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -233,7 +233,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#send(Map) * @see MessageApi#send(Map)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -244,7 +244,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#send(Iterable) * @see MessageApi#send(Iterable)
*/ */
@Named("sqs:SendMessageBatch") @Named("SendMessageBatch")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SendMessageBatch") @FormParams(keys = ACTION, values = "SendMessageBatch")
@ -255,7 +255,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#receive() * @see MessageApi#receive()
*/ */
@Named("sqs:ReceiveMessage") @Named("ReceiveMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ReceiveMessage") @FormParams(keys = ACTION, values = "ReceiveMessage")
@ -265,7 +265,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#receive(ReceiveMessageOptions) * @see MessageApi#receive(ReceiveMessageOptions)
*/ */
@Named("sqs:ReceiveMessage") @Named("ReceiveMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ReceiveMessage") @FormParams(keys = ACTION, values = "ReceiveMessage")
@ -275,7 +275,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#receive(int) * @see MessageApi#receive(int)
*/ */
@Named("sqs:ReceiveMessage") @Named("ReceiveMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ReceiveMessage") @FormParams(keys = ACTION, values = "ReceiveMessage")
@ -285,7 +285,7 @@ public interface MessageAsyncApi {
/** /**
* @see MessageApi#receive(int, ReceiveMessageOptions) * @see MessageApi#receive(int, ReceiveMessageOptions)
*/ */
@Named("sqs:ReceiveMessage") @Named("ReceiveMessage")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ReceiveMessage") @FormParams(keys = ACTION, values = "ReceiveMessage")

View File

@ -49,7 +49,7 @@ public interface PermissionAsyncApi {
/** /**
* @see PermissionApi#addPermissionToAccount * @see PermissionApi#addPermissionToAccount
*/ */
@Named("sqs:AddPermission") @Named("AddPermission")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AddPermission") @FormParams(keys = ACTION, values = "AddPermission")
@ -59,7 +59,7 @@ public interface PermissionAsyncApi {
/** /**
* @see PermissionApi#remove * @see PermissionApi#remove
*/ */
@Named("sqs:RemovePermission") @Named("RemovePermission")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RemovePermission") @FormParams(keys = ACTION, values = "RemovePermission")

View File

@ -69,7 +69,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#list * @see QueueApi#list
*/ */
@Named("sqs:ListQueues") @Named("ListQueues")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ListQueues") @FormParams(keys = ACTION, values = "ListQueues")
@ -79,7 +79,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#list(ListQueuesOptions) * @see QueueApi#list(ListQueuesOptions)
*/ */
@Named("sqs:ListQueues") @Named("ListQueues")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ListQueues") @FormParams(keys = ACTION, values = "ListQueues")
@ -89,7 +89,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#get(String) * @see QueueApi#get(String)
*/ */
@Named("sqs:GetQueueUrl") @Named("GetQueueUrl")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetQueueUrl") @FormParams(keys = ACTION, values = "GetQueueUrl")
@ -100,7 +100,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#getInAccount * @see QueueApi#getInAccount
*/ */
@Named("sqs:GetQueueUrl") @Named("GetQueueUrl")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetQueueUrl") @FormParams(keys = ACTION, values = "GetQueueUrl")
@ -112,7 +112,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#create * @see QueueApi#create
*/ */
@Named("sqs:CreateQueue") @Named("CreateQueue")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateQueue") @FormParams(keys = ACTION, values = "CreateQueue")
@ -122,7 +122,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#create * @see QueueApi#create
*/ */
@Named("sqs:CreateQueue") @Named("CreateQueue")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreateQueue") @FormParams(keys = ACTION, values = "CreateQueue")
@ -132,7 +132,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#delete * @see QueueApi#delete
*/ */
@Named("sqs:DeleteQueue") @Named("DeleteQueue")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteQueue") @FormParams(keys = ACTION, values = "DeleteQueue")
@ -142,7 +142,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#getAttributes(URI) * @see QueueApi#getAttributes(URI)
*/ */
@Named("sqs:GetQueueAttributes") @Named("GetQueueAttributes")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "AttributeName.1" }, values = { "GetQueueAttributes", "All" }) @FormParams(keys = { ACTION, "AttributeName.1" }, values = { "GetQueueAttributes", "All" })
@ -154,7 +154,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#getAttributes(URI, Iterable) * @see QueueApi#getAttributes(URI, Iterable)
*/ */
@Named("sqs:GetQueueAttributes") @Named("GetQueueAttributes")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetQueueAttributes") @FormParams(keys = ACTION, values = "GetQueueAttributes")
@ -165,7 +165,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#getAttribute * @see QueueApi#getAttribute
*/ */
@Named("sqs:GetQueueAttributes") @Named("GetQueueAttributes")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "GetQueueAttributes") @FormParams(keys = ACTION, values = "GetQueueAttributes")
@ -175,7 +175,7 @@ public interface QueueAsyncApi {
/** /**
* @see QueueApi#setAttribute * @see QueueApi#setAttribute
*/ */
@Named("sqs:SetQueueAttributes") @Named("SetQueueAttributes")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "SetQueueAttributes") @FormParams(keys = ACTION, values = "SetQueueAttributes")

View File

@ -54,7 +54,7 @@ public interface AvailabilityZoneAsyncApi {
/** /**
* @see AvailabilityZoneApi#addAvailabilityZonesToLoadBalancer * @see AvailabilityZoneApi#addAvailabilityZonesToLoadBalancer
*/ */
@Named("elasticloadbalancing:EnableAvailabilityZonesForLoadBalancer") @Named("EnableAvailabilityZonesForLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(AvailabilityZonesResultHandler.class) @XMLResponseParser(AvailabilityZonesResultHandler.class)
@ -67,7 +67,7 @@ public interface AvailabilityZoneAsyncApi {
/** /**
* @see AvailabilityZoneApi#addAvailabilityZoneToLoadBalancer * @see AvailabilityZoneApi#addAvailabilityZoneToLoadBalancer
*/ */
@Named("elasticloadbalancing:EnableAvailabilityZonesForLoadBalancer") @Named("EnableAvailabilityZonesForLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(AvailabilityZonesResultHandler.class) @XMLResponseParser(AvailabilityZonesResultHandler.class)
@ -79,7 +79,7 @@ public interface AvailabilityZoneAsyncApi {
/** /**
* @see AvailabilityZoneApi#removeAvailabilityZonesFromLoadBalancer * @see AvailabilityZoneApi#removeAvailabilityZonesFromLoadBalancer
*/ */
@Named("elasticloadbalancing:DisableAvailabilityZonesForLoadBalancer") @Named("DisableAvailabilityZonesForLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(AvailabilityZonesResultHandler.class) @XMLResponseParser(AvailabilityZonesResultHandler.class)
@ -91,7 +91,7 @@ public interface AvailabilityZoneAsyncApi {
/** /**
* @see AvailabilityZoneApi#removeAvailabilityZoneFromLoadBalancer * @see AvailabilityZoneApi#removeAvailabilityZoneFromLoadBalancer
*/ */
@Named("elasticloadbalancing:DisableAvailabilityZonesForLoadBalancer") @Named("DisableAvailabilityZonesForLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(AvailabilityZonesResultHandler.class) @XMLResponseParser(AvailabilityZonesResultHandler.class)

View File

@ -58,7 +58,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#getHealthOfInstancesOfLoadBalancer(String) * @see InstanceApi#getHealthOfInstancesOfLoadBalancer(String)
*/ */
@Named("elasticloadbalancing:DescribeInstanceHealth") @Named("DescribeInstanceHealth")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeInstanceHealthResultHandler.class) @XMLResponseParser(DescribeInstanceHealthResultHandler.class)
@ -70,7 +70,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#getHealthOfInstancesOfLoadBalancer(Iterable, String) * @see InstanceApi#getHealthOfInstancesOfLoadBalancer(Iterable, String)
*/ */
@Named("elasticloadbalancing:DescribeInstanceHealth") @Named("DescribeInstanceHealth")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeInstanceHealthResultHandler.class) @XMLResponseParser(DescribeInstanceHealthResultHandler.class)
@ -84,7 +84,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#registerInstancesWithLoadBalancer * @see InstanceApi#registerInstancesWithLoadBalancer
*/ */
@Named("elasticloadbalancing:RegisterInstancesWithLoadBalancer") @Named("RegisterInstancesWithLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstancesResultHandler.class) @XMLResponseParser(InstancesResultHandler.class)
@ -97,7 +97,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#registerInstanceWithLoadBalancer * @see InstanceApi#registerInstanceWithLoadBalancer
*/ */
@Named("elasticloadbalancing:RegisterInstancesWithLoadBalancer") @Named("RegisterInstancesWithLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstancesResultHandler.class) @XMLResponseParser(InstancesResultHandler.class)
@ -109,7 +109,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#deregisterInstancesFromLoadBalancer * @see InstanceApi#deregisterInstancesFromLoadBalancer
*/ */
@Named("elasticloadbalancing:DeregisterInstancesFromLoadBalancer") @Named("DeregisterInstancesFromLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstancesResultHandler.class) @XMLResponseParser(InstancesResultHandler.class)
@ -121,7 +121,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#deregisterInstanceFromLoadBalancer * @see InstanceApi#deregisterInstanceFromLoadBalancer
*/ */
@Named("elasticloadbalancing:DeregisterInstancesFromLoadBalancer") @Named("DeregisterInstancesFromLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstancesResultHandler.class) @XMLResponseParser(InstancesResultHandler.class)

View File

@ -68,7 +68,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#createListeningInAvailabilityZones() * @see LoadBalancerApi#createListeningInAvailabilityZones()
*/ */
@Named("elasticloadbalancing:CreateLoadBalancer") @Named("CreateLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(CreateLoadBalancerResponseHandler.class) @XMLResponseParser(CreateLoadBalancerResponseHandler.class)
@ -80,7 +80,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#createListeningInAvailabilityZones() * @see LoadBalancerApi#createListeningInAvailabilityZones()
*/ */
@Named("elasticloadbalancing:CreateLoadBalancer") @Named("CreateLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(CreateLoadBalancerResponseHandler.class) @XMLResponseParser(CreateLoadBalancerResponseHandler.class)
@ -92,7 +92,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#createListeningInSubnetAssignedToSecurityGroups() * @see LoadBalancerApi#createListeningInSubnetAssignedToSecurityGroups()
*/ */
@Named("elasticloadbalancing:CreateLoadBalancer") @Named("CreateLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(CreateLoadBalancerResponseHandler.class) @XMLResponseParser(CreateLoadBalancerResponseHandler.class)
@ -105,7 +105,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#createListeningInSubnetsAssignedToSecurityGroups() * @see LoadBalancerApi#createListeningInSubnetsAssignedToSecurityGroups()
*/ */
@Named("elasticloadbalancing:CreateLoadBalancer") @Named("CreateLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(CreateLoadBalancerResponseHandler.class) @XMLResponseParser(CreateLoadBalancerResponseHandler.class)
@ -118,7 +118,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#get() * @see LoadBalancerApi#get()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancers") @Named("DescribeLoadBalancers")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(LoadBalancerHandler.class) @XMLResponseParser(LoadBalancerHandler.class)
@ -129,7 +129,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#list() * @see LoadBalancerApi#list()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancers") @Named("DescribeLoadBalancers")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancersResultHandler.class) @XMLResponseParser(DescribeLoadBalancersResultHandler.class)
@ -141,7 +141,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#list(ListLoadBalancersOptions) * @see LoadBalancerApi#list(ListLoadBalancersOptions)
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancers") @Named("DescribeLoadBalancers")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancersResultHandler.class) @XMLResponseParser(DescribeLoadBalancersResultHandler.class)
@ -152,7 +152,7 @@ public interface LoadBalancerAsyncApi {
/** /**
* @see LoadBalancerApi#delete() * @see LoadBalancerApi#delete()
*/ */
@Named("elasticloadbalancing:DeleteLoadBalancer") @Named("DeleteLoadBalancer")
@POST @POST
@Path("/") @Path("/")
@Fallback(VoidOnNotFoundOr404.class) @Fallback(VoidOnNotFoundOr404.class)

View File

@ -60,7 +60,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#get() * @see PolicyApi#get()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicies") @Named("DescribeLoadBalancerPolicies")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(PolicyHandler.class) @XMLResponseParser(PolicyHandler.class)
@ -71,7 +71,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#list() * @see PolicyApi#list()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicies") @Named("DescribeLoadBalancerPolicies")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancerPoliciesResultHandler.class) @XMLResponseParser(DescribeLoadBalancerPoliciesResultHandler.class)
@ -82,7 +82,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#list(ListPoliciesOptions) * @see PolicyApi#list(ListPoliciesOptions)
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicies") @Named("DescribeLoadBalancerPolicies")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancerPoliciesResultHandler.class) @XMLResponseParser(DescribeLoadBalancerPoliciesResultHandler.class)
@ -94,7 +94,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#getType() * @see PolicyApi#getType()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicyTypes") @Named("DescribeLoadBalancerPolicyTypes")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(PolicyTypeHandler.class) @XMLResponseParser(PolicyTypeHandler.class)
@ -105,7 +105,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#listTypes() * @see PolicyApi#listTypes()
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicyTypes") @Named("DescribeLoadBalancerPolicyTypes")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancerPolicyTypesResultHandler.class) @XMLResponseParser(DescribeLoadBalancerPolicyTypesResultHandler.class)
@ -116,7 +116,7 @@ public interface PolicyAsyncApi {
/** /**
* @see PolicyApi#listTypes(Iterable<String>) * @see PolicyApi#listTypes(Iterable<String>)
*/ */
@Named("elasticloadbalancing:DescribeLoadBalancerPolicyTypes") @Named("DescribeLoadBalancerPolicyTypes")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeLoadBalancerPolicyTypesResultHandler.class) @XMLResponseParser(DescribeLoadBalancerPolicyTypesResultHandler.class)

View File

@ -50,7 +50,7 @@ public interface IAMAsyncApi {
/** /**
* @see IAMApi#getCurrentUser() * @see IAMApi#getCurrentUser()
*/ */
@Named("iam:GetUser") @Named("GetUser")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(UserHandler.class) @XMLResponseParser(UserHandler.class)

View File

@ -55,7 +55,7 @@ public interface UserAsyncApi {
/** /**
* @see UserApi#getCurrent() * @see UserApi#getCurrent()
*/ */
@Named("iam:GetUser") @Named("GetUser")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(UserHandler.class) @XMLResponseParser(UserHandler.class)
@ -65,7 +65,7 @@ public interface UserAsyncApi {
/** /**
* @see UserApi#get() * @see UserApi#get()
*/ */
@Named("iam:GetUser") @Named("GetUser")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(UserHandler.class) @XMLResponseParser(UserHandler.class)
@ -76,7 +76,7 @@ public interface UserAsyncApi {
/** /**
* @see UserApi#list() * @see UserApi#list()
*/ */
@Named("iam:ListUsers") @Named("ListUsers")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(ListUsersResultHandler.class) @XMLResponseParser(ListUsersResultHandler.class)
@ -87,7 +87,7 @@ public interface UserAsyncApi {
/** /**
* @see UserApi#list(ListUsersOptions) * @see UserApi#list(ListUsersOptions)
*/ */
@Named("iam:ListUsers") @Named("ListUsers")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(ListUsersResultHandler.class) @XMLResponseParser(ListUsersResultHandler.class)

View File

@ -61,7 +61,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#create * @see InstanceApi#create
*/ */
@Named("rds:CreateDBInstance") @Named("CreateDBInstance")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)
@ -72,7 +72,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#createInAvailabilityZone * @see InstanceApi#createInAvailabilityZone
*/ */
@Named("rds:CreateDBInstance") @Named("CreateDBInstance")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)
@ -84,7 +84,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#createMultiAZ * @see InstanceApi#createMultiAZ
*/ */
@Named("rds:CreateDBInstance") @Named("CreateDBInstance")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)
@ -95,7 +95,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#get() * @see InstanceApi#get()
*/ */
@Named("rds:DescribeDBInstances") @Named("DescribeDBInstances")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)
@ -106,7 +106,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#list() * @see InstanceApi#list()
*/ */
@Named("rds:DescribeDBInstances") @Named("DescribeDBInstances")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBInstancesResultHandler.class) @XMLResponseParser(DescribeDBInstancesResultHandler.class)
@ -117,7 +117,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#list(ListInstancesOptions) * @see InstanceApi#list(ListInstancesOptions)
*/ */
@Named("rds:DescribeDBInstances") @Named("DescribeDBInstances")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBInstancesResultHandler.class) @XMLResponseParser(DescribeDBInstancesResultHandler.class)
@ -127,7 +127,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#delete() * @see InstanceApi#delete()
*/ */
@Named("rds:DeleteDBInstance") @Named("DeleteDBInstance")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)
@ -138,7 +138,7 @@ public interface InstanceAsyncApi {
/** /**
* @see InstanceApi#deleteAndSaveSnapshot * @see InstanceApi#deleteAndSaveSnapshot
*/ */
@Named("rds:DeleteDBInstance") @Named("DeleteDBInstance")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(InstanceHandler.class) @XMLResponseParser(InstanceHandler.class)

View File

@ -58,7 +58,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#createWithNameAndDescription * @see SecurityGroupApi#createWithNameAndDescription
*/ */
@Named("rds:CreateDBSecurityGroup") @Named("CreateDBSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -69,7 +69,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#createInVPCWithNameAndDescription * @see SecurityGroupApi#createInVPCWithNameAndDescription
*/ */
@Named("rds:CreateDBSecurityGroup") @Named("CreateDBSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -80,7 +80,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#get() * @see SecurityGroupApi#get()
*/ */
@Named("rds:DescribeDBSecurityGroups") @Named("DescribeDBSecurityGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -91,7 +91,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#list() * @see SecurityGroupApi#list()
*/ */
@Named("rds:DescribeDBSecurityGroups") @Named("DescribeDBSecurityGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBSecurityGroupsResultHandler.class) @XMLResponseParser(DescribeDBSecurityGroupsResultHandler.class)
@ -102,7 +102,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#list(ListSecurityGroupsOptions) * @see SecurityGroupApi#list(ListSecurityGroupsOptions)
*/ */
@Named("rds:DescribeDBSecurityGroups") @Named("DescribeDBSecurityGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBSecurityGroupsResultHandler.class) @XMLResponseParser(DescribeDBSecurityGroupsResultHandler.class)
@ -112,7 +112,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#authorizeIngressToIPRange * @see SecurityGroupApi#authorizeIngressToIPRange
*/ */
@Named("rds:AuthorizeDBSecurityGroupIngress") @Named("AuthorizeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -123,7 +123,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#authorizeIngressToEC2SecurityGroupOfOwner * @see SecurityGroupApi#authorizeIngressToEC2SecurityGroupOfOwner
*/ */
@Named("rds:AuthorizeDBSecurityGroupIngress") @Named("AuthorizeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -136,7 +136,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#authorizeIngressToVPCSecurityGroup * @see SecurityGroupApi#authorizeIngressToVPCSecurityGroup
*/ */
@Named("rds:AuthorizeDBSecurityGroupIngress") @Named("AuthorizeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -148,7 +148,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#revokeIngressFromIPRange * @see SecurityGroupApi#revokeIngressFromIPRange
*/ */
@Named("rds:RevokeDBSecurityGroupIngress") @Named("RevokeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -159,7 +159,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#revokeIngressFromEC2SecurityGroupOfOwner * @see SecurityGroupApi#revokeIngressFromEC2SecurityGroupOfOwner
*/ */
@Named("rds:RevokeDBSecurityGroupIngress") @Named("RevokeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -172,7 +172,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#revokeIngressFromVPCSecurityGroup * @see SecurityGroupApi#revokeIngressFromVPCSecurityGroup
*/ */
@Named("rds:RevokeDBSecurityGroupIngress") @Named("RevokeDBSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SecurityGroupHandler.class) @XMLResponseParser(SecurityGroupHandler.class)
@ -183,7 +183,7 @@ public interface SecurityGroupAsyncApi {
/** /**
* @see SecurityGroupApi#delete() * @see SecurityGroupApi#delete()
*/ */
@Named("rds:DeleteDBSecurityGroup") @Named("DeleteDBSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@Fallback(VoidOnNotFoundOr404.class) @Fallback(VoidOnNotFoundOr404.class)

View File

@ -60,7 +60,7 @@ public interface SubnetGroupAsyncApi {
/** /**
* @see SubnetGroupApi#get() * @see SubnetGroupApi#get()
*/ */
@Named("rds:DescribeDBSubnetGroups") @Named("DescribeDBSubnetGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(SubnetGroupHandler.class) @XMLResponseParser(SubnetGroupHandler.class)
@ -71,7 +71,7 @@ public interface SubnetGroupAsyncApi {
/** /**
* @see SubnetGroupApi#list() * @see SubnetGroupApi#list()
*/ */
@Named("rds:DescribeDBSubnetGroups") @Named("DescribeDBSubnetGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBSubnetGroupsResultHandler.class) @XMLResponseParser(DescribeDBSubnetGroupsResultHandler.class)
@ -82,7 +82,7 @@ public interface SubnetGroupAsyncApi {
/** /**
* @see SubnetGroupApi#list(ListSubnetGroupsOptions) * @see SubnetGroupApi#list(ListSubnetGroupsOptions)
*/ */
@Named("rds:DescribeDBSubnetGroups") @Named("DescribeDBSubnetGroups")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(DescribeDBSubnetGroupsResultHandler.class) @XMLResponseParser(DescribeDBSubnetGroupsResultHandler.class)
@ -92,7 +92,7 @@ public interface SubnetGroupAsyncApi {
/** /**
* @see SubnetGroupApi#delete() * @see SubnetGroupApi#delete()
*/ */
@Named("rds:DeleteDBSubnetGroup") @Named("DeleteDBSubnetGroup")
@POST @POST
@Path("/") @Path("/")
@Fallback(VoidOnNotFoundOr404.class) @Fallback(VoidOnNotFoundOr404.class)

View File

@ -56,7 +56,7 @@ public interface AWSAMIAsyncClient extends AMIAsyncClient {
/** /**
* @see AMIClient#getProductCodesForImageInRegion * @see AMIClient#getProductCodesForImageInRegion
*/ */
@Named("ec2:DescribeImageAttribute") @Named("DescribeImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "productCodes" }) @FormParams(keys = { ACTION, "Attribute" }, values = { "DescribeImageAttribute", "productCodes" })
@ -68,7 +68,7 @@ public interface AWSAMIAsyncClient extends AMIAsyncClient {
/** /**
* @see AMIClient#addProductCodesToImageInRegion * @see AMIClient#addProductCodesToImageInRegion
*/ */
@Named("ec2:ModifyImageAttribute") @Named("ModifyImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "add", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "add",
@ -81,7 +81,7 @@ public interface AWSAMIAsyncClient extends AMIAsyncClient {
/** /**
* @see AMIClient#removeProductCodesToImageInRegion * @see AMIClient#removeProductCodesToImageInRegion
*/ */
@Named("ec2:ModifyImageAttribute") @Named("ModifyImageAttribute")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "remove", @FormParams(keys = { ACTION, "OperationType", "Attribute" }, values = { "ModifyImageAttribute", "remove",

View File

@ -62,7 +62,7 @@ public interface AWSInstanceAsyncClient extends InstanceAsyncClient {
/** /**
* @see AWSInstanceClient#describeInstancesInRegion * @see AWSInstanceClient#describeInstancesInRegion
*/ */
@Named("ec2:DescribeInstances") @Named("DescribeInstances")
@Override @Override
@POST @POST
@Path("/") @Path("/")
@ -76,7 +76,7 @@ public interface AWSInstanceAsyncClient extends InstanceAsyncClient {
/** /**
* @see AWSInstanceClient#runInstancesInRegion * @see AWSInstanceClient#runInstancesInRegion
*/ */
@Named("ec2:RunInstances") @Named("RunInstances")
@Override @Override
@POST @POST
@Path("/") @Path("/")

View File

@ -51,7 +51,7 @@ public interface AWSKeyPairAsyncClient extends KeyPairAsyncClient {
/** /**
* @see AWSKeyPairClient#importKeyPairInRegion * @see AWSKeyPairClient#importKeyPairInRegion
*/ */
@Named("ec2:ImportKeyPair") @Named("ImportKeyPair")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "ImportKeyPair") @FormParams(keys = ACTION, values = "ImportKeyPair")

View File

@ -65,7 +65,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
/** /**
* @see AWSSecurityGroupClient#createSecurityGroupInRegion * @see AWSSecurityGroupClient#createSecurityGroupInRegion
*/ */
@Named("ec2:CreateSecurityGroup") @Named("CreateSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@XMLResponseParser(CreateSecurityGroupResponseHandler.class) @XMLResponseParser(CreateSecurityGroupResponseHandler.class)
@ -79,7 +79,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
* @see AWSSecurityGroupClient#authorizeSecurityGroupIngressInRegion(String, * @see AWSSecurityGroupClient#authorizeSecurityGroupIngressInRegion(String,
* String,IpPermission) * String,IpPermission)
*/ */
@Named("ec2:AuthorizeSecurityGroupIngress") @Named("AuthorizeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress") @FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress")
@ -91,7 +91,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
* @see AWSSecurityGroupClient#authorizeSecurityGroupIngressInRegion(String, * @see AWSSecurityGroupClient#authorizeSecurityGroupIngressInRegion(String,
* String,Iterable) * String,Iterable)
*/ */
@Named("ec2:AuthorizeSecurityGroupIngress") @Named("AuthorizeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress") @FormParams(keys = ACTION, values = "AuthorizeSecurityGroupIngress")
@ -104,7 +104,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
* @see AWSSecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable * @see AWSSecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable
* Region, String,IpPermission) * Region, String,IpPermission)
*/ */
@Named("ec2:RevokeSecurityGroupIngress") @Named("RevokeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress") @FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress")
@ -116,7 +116,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
* @see AWSSecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable * @see AWSSecurityGroupClient#revokeSecurityGroupIngressInRegion(@Nullable
* Region, String,Iterable) * Region, String,Iterable)
*/ */
@Named("ec2:RevokeSecurityGroupIngress") @Named("RevokeSecurityGroupIngress")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress") @FormParams(keys = ACTION, values = "RevokeSecurityGroupIngress")
@ -128,7 +128,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
/** /**
* @see AWSSecurityGroupClient#deleteSecurityGroupInRegionById * @see AWSSecurityGroupClient#deleteSecurityGroupInRegionById
*/ */
@Named("ec2:DeleteSecurityGroup") @Named("DeleteSecurityGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeleteSecurityGroup") @FormParams(keys = ACTION, values = "DeleteSecurityGroup")
@ -139,7 +139,7 @@ public interface AWSSecurityGroupAsyncClient extends SecurityGroupAsyncClient {
/** /**
* @see AWSSecurityGroupClient#describeSecurityGroupsInRegionById * @see AWSSecurityGroupClient#describeSecurityGroupsInRegionById
*/ */
@Named("ec2:DescribeSecurityGroups") @Named("DescribeSecurityGroups")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeSecurityGroups") @FormParams(keys = ACTION, values = "DescribeSecurityGroups")

View File

@ -55,7 +55,7 @@ public interface MonitoringAsyncClient {
/** /**
* @see Monitoring#monitorInstancesInRegion * @see Monitoring#monitorInstancesInRegion
*/ */
@Named("ec2:MonitorInstances") @Named("MonitorInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "MonitorInstances") @FormParams(keys = ACTION, values = "MonitorInstances")
@ -68,7 +68,7 @@ public interface MonitoringAsyncClient {
/** /**
* @see Monitoring#monitorInstancesInRegion * @see Monitoring#monitorInstancesInRegion
*/ */
@Named("ec2:UnmonitorInstances") @Named("UnmonitorInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "UnmonitorInstances") @FormParams(keys = ACTION, values = "UnmonitorInstances")

View File

@ -58,7 +58,7 @@ public interface PlacementGroupAsyncClient {
/** /**
* @see PlacementGroupClient#createPlacementGroupInRegion(String,String,String) * @see PlacementGroupClient#createPlacementGroupInRegion(String,String,String)
*/ */
@Named("ec2:CreatePlacementGroup") @Named("CreatePlacementGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CreatePlacementGroup") @FormParams(keys = ACTION, values = "CreatePlacementGroup")
@ -69,7 +69,7 @@ public interface PlacementGroupAsyncClient {
/** /**
* @see PlacementGroupClient#createPlacementGroupInRegion(String,String) * @see PlacementGroupClient#createPlacementGroupInRegion(String,String)
*/ */
@Named("ec2:CreatePlacementGroup") @Named("CreatePlacementGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = { ACTION, "Strategy" }, values = { "CreatePlacementGroup", "cluster" }) @FormParams(keys = { ACTION, "Strategy" }, values = { "CreatePlacementGroup", "cluster" })
@ -79,7 +79,7 @@ public interface PlacementGroupAsyncClient {
/** /**
* @see PlacementGroupClient#deletePlacementGroupInRegion * @see PlacementGroupClient#deletePlacementGroupInRegion
*/ */
@Named("ec2:DeletePlacementGroup") @Named("DeletePlacementGroup")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DeletePlacementGroup") @FormParams(keys = ACTION, values = "DeletePlacementGroup")
@ -90,7 +90,7 @@ public interface PlacementGroupAsyncClient {
/** /**
* @see PlacementGroupClient#describePlacementGroupsInRegion * @see PlacementGroupClient#describePlacementGroupsInRegion
*/ */
@Named("ec2:DescribePlacementGroups") @Named("DescribePlacementGroups")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribePlacementGroups") @FormParams(keys = ACTION, values = "DescribePlacementGroups")

View File

@ -65,7 +65,7 @@ public interface SpotInstanceAsyncClient {
/** /**
* @see SpotInstanceClient#describeSpotInstanceRequestsInRegion * @see SpotInstanceClient#describeSpotInstanceRequestsInRegion
*/ */
@Named("ec2:DescribeSpotInstanceRequests") @Named("DescribeSpotInstanceRequests")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeSpotInstanceRequests") @FormParams(keys = ACTION, values = "DescribeSpotInstanceRequests")
@ -78,7 +78,7 @@ public interface SpotInstanceAsyncClient {
/** /**
* @see SpotInstanceClient#requestSpotInstanceInRegion * @see SpotInstanceClient#requestSpotInstanceInRegion
*/ */
@Named("ec2:RequestSpotInstances") @Named("RequestSpotInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RequestSpotInstances") @FormParams(keys = ACTION, values = "RequestSpotInstances")
@ -91,7 +91,7 @@ public interface SpotInstanceAsyncClient {
/** /**
* @see SpotInstanceClient#requestSpotInstancesInRegion * @see SpotInstanceClient#requestSpotInstancesInRegion
*/ */
@Named("ec2:RequestSpotInstances") @Named("RequestSpotInstances")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "RequestSpotInstances") @FormParams(keys = ACTION, values = "RequestSpotInstances")
@ -105,7 +105,7 @@ public interface SpotInstanceAsyncClient {
/** /**
* @see SpotInstanceClient#describeSpotPriceHistoryInRegion * @see SpotInstanceClient#describeSpotPriceHistoryInRegion
*/ */
@Named("ec2:DescribeSpotPriceHistory") @Named("DescribeSpotPriceHistory")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "DescribeSpotPriceHistory") @FormParams(keys = ACTION, values = "DescribeSpotPriceHistory")
@ -118,7 +118,7 @@ public interface SpotInstanceAsyncClient {
/** /**
* @see SpotInstanceClient#cancelSpotInstanceRequestsInRegion * @see SpotInstanceClient#cancelSpotInstanceRequestsInRegion
*/ */
@Named("ec2:CancelSpotInstanceRequests") @Named("CancelSpotInstanceRequests")
@POST @POST
@Path("/") @Path("/")
@FormParams(keys = ACTION, values = "CancelSpotInstanceRequests") @FormParams(keys = ACTION, values = "CancelSpotInstanceRequests")

View File

@ -74,7 +74,7 @@ public interface AWSS3AsyncClient extends S3AsyncClient {
/** /**
* @see AWSS3Client#initiateMultipartUpload * @see AWSS3Client#initiateMultipartUpload
*/ */
@Named("s3:PutObject") @Named("PutObject")
@POST @POST
@QueryParams(keys = "uploads") @QueryParams(keys = "uploads")
@Path("/{key}") @Path("/{key}")
@ -87,7 +87,7 @@ public interface AWSS3AsyncClient extends S3AsyncClient {
/** /**
* @see AWSS3Client#abortMultipartUpload * @see AWSS3Client#abortMultipartUpload
*/ */
@Named("s3:AbortMultipartUpload") @Named("AbortMultipartUpload")
@DELETE @DELETE
@Path("/{key}") @Path("/{key}")
@Fallback(VoidOnNotFoundOr404.class) @Fallback(VoidOnNotFoundOr404.class)
@ -98,7 +98,7 @@ public interface AWSS3AsyncClient extends S3AsyncClient {
/** /**
* @see AWSS3Client#uploadPart * @see AWSS3Client#uploadPart
*/ */
@Named("s3:PutObject") @Named("PutObject")
@PUT @PUT
@Path("/{key}") @Path("/{key}")
@ResponseParser(ParseETagHeader.class) @ResponseParser(ParseETagHeader.class)
@ -110,7 +110,7 @@ public interface AWSS3AsyncClient extends S3AsyncClient {
/** /**
* @see AWSS3Client#completeMultipartUpload * @see AWSS3Client#completeMultipartUpload
*/ */
@Named("s3:PutObject") @Named("PutObject")
@POST @POST
@Path("/{key}") @Path("/{key}")
@ResponseParser(ETagFromHttpResponseViaRegex.class) @ResponseParser(ETagFromHttpResponseViaRegex.class)
@ -122,7 +122,7 @@ public interface AWSS3AsyncClient extends S3AsyncClient {
/** /**
* @see AWSS3Client#deleteObjects * @see AWSS3Client#deleteObjects
*/ */
@Named("s3:DeleteObject") @Named("DeleteObject")
@POST @POST
@Path("/") @Path("/")
@QueryParams(keys = "delete") @QueryParams(keys = "delete")