Repository: camel Updated Branches: refs/heads/master 6d8092585 -> 4b61cacaf
Camel AWS EC2: Added enumeration for the possible operations Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d58043f0 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d58043f0 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d58043f0 Branch: refs/heads/master Commit: d58043f0df3cfeb5f57fa3cff9e1693fb9289892 Parents: 6d80925 Author: Andrea Cosentino <[email protected]> Authored: Thu Jan 19 15:02:19 2017 +0100 Committer: Andrea Cosentino <[email protected]> Committed: Thu Jan 19 15:02:19 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/camel/component/aws/ec2/EC2Configuration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/d58043f0/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java ---------------------------------------------------------------------- diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java index c558eb0..09dc386 100644 --- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java +++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/ec2/EC2Configuration.java @@ -36,7 +36,8 @@ public class EC2Configuration { private String secretKey; @UriParam private String amazonEc2Endpoint; - @UriParam(label = "producer") + @UriParam(label = "producer", enums = "createAndRunInstances, startInstances, stopInstances, terminateInstances, describeInstances, " + + "describeInstancesStatus, rebootInstances, monitorInstances, unmonitorInstances, createTags, deleteTags") @Metadata(required = "true") private EC2Operations operation; @UriParam
