You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/01/17 10:55:01 UTC

[camel] branch master updated (c9666fe -> 83cf524)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from c9666fe  CAMEL-12151 - Camel-AWS CW: Add the ability to specify credentials and region at component level
     new f43488f  Camel-AWS CW - accessKey and secretKey are secret
     new 83cf524  Camel-AWS CW - Regen docs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-aws/src/main/docs/aws-cw-component.adoc              | 4 ++--
 .../main/java/org/apache/camel/component/aws/cw/CwConfiguration.java  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <co...@camel.apache.org>'].

[camel] 02/02: Camel-AWS CW - Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 83cf5246234538d58fec285df8dd9836427e8435
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 17 11:54:33 2018 +0100

    Camel-AWS CW - Regen docs
---
 components/camel-aws/src/main/docs/aws-cw-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws/src/main/docs/aws-cw-component.adoc b/components/camel-aws/src/main/docs/aws-cw-component.adoc
index 079f9db..4d23515 100644
--- a/components/camel-aws/src/main/docs/aws-cw-component.adoc
+++ b/components/camel-aws/src/main/docs/aws-cw-component.adoc
@@ -68,18 +68,18 @@ with the following path and query parameters:
 [width="100%",cols="2,5,^1,2",options="header"]
 |===
 | Name | Description | Default | Type
-| *accessKey* (producer) | Amazon AWS Access Key |  | String
 | *amazonCwClient* (producer) | To use the AmazonCloudWatch as the client |  | AmazonCloudWatch
 | *amazonCwEndpoint* (producer) | The endpoint with which the AWS-CW client wants to work with. |  | String
 | *name* (producer) | The metric name |  | String
 | *proxyHost* (producer) | To define a proxy host when instantiating the CW client |  | String
 | *proxyPort* (producer) | To define a proxy port when instantiating the CW client |  | Integer
 | *region* (producer) | The region in which CW client needs to work |  | String
-| *secretKey* (producer) | Amazon AWS Secret Key |  | String
 | *timestamp* (producer) | The metric timestamp |  | Date
 | *unit* (producer) | The metric unit |  | String
 | *value* (producer) | The metric value |  | Double
 | *synchronous* (advanced) | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported). | false | boolean
+| *accessKey* (security) | Amazon AWS Access Key |  | String
+| *secretKey* (security) | Amazon AWS Secret Key |  | String
 |===
 // endpoint options: END
 

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.

[camel] 01/02: Camel-AWS CW - accessKey and secretKey are secret

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit f43488fd6b02ff95e7ec925a3385ca3f613d919b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Jan 17 11:51:26 2018 +0100

    Camel-AWS CW - accessKey and secretKey are secret
---
 .../main/java/org/apache/camel/component/aws/cw/CwConfiguration.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/cw/CwConfiguration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/cw/CwConfiguration.java
index a1b0618..2d34014 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/cw/CwConfiguration.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/cw/CwConfiguration.java
@@ -35,9 +35,9 @@ public class CwConfiguration implements Cloneable {
     private AmazonCloudWatch amazonCwClient;
     @UriParam
     private String amazonCwEndpoint;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String accessKey;
-    @UriParam
+    @UriParam(label = "security", secret = true)
     private String secretKey;
     @UriParam
     private String name;

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.