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 2020/09/03 15:28:57 UTC

[camel] 02/03: CAMEL-15500 - camel-azure-storage-blob: wrong syntax in the component json

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 30d7f0edb5ffe0c72edc9e34584081427d1a0fb3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Sep 3 15:09:37 2020 +0200

    CAMEL-15500 - camel-azure-storage-blob: wrong syntax in the component json
---
 .../org/apache/camel/catalog/components/azure-storage-blob.json         | 2 +-
 .../org/apache/camel/catalog/docs/azure-storage-blob-component.adoc     | 2 +-
 .../org/apache/camel/component/azure/storage/blob/BlobEndpoint.java     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
index ad27b9e..eac1c7e 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
@@ -14,7 +14,7 @@
     "version": "3.5.0-SNAPSHOT",
     "scheme": "azure-storage-blob",
     "extendsScheme": "",
-    "syntax": "azure-storage-blob:containerName",
+    "syntax": "azure-storage-blob:\/accountName\/containerName",
     "async": false,
     "api": false,
     "apiPropertyQualifier": "",
diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-blob-component.adoc b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-blob-component.adoc
index a67ac9b..4e00995 100644
--- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-blob-component.adoc
+++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-blob-component.adoc
@@ -105,7 +105,7 @@ The Azure Storage Blob Service component supports 27 options, which are listed b
 The Azure Storage Blob Service endpoint is configured using URI syntax:
 
 ----
-azure-storage-blob:containerName
+azure-storage-blob:/accountName/containerName
 ----
 
 with the following path and query parameters:
diff --git a/components/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/BlobEndpoint.java b/components/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/BlobEndpoint.java
index 4945650..0cade8f 100644
--- a/components/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/BlobEndpoint.java
+++ b/components/camel-azure-storage-blob/src/main/java/org/apache/camel/component/azure/storage/blob/BlobEndpoint.java
@@ -37,7 +37,7 @@ import org.apache.camel.util.ObjectHelper;
  * Store and retrieve blobs from Azure Storage Blob Service using SDK v12.
  */
 @UriEndpoint(firstVersion = "3.3.0", scheme = "azure-storage-blob", title = "Azure Storage Blob Service",
-             syntax = "azure-storage-blob:/accountName/containerName", category = { Category.CLOUD, Category.FILE })
+             syntax = "azure-storage-blob:accountName/containerName", category = { Category.CLOUD, Category.FILE })
 public class BlobEndpoint extends DefaultEndpoint {
 
     @UriParam