You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2021/08/05 09:40:49 UTC

[camel] branch regen_bot updated (763d14a -> b9c31cf)

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.


    from 763d14a  camel-kubernetes: fixed commands in test documentation (#5929)
     add 9832f0a  CAMEL-16588: Add Changefeed support to camel-azure-storage-blob component (#5931)
     add b9c31cf  Regen for commit 9832f0a7b100034a4344225c6455a1c298bc059f

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml                         |   1 +
 .../catalog/components/azure-storage-blob.json     |   6 ++
 .../catalog/docs/azure-storage-blob-component.adoc |  14 ++-
 .../camel-azure/camel-azure-storage-blob/pom.xml   |   6 ++
 .../storage/blob/BlobComponentConfigurer.java      |  18 ++++
 .../azure/storage/blob/BlobEndpointConfigurer.java |  18 ++++
 .../azure/storage/blob/BlobEndpointUriFactory.java |  43 ++++----
 .../azure/storage/blob/azure-storage-blob.json     |   6 ++
 .../main/docs/azure-storage-blob-component.adoc    |  14 ++-
 .../azure/storage/blob/BlobConfiguration.java      |  46 ++++++++
 .../blob/BlobConfigurationOptionsProxy.java        |  15 +++
 .../azure/storage/blob/BlobConstants.java          |   4 +
 .../azure/storage/blob/BlobExchangeHeaders.java    |  13 +++
 .../storage/blob/BlobOperationsDefinition.java     |   5 +
 .../component/azure/storage/blob/BlobProducer.java |  13 +++
 .../blob/operations/BlobChangeFeedOperations.java  |  67 ++++++++++++
 .../azure/storage/blob/BlobComponentTest.java      |  29 +++++
 .../integration/BlobChangeFeedOperationsIT.java    | 104 ++++++++++++++++++
 .../src/test/resources/log4j2.properties           |   2 +-
 .../AzureStorageBlobComponentBuilderFactory.java   |  61 +++++++++++
 .../endpoint/dsl/BlobEndpointBuilderFactory.java   | 120 ++++++++++++++++++++-
 .../ROOT/pages/azure-storage-blob-component.adoc   |  14 ++-
 parent/pom.xml                                     |   1 +
 23 files changed, 592 insertions(+), 28 deletions(-)
 create mode 100644 components/camel-azure/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/operations/BlobChangeFeedOperations.java
 create mode 100644 components/camel-azure/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobChangeFeedOperationsIT.java