This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.
omit e1f288a Regen for commit 8b6af4ada9fd3c42a0e3f8e09d5a0c7bf852db51
add bbb75c7 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - KMS Component
add 2ede2b7 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - KMS Component
add 267fd3c CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - KMS Component
add 1b2cee3 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - KMS Component
add 9712e8f Regen
add 43522a9 CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - IAM Component
add 72a4c5a CAMEL-16465 - Camel-AWS: Add useDefaultCredentialProvider
option to all the components - KMS Component
add 4d93e06 Regen for commit 72a4c5a988cc7d331eb83bc91ee49a0e7ec13d70
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e1f288a)
\
N -- N -- N refs/heads/regen_bot (4d93e06)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../apache/camel/catalog/components/aws2-kms.json | 2 +
.../camel/catalog/docs/aws2-kms-component.adoc | 6 +-
.../component/aws2/iam/IAMClientFactoryTest.java | 51 ++++++++++++
.../aws2/kms/KMS2ComponentConfigurer.java | 6 ++
.../component/aws2/kms/KMS2EndpointConfigurer.java | 6 ++
.../component/aws2/kms/KMS2EndpointUriFactory.java | 3 +-
.../apache/camel/component/aws2/kms/aws2-kms.json | 2 +
.../src/main/docs/aws2-kms-component.adoc | 6 +-
.../camel/component/aws2/kms/KMS2Component.java | 5 +-
.../component/aws2/kms/KMS2Configuration.java | 13 ++++
.../camel/component/aws2/kms/KMS2Endpoint.java | 62 +--------------
.../aws2/kms/client/KMS2ClientFactory.java | 41 ++++++++++
.../aws2/kms/client/KMS2InternalClient.java | 32 ++++++++
.../impl/KMS2ClientOptimizedImpl.java} | 90 +++++-----------------
.../impl/KMS2ClientStandardImpl.java} | 72 +++++------------
.../component/aws2/kms/KMSClientFactoryTest.java | 51 ++++++++++++
.../dsl/Aws2KmsComponentBuilderFactory.java | 19 +++++
.../endpoint/dsl/KMS2EndpointBuilderFactory.java | 37 +++++++++
.../modules/ROOT/pages/aws2-kms-component.adoc | 6 +-
19 files changed, 320 insertions(+), 190 deletions(-)
create mode 100644
components/camel-aws/camel-aws2-iam/src/test/java/org/apache/camel/component/aws2/iam/IAMClientFactoryTest.java
create mode 100644
components/camel-aws/camel-aws2-kms/src/main/java/org/apache/camel/component/aws2/kms/client/KMS2ClientFactory.java
create mode 100644
components/camel-aws/camel-aws2-kms/src/main/java/org/apache/camel/component/aws2/kms/client/KMS2InternalClient.java
copy
components/camel-aws/camel-aws2-kms/src/main/java/org/apache/camel/component/aws2/kms/{KMS2Endpoint.java
=> client/impl/KMS2ClientOptimizedImpl.java} (52%)
copy
components/camel-aws/camel-aws2-kms/src/main/java/org/apache/camel/component/aws2/kms/{KMS2Endpoint.java
=> client/impl/KMS2ClientStandardImpl.java} (69%)
create mode 100644
components/camel-aws/camel-aws2-kms/src/test/java/org/apache/camel/component/aws2/kms/KMSClientFactoryTest.java