From eea72d6dfd09ec4cba3b9f1e7d345d037fc6fa5a Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:35:00 +0000 Subject: [PATCH] Update wiki Home page for azure-storage-blob-event-based-source --- Home.md | 43 +++++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..491390f 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,36 @@ -# Deploy the Project on CamelX Platform +# Azure Storage Blob Event-based Source -Deploy on CamelX Platform in three steps +Receive data from Azure Service Bus subscribed to Azure Eventgrid reporting events related to a Azure Storage Blob account. -## Step 1: Create a release -From the project space, click on **"Create a release"** +## Metadata -The new version is automatically available in the list +| Property | Value | +|----------|-------| +| Type | source | +| Group | Azure Storage Blob Event Based | +| Namespace | Azure | +| Support Level | Preview | +| Provider | Apache Software Foundation | -## Step 2: Deploy -Click on **"Deploy"** +## Properties -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `topicOrQueueName` | string | ✓ | | Topic Or Queue Name for the Azure Servicebus instance | +| `connectionString` | string | ✓ | | Connection String for Azure Servicebus instance | +| `serviceBusReceiveMode` | string | | `RECEIVE_AND_DELETE` | Sets the receive mode for the receiver. | +| `subscriptionName` | string | | | Sets the name of the subscription in the topic to listen to. This parameter is mandatory in case of topic. | +| `accountName` | string | ✓ | | The Azure Storage Blob account name. | +| `containerName` | string | ✓ | | The Azure Storage Blob container name. | +| `accessKey` | string | ✓ | | The Azure Storage Blob access key. | +| `credentialType` | string | | `SHARED_ACCOUNT_KEY` | Determines the credential strategy to adopt. | +| `getBlob` | boolean | | `false` | If getBlob is enabled, then the file created in the container will be get and returned as body, if not only the event will be returned as body. | -## Step 3: Expose -Enable **"Expose"** +## Dependencies -Choose an **API Gateway** (Internal, Public, etc.) +- `camel:azure-servicebus` +- `camel:azure-storage-blob` +- `camel:kamelet` +- `camel:core` +- `camel:jsonpath` +- `camel:jackson`